Skip to content

Instantly share code, notes, and snippets.

@tomstove
Created April 26, 2013 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomstove/5466190 to your computer and use it in GitHub Desktop.
Save tomstove/5466190 to your computer and use it in GitHub Desktop.
Roads of NYC
<!DOCTYPE html>
<head>
<style>
.roads {
fill: none;
stroke: orange;
stroke-width: 0.3px;
}
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
</head>
<body>
<script>
var width = 960,
height = 500;
var projection = d3.geo.mercator()
.translate([400,-250])
.center([-73.963394165, 40.7811913532])
.scale(200000);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var roads = svg.append("g")
.attr("transform", "rotate(60)")
d3.json('nyc_roads.json', function(err, data) {
roads.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "roads")
.attr("d", path);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "OSM_ID": 5669631.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Spruce Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004252905707546, 40.710165978841523, 0.0 ], [ -74.005047914733993, 40.710935981018416, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671593.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Frankfort Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003653819244562, 40.710963967311173, 0.0 ], [ -74.003365460038367, 40.710790261445183, 0.0 ], [ -74.002486368701327, 40.710055530328276, 0.0 ], [ -74.001677256124921, 40.709475230012679, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672080.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "pedestrian", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Front Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "cobblestone", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003612137415374, 40.706780192415479, 0.0 ], [ -74.00279350269696, 40.707190886771414, 0.0 ], [ -74.002743915693273, 40.707215946467741, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922464.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002260981396546, 40.710163936022354, 0.0 ], [ -74.002944060338578, 40.710701467679712, 0.0 ], [ -74.003000025380786, 40.710735991036643, 0.0 ], [ -74.00306353627137, 40.710773987136605, 0.0 ], [ -74.003137826945363, 40.710809531855638, 0.0 ], [ -74.003201966656661, 40.710836428708973, 0.0 ], [ -74.003259189340255, 40.710857265251171, 0.0 ], [ -74.003291079532829, 40.710867955892837, 0.0 ], [ -74.003316681518442, 40.710875990896277, 0.0 ], [ -74.003361866777226, 40.710886477255237, 0.0 ], [ -74.003410016476451, 40.710894852722575, 0.0 ], [ -74.003510358293696, 40.71090615619714, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660463.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002498316294606, 40.710241631200823, 0.0 ], [ -74.00304287501983, 40.710659862584748, 0.0 ], [ -74.003207446379889, 40.710770037722206, 0.0 ], [ -74.003262513106804, 40.710807761429471, 0.0 ], [ -74.003358632842207, 40.71085474580034, 0.0 ], [ -74.003510358293696, 40.71090615619714, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673035.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Beekman Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002328983863549, 40.706707940999202, 0.0 ], [ -74.002743915693273, 40.707215946467741, 0.0 ], [ -74.003107913046406, 40.707670968987472, 0.0 ], [ -74.003361237956526, 40.708002870612418, 0.0 ], [ -74.003446847403097, 40.708077435891489, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25562077.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002448010638687, 40.710637527924028, 0.0 ], [ -74.003136838798554, 40.711258265278417, 0.0 ], [ -74.003240504382333, 40.711362651542451, 0.0 ], [ -74.003282725200691, 40.711414470103286, 0.0 ], [ -74.003302937294592, 40.711454236225116, 0.0 ], [ -74.00331650185538, 40.711492640470908, 0.0 ], [ -74.003323239220009, 40.711528457176641, 0.0 ], [ -74.003324227366832, 40.71156686137963, 0.0 ], [ -74.00332045444263, 40.711613028104971, 0.0 ], [ -74.003310932300607, 40.71164407827392, 0.0 ], [ -74.003295571109263, 40.711673970857099, 0.0 ], [ -74.003274011542445, 40.711700731176443, 0.0 ], [ -74.003238168762607, 40.711731032288426, 0.0 ], [ -74.00319837339552, 40.711755954091537, 0.0 ], [ -74.003152379652974, 40.711776449884375, 0.0 ], [ -74.003107104562659, 40.71178748084003, 0.0 ], [ -74.003064434586662, 40.711793881517167, 0.0 ], [ -74.003012781457826, 40.71179599237864, 0.0 ], [ -74.00295924186689, 40.711789659794029, 0.0 ], [ -74.002896000470898, 40.711774747576243, 0.0 ], [ -74.002829345476798, 40.711747783009578, 0.0 ], [ -74.002783082239674, 40.711719660861505, 0.0 ], [ -74.002751910699317, 40.711694058120727, 0.0 ], [ -74.002715079772656, 40.711651159889378, 0.0 ], [ -74.002688669303311, 40.711606355040452, 0.0 ], [ -74.002584824056456, 40.711280259266772, 0.0 ], [ -74.002461665031007, 40.711048266584193, 0.0 ], [ -74.002343087413522, 40.710893286578361, 0.0 ], [ -74.002240230313475, 40.710786652498435, 0.0 ], [ -74.002126144272395, 40.710682129144523, 0.0 ], [ -74.001522656064537, 40.710194374021562, 0.0 ], [ -74.00107790016736, 40.709825371925334, 0.0 ], [ -74.000374070142243, 40.709246363407331, 0.0 ], [ -74.000245341562035, 40.709044665973032, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 112691607.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003163878088614, 40.706225945096755, 0.0 ], [ -74.002963733443309, 40.706019335443116, 0.0 ], [ -74.00294082640356, 40.705989031732052, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46154300.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Water Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003107913046406, 40.707670968987472, 0.0 ], [ -74.002625966896474, 40.707909987353496, 0.0 ], [ -74.002144919061834, 40.708149958206107, 0.0 ], [ -74.00194091166081, 40.708252987424316, 0.0 ], [ -74.000859968879425, 40.708790943079705, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46154332.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Front Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000485910395128, 40.708347981175599, 0.0 ], [ -74.001572961720441, 40.707807979050372, 0.0 ], [ -74.001749929831405, 40.707718977018736, 0.0 ], [ -74.002743915693273, 40.707215946467741, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46116203.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Brooklyn Bridge", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002586261360918, 40.710537975168371, 0.0 ], [ -74.002307603959792, 40.710315581128711, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 39956205.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Peck Slip", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00194091166081, 40.708252987424316, 0.0 ], [ -74.002502987534086, 40.708845964122027, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32935110.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000775976400362, 40.708918962266416, 0.0 ], [ -74.002498316294606, 40.710241631200823, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46177174.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Brooklyn Bridge", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002175371949974, 40.710419832683144, 0.0 ], [ -74.002448010638687, 40.710637527924028, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669420.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001569727785409, 40.709628783334061, 0.0 ], [ -74.002260981396546, 40.710163936022354, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25561915.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002249842287014, 40.706519787320133, 0.0 ], [ -74.001230523934126, 40.706977266096857, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32935107.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 907L", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002249842287014, 40.706519787320133, 0.0 ], [ -74.001549964849161, 40.706923537359025, 0.0 ], [ -74.001129463464665, 40.707157859711579, 0.0 ], [ -74.001061371166131, 40.70719258919673, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670167.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Peck Slip", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002144919061834, 40.708149958206107, 0.0 ], [ -74.001749929831405, 40.707718977018736, 0.0 ], [ -74.001344969301329, 40.707276961341094, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670168.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Peck Slip", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001181925077262, 40.707363989155233, 0.0 ], [ -74.001572961720441, 40.707807979050372, 0.0 ], [ -74.00194091166081, 40.708252987424316, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922456.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001896445054243, 40.710615942284448, 0.0 ], [ -74.001627309795126, 40.710379929756051, 0.0 ], [ -74.001338142105155, 40.710153585737579, 0.0 ], [ -74.001177433500843, 40.710111231265991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670703.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Dover Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001677256124921, 40.709475230012679, 0.0 ], [ -74.00157386003572, 40.709364439879749, 0.0 ], [ -74.000859968879425, 40.708790943079705, 0.0 ], [ -74.000485910395128, 40.708347981175599, 0.0 ], [ -74.000122901188803, 40.707902973436454, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46154297.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000925276400579, 40.708923728933513, 0.0 ], [ -74.001514750890024, 40.709398759645609, 0.0 ], [ -74.001677256124921, 40.709475230012679, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165731797.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pearl Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001177433500843, 40.710111231265991, 0.0 ], [ -74.001569727785409, 40.709628783334061, 0.0 ], [ -74.001677256124921, 40.709475230012679, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25562090.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001569727785409, 40.709628783334061, 0.0 ], [ -74.001361138976435, 40.709656293514769, 0.0 ], [ -74.001240944391427, 40.709656293514769, 0.0 ], [ -74.001086434162559, 40.709630281413503, 0.0 ], [ -74.000926264547388, 40.709595485105069, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46177184.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001230523934126, 40.706977266096857, 0.0 ], [ -74.000260612921863, 40.707504336587753, 0.0 ], [ -74.000106102692982, 40.707653944854599, 0.0 ], [ -74.000037471405278, 40.707777539960354, 0.0 ], [ -74.000013666050251, 40.707932050544031, 0.0 ], [ -74.000073134522069, 40.708148460093355, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25562074.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Robert F. Wagner Sr. Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001177433500843, 40.710111231265991, 0.0 ], [ -74.000957436087759, 40.709895781414708, 0.0 ], [ -74.000758908409964, 40.709692451680532, 0.0 ], [ -74.000383412621204, 40.709383370228984, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25562079.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001177433500843, 40.710111231265991, 0.0 ], [ -74.001096944451376, 40.709916073497432, 0.0 ], [ -74.001032535245514, 40.709737189722873, 0.0 ], [ -74.000926264547388, 40.709595485105069, 0.0 ], [ -74.000758908409964, 40.709456435878955, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46116183.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Robert F Wagner Sr Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000878204679694, 40.71003374021771, 0.0 ], [ -74.001033972549962, 40.710074051916642, 0.0 ], [ -74.001177433500843, 40.710111231265991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671204.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pearl Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000509985244733, 40.710983986695844, 0.0 ], [ -74.000608260936815, 40.710882664033996, 0.0 ], [ -74.000637546015071, 40.710852430629217, 0.0 ], [ -74.000805351310149, 40.710618870305368, 0.0 ], [ -74.001177433500843, 40.710111231265991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32935108.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 907L", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001061371166131, 40.70719258919673, 0.0 ], [ -74.000423746977461, 40.707517343054889, 0.0 ], [ -73.999591188372136, 40.707953228476221, 0.0 ], [ -73.998904426337432, 40.708330684832418, 0.0 ], [ -73.998511503232152, 40.708524144856078, 0.0 ], [ -73.998108159669584, 40.708667281759297, 0.0 ], [ -73.997584531690464, 40.708797480235631, 0.0 ], [ -73.9970009860819, 40.708908067026066, 0.0 ], [ -73.996048232891567, 40.709038128841385, 0.0 ], [ -73.994383115680932, 40.709265838549257, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812550.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000695577182441, 40.710546350679543, 0.0 ], [ -74.001033972549962, 40.710074051916642, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922458.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999807682355609, 40.708361464148673, 0.0 ], [ -73.999876223811782, 40.708179375685859, 0.0 ], [ -74.000004413402834, 40.70803133481099, 0.0 ], [ -74.000492378265164, 40.707673488558768, 0.0 ], [ -74.000983487230982, 40.70737256935611, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660455.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 907L", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998192780969347, 40.708743072012098, 0.0 ], [ -73.99868676454409, 40.708555945517205, 0.0 ], [ -73.998992640898337, 40.708416689833122, 0.0 ], [ -73.999223957083984, 40.708296432611974, 0.0 ], [ -73.999773276880234, 40.707984144159354, 0.0 ], [ -74.000314062681269, 40.707684860676672, 0.0 ], [ -74.000983487230982, 40.70737256935611, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564137.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000073134522069, 40.708148460093355, 0.0 ], [ -74.000185244269531, 40.708315976127579, 0.0 ], [ -74.000459949083407, 40.708576169912625, 0.0 ], [ -74.000925276400579, 40.708923728933513, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672986.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Robert F Wagner Sr Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999291240898771, 40.708775757808787, 0.0 ], [ -74.000131974173172, 40.709474889539294, 0.0 ], [ -74.000346042705374, 40.709647645513634, 0.0 ], [ -74.000733935245051, 40.709966667488871, 0.0 ], [ -74.000878204679694, 40.71003374021771, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922457.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999898412199315, 40.709025871717799, 0.0 ], [ -73.999992016651902, 40.709149055707236, 0.0 ], [ -74.000104845051595, 40.709268085680655, 0.0 ], [ -74.000416021466009, 40.70952725432619, 0.0 ], [ -74.000528760034172, 40.709631983776447, 0.0 ], [ -74.000690636448383, 40.709831364225195, 0.0 ], [ -74.000878204679694, 40.71003374021771, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672337.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999344151669007, 40.708504669497231, 0.0 ], [ -73.999627300646551, 40.708543688304857, 0.0 ], [ -73.999970636748159, 40.708608787695681, 0.0 ], [ -74.000296815027809, 40.708699831402242, 0.0 ], [ -74.000468572910137, 40.70876486254501, 0.0 ], [ -74.000629640840586, 40.708838133159617, 0.0 ], [ -74.000775976400362, 40.708918962266416, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46177171.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000364907326357, 40.708584477574959, 0.0 ], [ -74.000775976400362, 40.708918962266416, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922459.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000758908409964, 40.709456435878955, 0.0 ], [ -74.000468572910137, 40.709246363407331, 0.0 ], [ -74.000245341562035, 40.709044665973032, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812525.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999564238913607, 40.710030948359275, 0.0 ], [ -73.999741027361537, 40.710130093308926, 0.0 ], [ -74.000075739636401, 40.710317692037052, 0.0 ], [ -74.000213361537917, 40.710394842286213, 0.0 ], [ -74.000245072067443, 40.710389054318277, 0.0 ], [ -74.000279747037411, 40.710382653506102, 0.0 ], [ -74.000373710816135, 40.710365357691387, 0.0 ], [ -74.000695577182441, 40.710546350679543, 0.0 ], [ -74.000505763162906, 40.710805582443349, 0.0 ], [ -74.000608260936815, 40.710882664033996, 0.0 ], [ -74.000727647038076, 40.710985484744796, 0.0 ], [ -74.000606913463884, 40.711068966874002, 0.0 ], [ -74.000489503656254, 40.711162867121018, 0.0 ], [ -74.000381705822164, 40.71111009506231, 0.0 ], [ -74.000256211176975, 40.711049560352485, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25561967.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000383412621204, 40.709383370228984, 0.0 ], [ -74.000131345352472, 40.709082458752846, 0.0 ], [ -73.999902005460456, 40.708790943079705, 0.0 ], [ -73.999841459010298, 40.708668984146875, 0.0 ], [ -73.999790434702163, 40.708517675768988, 0.0 ], [ -73.999807682355609, 40.708361464148673, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46154298.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Robert F. Wagner Sr. Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000383412621204, 40.709383370228984, 0.0 ], [ -73.999979170743359, 40.709017087444501, 0.0 ], [ -73.99976995311367, 40.708716174313196, 0.0 ], [ -73.999532977541719, 40.708478656946113, 0.0 ], [ -73.999387001308051, 40.708381075741002, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46224850.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000073134522069, 40.708148460093355, 0.0 ], [ -74.000124607987843, 40.708311141321126, 0.0 ], [ -74.000227644750936, 40.708454278682169, 0.0 ], [ -74.000364907326357, 40.708584477574959, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812537.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000245072067443, 40.710160054665756, 0.0 ], [ -74.000279747037411, 40.710382653506102, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46224855.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000245341562035, 40.709044665973032, 0.0 ], [ -74.000211025918176, 40.708810486450197, 0.0 ], [ -74.000176620442801, 40.7085631636523, 0.0 ], [ -74.000107450165913, 40.708408790724469, 0.0 ], [ -73.99994494493103, 40.708257345563538, 0.0 ], [ -73.999721713582915, 40.708159764034136, 0.0 ], [ -73.999541511536918, 40.708127282223259, 0.0 ], [ -73.999241114905914, 40.708114275875261, 0.0 ], [ -73.999035131211272, 40.708172838469252, 0.0 ], [ -73.998700329104864, 40.708341988742248, 0.0 ], [ -73.998314143364226, 40.708498132312563, 0.0 ], [ -73.997833544687239, 40.708647738346784, 0.0 ], [ -73.997362018994593, 40.708776370667323, 0.0 ], [ -73.997069347875026, 40.708835273155721, 0.0 ], [ -73.996743888247593, 40.708888727970049, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812535.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00018335780743, 40.710576856597498, 0.0 ], [ -74.000171140719559, 40.710469745355212, 0.0 ], [ -74.000245072067443, 40.710389054318277, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 40879217.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000131974173172, 40.709474889539294, 0.0 ], [ -73.999838764064449, 40.709690953602497, 0.0 ], [ -73.999756658047474, 40.709743658691508, 0.0 ], [ -73.999693506482998, 40.709772394523497, 0.0 ], [ -73.999630354918523, 40.709786762434831, 0.0 ], [ -73.999589301910035, 40.709791529039805, 0.0 ], [ -73.99890864841926, 40.709867658484455, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812524.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999735457806764, 40.710645971516158, 0.0 ], [ -74.000075739636401, 40.710317692037052, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669194.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998192780969347, 40.708743072012098, 0.0 ], [ -73.99851985756429, 40.708675861792237, 0.0 ], [ -73.998884483738124, 40.70853476777669, 0.0 ], [ -73.999028034520521, 40.708499289939063, 0.0 ], [ -73.999200960212718, 40.70848846272574, 0.0 ], [ -73.999344151669007, 40.708504669497231, 0.0 ], [ -73.999523814725819, 40.708566636528346, 0.0 ], [ -73.999612029286737, 40.70862363252693, 0.0 ], [ -73.999685331813922, 40.70869438376436, 0.0 ], [ -73.999825109672116, 40.708915148932491, 0.0 ], [ -73.999898412199315, 40.709025871717799, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812499.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999027315868304, 40.710837041548544, 0.0 ], [ -73.999311632655719, 40.711001759001689, 0.0 ], [ -73.999553009972558, 40.710967167689397, 0.0 ], [ -73.999628648119483, 40.710923451871388, 0.0 ], [ -73.999754142764672, 40.710786243938415, 0.0 ], [ -73.999735457806764, 40.710645971516158, 0.0 ], [ -73.999421586446488, 40.710450747221138, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812529.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998426971763919, 40.711009930175202, 0.0 ], [ -73.998505304856693, 40.711040572066928, 0.0 ], [ -73.998611575554804, 40.711044453372196, 0.0 ], [ -73.998675984760681, 40.711066855989479, 0.0 ], [ -73.99875153307606, 40.711100357761737, 0.0 ], [ -73.999027315868304, 40.710837041548544, 0.0 ], [ -73.999013841139032, 40.710619551240455, 0.0 ], [ -73.999188204135677, 40.710458850368589, 0.0 ], [ -73.999421586446488, 40.710450747221138, 0.0 ], [ -73.999741027361537, 40.710130093308926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670026.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chambers Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004058959437714, 40.71313494599228, 0.0 ], [ -74.004818934168057, 40.713474991254586, 0.0 ], [ -74.006309957876653, 40.714165970950944, 0.0 ], [ -74.007939950959681, 40.714926939110455, 0.0 ], [ -74.009238914860532, 40.715519992552728, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 111768304.0, "ACCESS": "yes", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "dismount", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "concrete", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004633072735786, 40.712631752079339, 0.0 ], [ -74.004971018945682, 40.712798984470147, 0.0 ], [ -74.005291537839042, 40.712948444659425, 0.0 ], [ -74.005496713049936, 40.713034852242231, 0.0 ], [ -74.005522764193174, 40.713038461067121, 0.0 ], [ -74.005561122255813, 40.713037848247815, 0.0 ], [ -74.005622836515826, 40.713037848247815, 0.0 ], [ -74.005673770992445, 40.713051057907208, 0.0 ], [ -74.005935270571655, 40.713170080905606, 0.0 ], [ -74.006121760824627, 40.713312390733101, 0.0 ], [ -74.006187427671904, 40.713366250497565, 0.0 ], [ -74.006494561667537, 40.713532936319332, 0.0 ], [ -74.00670467761249, 40.713677628534619, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671587.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Frankfort Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.006053668526093, 40.711951174559857, 0.0 ], [ -74.005864842653381, 40.71194504626645, 0.0 ], [ -74.005590766660177, 40.711973644964189, 0.0 ], [ -74.005417122315762, 40.711991144637473, 0.0 ], [ -74.005305821052062, 40.71200094989986, 0.0 ], [ -74.005216887838927, 40.711986991018932, 0.0 ], [ -74.005133344517517, 40.711952332126323, 0.0 ], [ -74.005076930317671, 40.711914677159676, 0.0 ], [ -74.00483025294065, 40.711757792584841, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165733924.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004208439100978, 40.711810632222509, 0.0 ], [ -74.004360254383997, 40.711820573696052, 0.0 ], [ -74.004455655467183, 40.711846789218448, 0.0 ], [ -74.004526442711551, 40.711870349133683, 0.0 ], [ -74.004592379053406, 40.711895543253462, 0.0 ], [ -74.004774557393034, 40.711994481150526, 0.0 ], [ -74.004896009619443, 40.712065092622403, 0.0 ], [ -74.005024917862727, 40.712118681027931, 0.0 ], [ -74.005108730678728, 40.712142036571102, 0.0 ], [ -74.005187782423732, 40.712153680293646, 0.0 ], [ -74.005292076828212, 40.712165460198008, 0.0 ], [ -74.005417032484232, 40.712167979599243, 0.0 ], [ -74.005507762327937, 40.712160761854904, 0.0 ], [ -74.005632268826318, 40.7121465306397, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564368.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Centre Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004377681700504, 40.712821182223351, 0.0 ], [ -74.004633072735786, 40.712631752079339, 0.0 ], [ -74.00484983621385, 40.712479090873757, 0.0 ], [ -74.004916670870983, 40.712434695131869, 0.0 ], [ -74.005254617080865, 40.712277062772351, 0.0 ], [ -74.005632268826318, 40.7121465306397, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922466.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.005544772917645, 40.712064071241947, 0.0 ], [ -74.005472728031847, 40.712075238333995, 0.0 ], [ -74.005399964493847, 40.712083068915724, 0.0 ], [ -74.005343640125517, 40.712088039632334, 0.0 ], [ -74.005287136094154, 40.71208592878012, 0.0 ], [ -74.00522596082331, 40.712079391947029, 0.0 ], [ -74.005088788079419, 40.712049567637905, 0.0 ], [ -74.005009107513715, 40.712022194630094, 0.0 ], [ -74.004927360822862, 40.711978139044149, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 194753584.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.005069653963872, 40.712339094384703, 0.0 ], [ -74.00392133753617, 40.712969893360658, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660458.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004927360822862, 40.711978139044149, 0.0 ], [ -74.004701434528911, 40.711855981671924, 0.0 ], [ -74.004629928632284, 40.711823433571716, 0.0 ], [ -74.004414422795634, 40.711758541600609, 0.0 ], [ -74.004137472193548, 40.711663552714604, 0.0 ], [ -74.00409111912488, 40.711646052955231, 0.0 ], [ -74.004046652518312, 40.711625557122247, 0.0 ], [ -74.004008204624157, 40.711605674115461, 0.0 ], [ -74.003960863408679, 40.711573670633172, 0.0 ], [ -74.003408309677425, 40.711128684450337, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669636.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004916670870983, 40.712434695131869, 0.0 ], [ -74.004822437597682, 40.712346039742762, 0.0 ], [ -74.004572436454112, 40.712142172755001, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195745918.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Frankfort Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00483025294065, 40.711757792584841, 0.0 ], [ -74.003653819244562, 40.710963967311173, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564482.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00483025294065, 40.711757792584841, 0.0 ], [ -74.004641966057093, 40.711693853843492, 0.0 ], [ -74.004547553120744, 40.711676558369362, 0.0 ], [ -74.004438228150661, 40.711668591554968, 0.0 ], [ -74.004323872614989, 40.711665186933139, 0.0 ], [ -74.004102707392036, 40.711696986094232, 0.0 ], [ -74.004027787897343, 40.71172776385454, 0.0 ], [ -74.003938944515752, 40.711764261357168, 0.0 ], [ -74.003718228450452, 40.711854960288264, 0.0 ], [ -74.003595338919567, 40.711915766634604, 0.0 ], [ -74.003423221711131, 40.71202185416972, 0.0 ], [ -74.00296732670445, 40.712327382602822, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671121.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Elk Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004818934168057, 40.713474991254586, 0.0 ], [ -74.004434724721051, 40.713996154571561, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 111768306.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00478381004045, 40.712419578783539, 0.0 ], [ -74.004745721472418, 40.712447292086175, 0.0 ], [ -74.004623640425294, 40.712549974197849, 0.0 ], [ -74.004489521953374, 40.71268418247508, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 111768308.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004579443313318, 40.712436056964876, 0.0 ], [ -74.004611603000484, 40.712446270711588, 0.0 ], [ -74.004651847525224, 40.712459480488356, 0.0 ], [ -74.004671969787594, 40.712460433771106, 0.0 ], [ -74.004700176887511, 40.712462544611441, 0.0 ], [ -74.004724251737116, 40.712457437739538, 0.0 ], [ -74.004745721472418, 40.712447292086175, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 111768307.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004430682302271, 40.712110782358415, 0.0 ], [ -74.004508386574358, 40.712220546543925, 0.0 ], [ -74.004535156369812, 40.712265350979557, 0.0 ], [ -74.004562015996811, 40.71234059240318, 0.0 ], [ -74.004572705948689, 40.712389346076606, 0.0 ], [ -74.004579443313318, 40.712436056964876, 0.0 ], [ -74.004576748367469, 40.712468672857227, 0.0 ], [ -74.004572705948689, 40.712513340942749, 0.0 ], [ -74.004564621111143, 40.712551948852287, 0.0 ], [ -74.004552673517864, 40.712584564687866, 0.0 ], [ -74.004532461423963, 40.712626168580208, 0.0 ], [ -74.004489521953374, 40.71268418247508, 0.0 ], [ -74.004377681700504, 40.712821182223351, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660459.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004572436454112, 40.712142172755001, 0.0 ], [ -74.00432333362582, 40.711939190341113, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922453.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004143131579823, 40.711966767659419, 0.0 ], [ -74.004361871351506, 40.712142853674507, 0.0 ], [ -74.00442313645388, 40.712206179157732, 0.0 ], [ -74.00445870973914, 40.712255273388763, 0.0 ], [ -74.004494103361338, 40.712324454657036, 0.0 ], [ -74.004500750894422, 40.712368578105554, 0.0 ], [ -74.004508566237405, 40.712414540000012, 0.0 ], [ -74.004504074660986, 40.712497271330072, 0.0 ], [ -74.004476406550239, 40.712605877323362, 0.0 ], [ -74.004409841387684, 40.712722586011473, 0.0 ], [ -74.004377681700504, 40.712821182223351, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46332309.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004434724721051, 40.713996154571561, 0.0 ], [ -74.004019972554374, 40.714558984583199, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46177164.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004026530255956, 40.710970980905806, 0.0 ], [ -74.004122021170659, 40.710982965298818, 0.0 ], [ -74.004157324961326, 40.710989978891448, 0.0 ], [ -74.004190652458362, 40.710998558625121, 0.0 ], [ -74.004221734167203, 40.711009249244114, 0.0 ], [ -74.004247156489726, 40.711020348419964, 0.0 ], [ -74.004268626225013, 40.711033149921114, 0.0 ], [ -74.004288838318914, 40.711047858025765, 0.0 ], [ -74.004310667380309, 40.711064677011848, 0.0 ], [ -74.004329532001293, 40.711082449296143, 0.0 ], [ -74.004343905045829, 40.711097565948023, 0.0 ], [ -74.004360883204697, 40.711118538594505, 0.0 ], [ -74.004373908776316, 40.71114298397606, 0.0 ], [ -74.004382622434576, 40.71116388851528, 0.0 ], [ -74.004386305527234, 40.711187380579219, 0.0 ], [ -74.004389180136144, 40.711209238405175, 0.0 ], [ -74.004389808956844, 40.711226534000687, 0.0 ], [ -74.004388461483913, 40.711250162228247, 0.0 ], [ -74.004384239402086, 40.711268547298644, 0.0 ], [ -74.004378220689674, 40.711289928448195, 0.0 ], [ -74.004365644275694, 40.711314169488446, 0.0 ], [ -74.004351810220328, 40.711336435829423, 0.0 ], [ -74.004335640545207, 40.711358974533972, 0.0 ], [ -74.004324321772629, 40.711371163135368, 0.0 ], [ -74.004309948728078, 40.711385462609016, 0.0 ], [ -74.004293329895333, 40.711399693986891, 0.0 ], [ -74.004275722915764, 40.711412359229712, 0.0 ], [ -74.004255780316456, 40.711423730709114, 0.0 ], [ -74.004232334287536, 40.711435170279245, 0.0 ], [ -74.004208528932509, 40.711444294696882, 0.0 ], [ -74.004176369245343, 40.711452874372014, 0.0 ], [ -74.004145557031094, 40.711460160285739, 0.0 ], [ -74.004116182121308, 40.711464382029781, 0.0 ], [ -74.004082674961211, 40.711464858678291, 0.0 ], [ -74.004043059257185, 40.711461385953399, 0.0 ], [ -74.004005779172886, 40.711455529985521, 0.0 ], [ -74.00397083470834, 40.711447495052013, 0.0 ], [ -74.00393921401033, 40.711436668318058, 0.0 ], [ -74.003906335670933, 40.711423594523751, 0.0 ], [ -74.003870762385688, 40.711408137482373, 0.0 ], [ -74.003834560279728, 40.711389752450515, 0.0 ], [ -74.003797819184612, 40.711369188445907, 0.0 ], [ -74.003759011964334, 40.71134399412697, 0.0 ], [ -74.003728918402331, 40.711323362015442, 0.0 ], [ -74.003688673877605, 40.711296873915693, 0.0 ], [ -74.003652741266237, 40.711272632869154, 0.0 ], [ -74.003618066296269, 40.711249957949661, 0.0 ], [ -74.003581145538078, 40.7112288491588, 0.0 ], [ -74.003536409436947, 40.711205357109499, 0.0 ], [ -74.003496344575254, 40.711183158817619, 0.0 ], [ -74.003408309677425, 40.711128684450337, 0.0 ], [ -74.002586261360918, 40.710537975168371, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 127691875.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Centre Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004058959437714, 40.71313494599228, 0.0 ], [ -74.004377681700504, 40.712821182223351, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660460.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00432333362582, 40.711939190341113, 0.0 ], [ -74.002586261360918, 40.710537975168371, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165774924.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003045120808039, 40.712372050783145, 0.0 ], [ -74.003371478750765, 40.712148232938326, 0.0 ], [ -74.003742213468527, 40.711918149860928, 0.0 ], [ -74.004025631940678, 40.711819688496405, 0.0 ], [ -74.004122560159828, 40.711806955238778, 0.0 ], [ -74.004208439100978, 40.711810632222509, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 122660461.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003916935791281, 40.712442185213092, 0.0 ], [ -74.003865911483146, 40.712446270711588, 0.0 ], [ -74.003808329473443, 40.712444227962379, 0.0 ], [ -74.003749220327734, 40.712432039557413, 0.0 ], [ -74.003717150472099, 40.712422847183475, 0.0 ], [ -74.003672863528593, 40.71240766274078, 0.0 ], [ -74.003643308955745, 40.712394452953738, 0.0 ], [ -74.003611149268565, 40.712372050783145, 0.0 ], [ -74.003587074418959, 40.712350669981049, 0.0 ], [ -74.003562819906293, 40.712326293134637, 0.0 ], [ -74.00354413494837, 40.712299873525652, 0.0 ], [ -74.003530660219113, 40.712277539415034, 0.0 ], [ -74.003526617800347, 40.712249077031501, 0.0 ], [ -74.003525360158932, 40.712220546543925, 0.0 ], [ -74.003526617800347, 40.712189088092387, 0.0 ], [ -74.003536050110824, 40.712161647050003, 0.0 ], [ -74.003552129954414, 40.712130188570633, 0.0 ], [ -74.003569557270922, 40.712102679411984, 0.0 ], [ -74.003589769364808, 40.712080277143208, 0.0 ], [ -74.003611149268565, 40.712060939008481, 0.0 ], [ -74.003639356368495, 40.71203969429061, 0.0 ], [ -74.003761347584089, 40.711974530161775, 0.0 ], [ -74.003890165995827, 40.711912566301969, 0.0 ], [ -74.004208439100978, 40.711810632222509, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46116314.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "designated", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Centre Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003638278390156, 40.713641540623293, 0.0 ], [ -74.004058959437714, 40.71313494599228, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46332303.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.004019972554374, 40.714558984583199, 0.0 ], [ -74.003417113167203, 40.714118580377018, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109330331.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00293516701727, 40.712711555210731, 0.0 ], [ -74.003670078751199, 40.712589535367044, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564580.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Rose Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002489153478706, 40.711566793287091, 0.0 ], [ -74.002592100410268, 40.711547250725545, 0.0 ], [ -74.002918278689918, 40.711475753500302, 0.0 ], [ -74.003158667859964, 40.711365170974062, 0.0 ], [ -74.003510537956757, 40.711163479957584, 0.0 ], [ -74.003622108715035, 40.711026749170848, 0.0 ], [ -74.003649866657312, 40.710993655920298, 0.0 ], [ -74.003653819244562, 40.710963967311173, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458119.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003177532480933, 40.714118171837441, 0.0 ], [ -74.003245085790297, 40.714043272872608, 0.0 ], [ -74.003316232360802, 40.713964356508512, 0.0 ], [ -74.003638278390156, 40.713641540623293, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 40956098.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Centre Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003638278390156, 40.713641540623293, 0.0 ], [ -74.003260806307765, 40.713814490058283, 0.0 ], [ -74.003149505044064, 40.713869234588977, 0.0 ], [ -74.003024729051091, 40.713949853318397, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458127.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003455381398297, 40.714262794691109, 0.0 ], [ -74.003417113167203, 40.714118580377018, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458101.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003254428269244, 40.714197768917714, 0.0 ], [ -74.003368783804916, 40.714234673605276, 0.0 ], [ -74.003455381398297, 40.714262794691109, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458097.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003149505044064, 40.713869234588977, 0.0 ], [ -74.003316232360802, 40.713964356508512, 0.0 ], [ -74.00344783554992, 40.714039459832151, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46332307.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Duane Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003417113167203, 40.714118580377018, 0.0 ], [ -74.003245085790297, 40.714043272872608, 0.0 ], [ -74.003024729051091, 40.713949853318397, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922454.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003155523756462, 40.711592327984285, 0.0 ], [ -74.003301679653191, 40.711794562440232, 0.0 ], [ -74.003323149388478, 40.711892138643243, 0.0 ], [ -74.003285509978085, 40.711993732137401, 0.0 ], [ -74.003205110760149, 40.712058828155406, 0.0 ], [ -74.00306021250482, 40.712087358712267, 0.0 ], [ -74.002936963647841, 40.712050793294694, 0.0 ], [ -74.00282961497139, 40.711944978174287, 0.0 ], [ -74.002489153478706, 40.711566793287091, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109330336.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003260806307765, 40.713814490058283, 0.0 ], [ -74.003029849448211, 40.713032264782754, 0.0 ], [ -74.00293516701727, 40.712711555210731, 0.0 ], [ -74.002286044392974, 40.712418761683544, 0.0 ], [ -74.002103686390285, 40.712589535367044, 0.0 ], [ -74.002012417557424, 40.712642442436106, 0.0 ], [ -74.000853231514796, 40.712859585680725, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46178179.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003205110760149, 40.712058828155406, 0.0 ], [ -74.003108541867107, 40.712140129996456, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564312.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "4", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 50.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001801852454832, 40.710121785839412, 0.0 ], [ -74.00184227664262, 40.710214870295069, 0.0 ], [ -74.002094343911324, 40.710480231778156, 0.0 ], [ -74.002695137173347, 40.711026749170848, 0.0 ], [ -74.003155523756462, 40.711592327984285, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165774923.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002576918881971, 40.712661848493369, 0.0 ], [ -74.003045120808039, 40.712372050783145, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109330337.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003029849448211, 40.713032264782754, 0.0 ], [ -74.001971813706575, 40.713324647067651, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564592.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002496250169457, 40.712627666592212, 0.0 ], [ -74.00296732670445, 40.712327382602822, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458117.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002630458472893, 40.714265654461883, 0.0 ], [ -74.002694059195008, 40.714315632340835, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564255.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002688669303311, 40.711606355040452, 0.0 ], [ -74.002486548364374, 40.711329354180499, 0.0 ], [ -74.002312724356898, 40.711044180999906, 0.0 ], [ -74.002237265873049, 40.710944492665874, 0.0 ], [ -74.002149410638253, 40.710854677707069, 0.0 ], [ -74.002022388857085, 40.710728364576696, 0.0 ], [ -74.001896445054243, 40.710615942284448, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46332305.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pearl Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000858082417324, 40.712997878798532, 0.0 ], [ -74.000875689396892, 40.713060931104536, 0.0 ], [ -74.000931923933692, 40.713262956827499, 0.0 ], [ -74.001256934403486, 40.713495963152241, 0.0 ], [ -74.001629735246382, 40.713721138273385, 0.0 ], [ -74.001736904259786, 40.713785960241481, 0.0 ], [ -74.002602610699086, 40.714294184073125, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46116332.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Row", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998691166288978, 40.71353157450875, 0.0 ], [ -73.998831572967887, 40.713455585434332, 0.0 ], [ -73.999021656482, 40.713385860615894, 0.0 ], [ -73.999247223449842, 40.713351951449297, 0.0 ], [ -73.999727103474626, 40.713280183798773, 0.0 ], [ -74.000875689396892, 40.713060931104536, 0.0 ], [ -74.002127671408374, 40.71279428617175, 0.0 ], [ -74.002262059374871, 40.712762351352062, 0.0 ], [ -74.002576918881971, 40.712661848493369, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671166.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998477457082885, 40.713437269058424, 0.0 ], [ -73.998655413340671, 40.713390354600541, 0.0 ], [ -73.998919787528791, 40.713313548275899, 0.0 ], [ -73.999237072487134, 40.713265340005613, 0.0 ], [ -73.999702579467368, 40.713203036892715, 0.0 ], [ -74.002095332058161, 40.712749754457356, 0.0 ], [ -74.002363928328094, 40.712668793817741, 0.0 ], [ -74.002496250169457, 40.712627666592212, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 25564571.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Avenue of the Finest", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002489153478706, 40.711566793287091, 0.0 ], [ -74.00179628290006, 40.710761730332536, 0.0 ], [ -74.001248669902864, 40.710229782862186, 0.0 ], [ -74.001177433500843, 40.710111231265991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 34213168.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002489153478706, 40.711566793287091, 0.0 ], [ -74.000872904619527, 40.711696986094232, 0.0 ], [ -73.999932907506221, 40.711774951853215, 0.0 ], [ -73.999702220141245, 40.711794766717155, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458105.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002432379952751, 40.714595957159986, 0.0 ], [ -74.001884856787072, 40.714725735508232, 0.0 ], [ -74.001425548182297, 40.714847342901926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458126.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002240050650414, 40.713104168882438, 0.0 ], [ -74.002068562262679, 40.713345346649767, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458102.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.002135666414404, 40.715176689470361, 0.0 ], [ -74.001884856787072, 40.714725735508232, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109458134.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001763224897601, 40.713213795248613, 0.0 ], [ -74.002000380132614, 40.713342282567297, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673526.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cardinal Hayes Place", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001971813706575, 40.713324647067651, 0.0 ], [ -74.00142590750842, 40.713451976632044, 0.0 ], [ -74.001256934403486, 40.713495963152241, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109330346.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001629735246382, 40.713721138273385, 0.0 ], [ -74.001060472850853, 40.713892793788581, 0.0 ], [ -74.00054924162265, 40.71442014999095, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671212.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pearl Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000509985244733, 40.710983986695844, 0.0 ], [ -74.000606913463884, 40.711068966874002, 0.0 ], [ -74.000692972068109, 40.711163956608239, 0.0 ], [ -74.000762950828744, 40.711265959770522, 0.0 ], [ -74.000818915870937, 40.711381989879982, 0.0 ], [ -74.000854938313836, 40.71149495561977, 0.0 ], [ -74.000871916472704, 40.711615956082049, 0.0 ], [ -74.000872904619527, 40.711696986094232, 0.0 ], [ -74.000864819781967, 40.712172065114572, 0.0 ], [ -74.000853231514796, 40.712859585680725, 0.0 ], [ -74.000858082417324, 40.712997878798532, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 161026133.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": "parking_aisle", "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999958060334166, 40.712831532093475, 0.0 ], [ -73.99936508241511, 40.712962879976573, 0.0 ], [ -73.999536660634391, 40.712708763464576, 0.0 ], [ -73.999598374894418, 40.712672130296845, 0.0 ], [ -74.000066576820501, 40.712557464266105, 0.0 ], [ -74.000242377121594, 40.712514362316305, 0.0 ], [ -74.000365446315513, 40.712470851788929, 0.0 ], [ -74.000456625316858, 40.71240786701582, 0.0 ], [ -74.000555978987279, 40.712279786444796, 0.0 ], [ -74.000625688253322, 40.712206587709034, 0.0 ], [ -74.000708962080168, 40.712176967732624, 0.0 ], [ -74.000864819781967, 40.712172065114572, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 161026131.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": "parking_aisle", "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000652637711852, 40.712681186453572, 0.0 ], [ -74.000156588011961, 40.712788838868832, 0.0 ], [ -74.000066576820501, 40.712557464266105, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672410.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Baxter Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000452223571969, 40.714371874432224, 0.0 ], [ -74.00052795155041, 40.715169948674145, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671717.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint James Place", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000509985244733, 40.710983986695844, 0.0 ], [ -74.000381705822164, 40.71111009506231, 0.0 ], [ -73.999843075977793, 40.711639447986485, 0.0 ], [ -73.999702220141245, 40.711794766717155, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812502.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.000505763162906, 40.710805582443349, 0.0 ], [ -74.000256211176975, 40.711049560352485, 0.0 ], [ -74.000233573631803, 40.711071145851498, 0.0 ], [ -74.00003603410083, 40.711259150485517, 0.0 ], [ -73.999587864605601, 40.711697190371453, 0.0 ], [ -73.999513304437002, 40.711810291761068, 0.0 ], [ -73.999455183438116, 40.711897586019511, 0.0 ], [ -73.999618586988305, 40.711877430725067, 0.0 ], [ -73.99978432615822, 40.71186885110464, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812520.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999754142764672, 40.710786243938415, 0.0 ], [ -74.000233573631803, 40.711071145851498, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812501.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999553009972558, 40.710967167689397, 0.0 ], [ -74.00003603410083, 40.711259150485517, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 194923783.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint James Place", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999702220141245, 40.711794766717155, 0.0 ], [ -73.999618586988305, 40.711877430725067, 0.0 ], [ -73.998887987167734, 40.712598931992417, 0.0 ], [ -73.998301207624138, 40.71318206490281, 0.0 ], [ -73.998302465265539, 40.713291554959177, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 183010767.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998795909851111, 40.714501993664967, 0.0 ], [ -73.999592985002707, 40.714450994582066, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812536.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999019231030744, 40.711390092914108, 0.0 ], [ -73.999038005820182, 40.711503943844001, 0.0 ], [ -73.999080945290757, 40.71157918612802, 0.0 ], [ -73.999287467974568, 40.711727559577419, 0.0 ], [ -73.999587864605601, 40.711697190371453, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671434.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pell Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997155136984659, 40.714644573003184, 0.0 ], [ -73.998042941979946, 40.714815068620887, 0.0 ], [ -73.998865978443263, 40.714994960089207, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165775864.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998660533737777, 40.713653933078071, 0.0 ], [ -73.998691166288978, 40.71353157450875, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165775306.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chatham Square", "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997619116828915, 40.714053690642764, 0.0 ], [ -73.997855553411682, 40.713880537558609, 0.0 ], [ -73.998078605096737, 40.713776291422519, 0.0 ], [ -73.998486979224893, 40.713588770529071, 0.0 ], [ -73.998582470139596, 40.713561942878044, 0.0 ], [ -73.998691166288978, 40.71353157450875, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196116989.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chatham Square", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997977724290337, 40.71367606245586, 0.0 ], [ -73.998477457082885, 40.713437269058424, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672497.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Doyers Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998042941979946, 40.714815068620887, 0.0 ], [ -73.998120736083564, 40.714593233582292, 0.0 ], [ -73.998127832774301, 40.71441708595794, 0.0 ], [ -73.997881335060342, 40.714313385379782, 0.0 ], [ -73.997709577178014, 40.714096927775977, 0.0 ], [ -73.997619116828915, 40.714053690642764, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670189.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998078605096737, 40.713776291422519, 0.0 ], [ -73.997977724290337, 40.71367606245586, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117014.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997977724290337, 40.71367606245586, 0.0 ], [ -73.997765632051738, 40.713486294291158, 0.0 ], [ -73.997642203531711, 40.713445576114289, 0.0 ], [ -73.997299945408457, 40.713467977923706, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672971.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chatham Square", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997486166166865, 40.71398989028625, 0.0 ], [ -73.997752426817073, 40.713783849443104, 0.0 ], [ -73.997977724290337, 40.71367606245586, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670536.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Catherine Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997619116828915, 40.714053690642764, 0.0 ], [ -73.997486166166865, 40.71398989028625, 0.0 ], [ -73.99741151616675, 40.713900964607298, 0.0 ], [ -73.997299945408457, 40.713467977923706, 0.0 ], [ -73.997116958585082, 40.712798984470147, 0.0 ], [ -73.996946907501808, 40.712071969917012, 0.0 ], [ -73.99678197681564, 40.71136394530464, 0.0 ], [ -73.996483556478253, 40.710204792393938, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195745925.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "The Bowery", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997398400763601, 40.71410857115665, 0.0 ], [ -73.997486166166865, 40.71398989028625, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922945.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": "suspension", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Brooklyn Bridge Promenade", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.00484983621385, 40.712479090873757, 0.0 ], [ -74.00478381004045, 40.712419578783539, 0.0 ], [ -74.004743116358085, 40.712366535353958, 0.0 ], [ -74.004521951135132, 40.712183164096601, 0.0 ], [ -74.004430682302271, 40.712110782358415, 0.0 ], [ -74.00129340600401, 40.709609035920103, 0.0 ], [ -74.000615177964505, 40.709090562066812, 0.0 ], [ -73.999890956182441, 40.708517131003724, 0.0 ], [ -73.999129274653043, 40.707909238294427, 0.0 ], [ -73.998616965446516, 40.707500591269522, 0.0 ], [ -73.997739850403093, 40.706801166421741, 0.0 ], [ -73.996988858825574, 40.706205379497455, 0.0 ], [ -73.995856981567584, 40.70532493435892, 0.0 ], [ -73.994893987582998, 40.704566580449629, 0.0 ], [ -73.994480942215375, 40.704220837390096, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 194923778.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pearl Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.001677256124921, 40.709475230012679, 0.0 ], [ -74.002502987534086, 40.708845964122027, 0.0 ], [ -74.002804821469553, 40.708607153402127, 0.0 ], [ -74.003446847403097, 40.708077435891489, 0.0 ], [ -74.003504339581283, 40.708036237733921, 0.0 ], [ -74.00406704427526, 40.70745013159793, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32922451.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Robert F Wagner Sr Pl", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999291240898771, 40.708775757808787, 0.0 ], [ -73.99904923476123, 40.708595372868253, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 19726366.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "South Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998205537046388, 40.708911676074628, 0.0 ], [ -73.998333726637426, 40.708906841311411, 0.0 ], [ -73.998656042161358, 40.708859991756732, 0.0 ], [ -73.999291240898771, 40.708775757808787, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812538.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999287467974568, 40.711727559577419, 0.0 ], [ -73.998724224291422, 40.711782442008662, 0.0 ], [ -73.998166370499987, 40.711843452697991, 0.0 ], [ -73.997868938309423, 40.711874094206145, 0.0 ], [ -73.997675710691809, 40.711893977132775, 0.0 ], [ -73.997069886864196, 40.711956281470599, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812555.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999188204135677, 40.710458850368589, 0.0 ], [ -73.998712186866626, 40.710179870010251, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812553.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999019231030744, 40.711390092914108, 0.0 ], [ -73.999032615928471, 40.711302661804709, 0.0 ], [ -73.998914667131672, 40.711203041950569, 0.0 ], [ -73.99875153307606, 40.711100357761737, 0.0 ], [ -73.998461377239309, 40.711327039025882, 0.0 ], [ -73.998349267491832, 40.711328060417642, 0.0 ], [ -73.998265544507362, 40.711333167376175, 0.0 ], [ -73.9982011353015, 40.711373886844875, 0.0 ], [ -73.998163675554139, 40.711418555664835, 0.0 ], [ -73.998147505879018, 40.711473438350772, 0.0 ], [ -73.99818505545791, 40.711621880128291, 0.0 ], [ -73.998289619356981, 40.711680848192103, 0.0 ], [ -73.998166370499987, 40.711843452697991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812497.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.999013841139032, 40.710619551240455, 0.0 ], [ -73.998538003533028, 40.710340571555392, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46154325.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99890864841926, 40.709867658484455, 0.0 ], [ -73.998922662137701, 40.709935344160883, 0.0 ], [ -73.998882237949914, 40.70997756255602, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 163806028.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998919518034199, 40.710001531697465, 0.0 ], [ -73.998882237949914, 40.70997756255602, 0.0 ], [ -73.998765187468379, 40.709972251211006, 0.0 ], [ -73.998155141558939, 40.710034489252877, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 40879219.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99890864841926, 40.709867658484455, 0.0 ], [ -73.998789711475638, 40.709399168214148, 0.0 ], [ -73.998741561776427, 40.709159950908152, 0.0 ], [ -73.998656042161358, 40.708859991756732, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670832.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "James Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998887987167734, 40.712598931992417, 0.0 ], [ -73.998677961054298, 40.711878928753919, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812548.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998882237949914, 40.70997756255602, 0.0 ], [ -73.998740304135012, 40.710153994301479, 0.0 ], [ -73.998712186866626, 40.710179870010251, 0.0 ], [ -73.998659186264859, 40.710228761453592, 0.0 ], [ -73.998586422726845, 40.710295833918437, 0.0 ], [ -73.998538003533028, 40.710340571555392, 0.0 ], [ -73.998307585662658, 40.710553228131012, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 40879220.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998789711475638, 40.709399168214148, 0.0 ], [ -73.997994522786144, 40.709521261998958, 0.0 ], [ -73.997811985120407, 40.70957097106082, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 140812503.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998461377239309, 40.711327039025882, 0.0 ], [ -73.998547166348928, 40.711392135695675, 0.0 ], [ -73.998579326036108, 40.711528389084059, 0.0 ], [ -73.998576631090245, 40.711609691572789, 0.0 ], [ -73.998523001667792, 40.711660488554728, 0.0 ], [ -73.998724224291422, 40.711782442008662, 0.0 ], [ -73.998740932955727, 40.711873753745017, 0.0 ], [ -73.998767163762011, 40.711967448580715, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 163806016.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997967842822206, 40.709278572292831, 0.0 ], [ -73.998741561776427, 40.709159950908152, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32934353.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 907L", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.008403212151705, 40.702787247796422, 0.0 ], [ -74.00922822490864, 40.702265860546113, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 53256165.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "pedestrian", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003969936393048, 40.708725980057864, 0.0 ], [ -74.003846507873007, 40.708841061258717, 0.0 ], [ -74.00344837453909, 40.709236830118989, 0.0 ], [ -74.00318175456276, 40.709496543643425, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670871.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "pedestrian", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fulton Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003163878088614, 40.706225945096755, 0.0 ], [ -74.003612137415374, 40.706780192415479, 0.0 ], [ -74.003735925261537, 40.706933547659474, 0.0 ], [ -74.003964726164398, 40.707215674079784, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673071.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "pedestrian", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Water Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "cobblestone", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003964726164398, 40.707215674079784, 0.0 ], [ -74.00316046449052, 40.707643049407281, 0.0 ], [ -74.003107913046406, 40.707670968987472, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673591.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Gold Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -74.003836626404876, 40.710545329275803, 0.0 ], [ -74.003365460038367, 40.710790261445183, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743291.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "York Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.953747644140734, 40.766854638725952, 0.0 ], [ -73.953259050457689, 40.76752356499545, 0.0 ], [ -73.952800909662784, 40.768152344106518, 0.0 ], [ -73.952309980360013, 40.768819556464457, 0.0 ], [ -73.951849953103022, 40.769451861044928, 0.0 ], [ -73.951391632645056, 40.770081574367524, 0.0 ], [ -73.950972029575851, 40.770655087250766, 0.0 ], [ -73.950471667962589, 40.771379760982107, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669896.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 75th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94998846417127, 40.767844282545759, 0.0 ], [ -73.952309980360013, 40.768819556464457, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32960689.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 907L", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.946481620965116, 40.77148228412473, 0.0 ], [ -73.947102356826448, 40.770860747900947, 0.0 ], [ -73.947728841905587, 40.770165254491666, 0.0 ], [ -73.948372664469716, 40.769482748159959, 0.0 ], [ -73.949085028490032, 40.768722131767774, 0.0 ], [ -73.949351019645647, 40.768390669020597, 0.0 ], [ -73.949831708154193, 40.767760191288566, 0.0 ], [ -73.950389651777158, 40.767129571503425, 0.0 ], [ -73.950629951115658, 40.76683055398896, 0.0 ], [ -73.951479667542898, 40.765848991475849, 0.0 ], [ -73.952068603043173, 40.765144192482246, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694763.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 76th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.951849953103022, 40.769451861044928, 0.0 ], [ -73.949505619706045, 40.76846584698486, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671422.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 77th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.951391632645056, 40.770081574367524, 0.0 ], [ -73.949870245879879, 40.769436553548687, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694761.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "E 78th St", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.948406980113575, 40.769560782283072, 0.0 ], [ -73.94873450586617, 40.769700590356443, 0.0 ], [ -73.949466004002019, 40.770012589210339, 0.0 ], [ -73.950972029575851, 40.770655087250766, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669966.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cherokee Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.949870245879879, 40.769436553548687, 0.0 ], [ -73.949466004002019, 40.770012589210339, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46211822.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.948406980113575, 40.769560782283072, 0.0 ], [ -73.949085028490032, 40.768722131767774, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108158002.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94873450586617, 40.769700590356443, 0.0 ], [ -73.948744028008178, 40.769685078818284, 0.0 ], [ -73.948540918922433, 40.769603371050927, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108158003.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.948493487875439, 40.769087337576465, 0.0 ], [ -73.948172519824411, 40.769428729715905, 0.0 ], [ -73.948540918922433, 40.769603371050927, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 118382830.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.946396909833823, 40.771308736230488, 0.0 ], [ -73.946506953456137, 40.771196076123921, 0.0 ], [ -73.946831424936761, 40.770850679183965, 0.0 ], [ -73.947306274395942, 40.770355065114337, 0.0 ], [ -73.947778249246213, 40.769855365374397, 0.0 ], [ -73.948175214770259, 40.769481591594229, 0.0 ], [ -73.948534630715443, 40.769083459656471, 0.0 ], [ -73.948511903338755, 40.769068628311274, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32960688.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.947760732098189, 40.770234171457858, 0.0 ], [ -73.948406980113575, 40.769560782283072, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220723.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Road 10", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.945347677581978, 40.76872689415152, 0.0 ], [ -73.945130644609335, 40.768763768596962, 0.0 ], [ -73.944980715788418, 40.768713763578369, 0.0 ], [ -73.944096953211897, 40.76830644238585, 0.0 ], [ -73.943922680046782, 40.768318688591393, 0.0 ], [ -73.943443878000338, 40.768835680510115, 0.0 ], [ -73.943288379624661, 40.768868132691416, 0.0 ], [ -73.942799965604692, 40.768757645535487, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669355.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944461759048778, 40.769852031762419, 0.0 ], [ -73.944486283056037, 40.769752091358484, 0.0 ], [ -73.943831680708499, 40.769349266736036, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220710.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West Road", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944461759048778, 40.769852031762419, 0.0 ], [ -73.943743645810642, 40.770374862535149, 0.0 ], [ -73.94346202396909, 40.770623384295362, 0.0 ], [ -73.943152734016763, 40.770896192493851, 0.0 ], [ -73.942965075953907, 40.770957080953828, 0.0 ], [ -73.942841647433866, 40.770912384067422, 0.0 ], [ -73.942782628119701, 40.770843331740885, 0.0 ], [ -73.942759900743013, 40.770743937083786, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671637.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942675369274781, 40.768629129148238, 0.0 ], [ -73.942799965604692, 40.768757645535487, 0.0 ], [ -73.943120574329598, 40.769088290048003, 0.0 ], [ -73.943831680708499, 40.769349266736036, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669570.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943743645810642, 40.770374862535149, 0.0 ], [ -73.943268616688414, 40.770374658438058, 0.0 ], [ -73.94306694490713, 40.770355745438167, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220713.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West Road", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943268616688414, 40.770374658438058, 0.0 ], [ -73.943422677759642, 40.770487183872859, 0.0 ], [ -73.94346202396909, 40.770623384295362, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220706.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Road 10", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943288379624661, 40.768868132691416, 0.0 ], [ -73.943120574329598, 40.769088290048003, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671639.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94306694490713, 40.770355745438167, 0.0 ], [ -73.942759900743013, 40.770743937083786, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672096.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East Road", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942675369274781, 40.768629129148238, 0.0 ], [ -73.94166144081359, 40.769295452283885, 0.0 ], [ -73.941634671018122, 40.769315794287991, 0.0 ], [ -73.941264565121074, 40.769677391080926, 0.0 ], [ -73.941108976913853, 40.769973878572998, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743311.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "1st Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.95649828554069, 40.767115760257653, 0.0 ], [ -73.955998732411189, 40.767804277980368, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694753.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 72nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.955998732411189, 40.767804277980368, 0.0 ], [ -73.953747644140734, 40.766854638725952, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671300.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 71st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.952097618626851, 40.765257339112573, 0.0 ], [ -73.952155470131146, 40.765281764607614, 0.0 ], [ -73.952474461888542, 40.765416478875778, 0.0 ], [ -73.954247646427874, 40.766165362760852, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743285.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "York Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.954247646427874, 40.766165362760852, 0.0 ], [ -73.953747644140734, 40.766854638725952, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670733.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 73rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.951163280899834, 40.766637059344497, 0.0 ], [ -73.950990445039167, 40.766563988435593, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669606.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.950629951115658, 40.76683055398896, 0.0 ], [ -73.950990445039167, 40.766563988435593, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049813.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.979121277992917, 40.766998330534761, 0.0 ], [ -73.979011953022834, 40.766964992974223, 0.0 ], [ -73.978924007956508, 40.766940159882544, 0.0 ], [ -73.978746321193313, 40.767170665045306, 0.0 ], [ -73.97866107107285, 40.767165358264847, 0.0 ], [ -73.978587319388026, 40.767136987392838, 0.0 ], [ -73.978451044959428, 40.767124536862447, 0.0 ], [ -73.978342348810045, 40.767103241687572, 0.0 ], [ -73.97825341559691, 40.767092832222623, 0.0 ], [ -73.978206972696739, 40.767047928629587, 0.0 ], [ -73.978130076908414, 40.767019149492654, 0.0 ], [ -73.978033148689249, 40.766992683561405, 0.0 ], [ -73.977965864874463, 40.767000643752631, 0.0 ], [ -73.977883309699862, 40.767005542331368, 0.0 ], [ -73.97778323737721, 40.767027177716507, 0.0 ], [ -73.977663042792202, 40.767041533266905, 0.0 ], [ -73.977569348508055, 40.767039152014689, 0.0 ], [ -73.977427324861651, 40.767019489671654, 0.0 ], [ -73.977362017340482, 40.766968054587629, 0.0 ], [ -73.977303357352426, 40.766930430750946, 0.0 ], [ -73.977205351154936, 40.766845862085518, 0.0 ], [ -73.977149745438837, 40.766780887695852, 0.0 ], [ -73.977110578892464, 40.766738569263396, 0.0 ], [ -73.977080844656555, 40.766683732154888, 0.0 ], [ -73.977053535871917, 40.766603177312938, 0.0 ], [ -73.977008979433833, 40.766489148501464, 0.0 ], [ -73.976955350011366, 40.766403830873763, 0.0 ], [ -73.976853481058143, 40.766306334598909, 0.0 ], [ -73.976751432441873, 40.766212988415262, 0.0 ], [ -73.97667893839845, 40.766111885913936, 0.0 ], [ -73.976637346400793, 40.766023982402849, 0.0 ], [ -73.976434955967278, 40.765928730788993, 0.0 ], [ -73.976195375280994, 40.765818238745894, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196116988.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park South", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976233913006681, 40.765674952608542, 0.0 ], [ -73.978984464575134, 40.76683728955188, 0.0 ], [ -73.979075913071057, 40.766875933980494, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671289.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978733654947803, 40.767761483954324, 0.0 ], [ -73.978552824081106, 40.767654192610486, 0.0 ], [ -73.978197001397078, 40.767479342046748, 0.0 ], [ -73.977799586715392, 40.767320751507235, 0.0 ], [ -73.977418880697968, 40.767228155139904, 0.0 ], [ -73.977055332502488, 40.767189034666742, 0.0 ], [ -73.976877735570824, 40.767185156635982, 0.0 ], [ -73.97672870506517, 40.767202845897287, 0.0 ], [ -73.976435764451026, 40.767375860231823, 0.0 ], [ -73.976329134426805, 40.767464646414211, 0.0 ], [ -73.97624361481175, 40.767563569729823, 0.0 ], [ -73.976153423957228, 40.767706851795182, 0.0 ], [ -73.97612602534106, 40.767763456970449, 0.0 ], [ -73.975902614329897, 40.768198267472179, 0.0 ], [ -73.975814220105946, 40.768334676689683, 0.0 ], [ -73.975750888878409, 40.768432442126169, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 36930576.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976356712706036, 40.768794383895894, 0.0 ], [ -73.976606264691952, 40.768983994333105, 0.0 ], [ -73.97676715295934, 40.769130130748678, 0.0 ], [ -73.976879801695972, 40.769219594922703, 0.0 ], [ -73.977104919506175, 40.769420157515462, 0.0 ], [ -73.977203464692849, 40.769507444234989, 0.0 ], [ -73.977317820228507, 40.769578743044725, 0.0 ], [ -73.977515000433371, 40.769660382809271, 0.0 ], [ -73.977653251155601, 40.769696644439186, 0.0 ], [ -73.977754042130485, 40.769701134620874, 0.0 ], [ -73.97786282811137, 40.769709094487666, 0.0 ], [ -73.977988412588104, 40.769678751742468, 0.0 ], [ -73.978173285873581, 40.769660382809271, 0.0 ], [ -73.978280814213079, 40.769632081035581, 0.0 ], [ -73.978363549050755, 40.769582144703591, 0.0 ], [ -73.978409902119409, 40.769532344400524, 0.0 ], [ -73.978453650073746, 40.769409340213308, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 45782065.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974947884845946, 40.769627182650453, 0.0 ], [ -73.975092603438213, 40.769696236240833, 0.0 ], [ -73.975220882860782, 40.769716646155281, 0.0 ], [ -73.975287178528745, 40.769690861628987, 0.0 ], [ -73.975362187854984, 40.769654191797301, 0.0 ], [ -73.975437287012738, 40.769597248066823, 0.0 ], [ -73.975519213366638, 40.769508056534249, 0.0 ], [ -73.975673274437867, 40.769255992860181, 0.0 ], [ -73.975771460298418, 40.769166732835963, 0.0 ], [ -73.975871712284132, 40.769113734639852, 0.0 ], [ -73.976005830756037, 40.769056858479928, 0.0 ], [ -73.97627406769989, 40.768878133674917, 0.0 ], [ -73.976356712706036, 40.768794383895894, 0.0 ], [ -73.97641797780841, 40.768704987183476, 0.0 ], [ -73.976498107531739, 40.768595792405812, 0.0 ], [ -73.976582100010816, 40.768533541097113, 0.0 ], [ -73.976756463007462, 40.768384477890329, 0.0 ], [ -73.976944210901834, 40.768246367911502, 0.0 ], [ -73.977075814090966, 40.768156562254021, 0.0 ], [ -73.977409268724429, 40.768013961506114, 0.0 ], [ -73.977545722816089, 40.76800178327921, 0.0 ], [ -73.977759521853699, 40.767903268825293, 0.0 ], [ -73.977845400794877, 40.767842241497085, 0.0 ], [ -73.978124327690594, 40.767557854769251, 0.0 ], [ -73.978197001397078, 40.767479342046748, 0.0 ], [ -73.978317465476678, 40.767277548956599, 0.0 ], [ -73.978451044959428, 40.767124536862447, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128580940.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978333545320268, 40.770174234791412, 0.0 ], [ -73.978149211023961, 40.769975783490658, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 104344851.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976879801695972, 40.769219594922703, 0.0 ], [ -73.976761852899173, 40.769219594922703, 0.0 ], [ -73.976590184848362, 40.769239868916507, 0.0 ], [ -73.976466756328335, 40.769280484919022, 0.0 ], [ -73.976300478169236, 40.769349538869683, 0.0 ], [ -73.97614497979356, 40.769426756749233, 0.0 ], [ -73.976047602416756, 40.769510437697996, 0.0 ], [ -73.975917526363631, 40.769650654075932, 0.0 ], [ -73.975874137735403, 40.769740389681203, 0.0 ], [ -73.97583074910716, 40.769838629279946, 0.0 ], [ -73.975832276243153, 40.769916731017979, 0.0 ], [ -73.97585823755486, 40.770010752326471, 0.0 ], [ -73.97590018887864, 40.77008307108612, 0.0 ], [ -73.976049129552749, 40.770194372428847, 0.0 ], [ -73.976208131358035, 40.770356357729618, 0.0 ], [ -73.976326708975535, 40.770524057341483, 0.0 ], [ -73.976615966497022, 40.770755434488407, 0.0 ], [ -73.976767871611571, 40.770856665988838, 0.0 ], [ -73.976912410540777, 40.770926058460518, 0.0 ], [ -73.97711345350136, 40.770979531433376, 0.0 ], [ -73.977292757232078, 40.770985382163161, 0.0 ], [ -73.977454633646275, 40.770975245433327, 0.0 ], [ -73.977589560601942, 40.770956740794993, 0.0 ], [ -73.977716133225485, 40.770874286240961, 0.0 ], [ -73.977897772575943, 40.770739174844607, 0.0 ], [ -73.978012756932301, 40.770580864213414, 0.0 ], [ -73.978180921553488, 40.770315266157731, 0.0 ], [ -73.978192958978298, 40.770249342705377, 0.0 ], [ -73.978201672636558, 40.770087629274357, 0.0 ], [ -73.978149211023961, 40.769975783490658, 0.0 ], [ -73.978107259700195, 40.769886184268991, 0.0 ], [ -73.977988412588104, 40.769678751742468, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578958.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977545722816089, 40.76800178327921, 0.0 ], [ -73.977596836955755, 40.768027840599984, 0.0 ], [ -73.977849533045173, 40.768126082730575, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225600.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977589560601942, 40.770956740794993, 0.0 ], [ -73.977598633586325, 40.771084368269264, 0.0 ], [ -73.977571863790857, 40.77120213092919, 0.0 ], [ -73.977528924320268, 40.771275264769493, 0.0 ], [ -73.97749137474139, 40.771336152882114, 0.0 ], [ -73.977496764633088, 40.77138894521169, 0.0 ], [ -73.977518234368389, 40.771454051158315, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049805.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977427324861651, 40.767019489671654, 0.0 ], [ -73.97743810464506, 40.767131136324188, 0.0 ], [ -73.977418880697968, 40.767228155139904, 0.0 ], [ -73.977378726004758, 40.767342590896149, 0.0 ], [ -73.977325455908428, 40.767408177055238, 0.0 ], [ -73.977290241949291, 40.767458387162328, 0.0 ], [ -73.977269041708581, 40.76751866645489, 0.0 ], [ -73.977269760360812, 40.767569965042277, 0.0 ], [ -73.977283414753117, 40.767620243062311, 0.0 ], [ -73.977317910060037, 40.767693993160918, 0.0 ], [ -73.977392021070983, 40.767800672125496, 0.0 ], [ -73.977545722816089, 40.76800178327921, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049819.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977053535871917, 40.766603177312938, 0.0 ], [ -73.976988228350763, 40.766601544443503, 0.0 ], [ -73.976900642610559, 40.766615287759926, 0.0 ], [ -73.97688186782112, 40.766566573813627, 0.0 ], [ -73.976828238398653, 40.766513777652733, 0.0 ], [ -73.97675682233357, 40.766452681012126, 0.0 ], [ -73.97663348364506, 40.766359130924613, 0.0 ], [ -73.976543831779708, 40.766306538708498, 0.0 ], [ -73.976434955967278, 40.766261634584183, 0.0 ], [ -73.976333087014055, 40.766212988415262, 0.0 ], [ -73.976281344053689, 40.766189447738924, 0.0 ], [ -73.976227534968174, 40.766157674616302, 0.0 ], [ -73.976175342850169, 40.766123452156741, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671288.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park-Center Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976233913006681, 40.765674952608542, 0.0 ], [ -73.976195375280994, 40.765818238745894, 0.0 ], [ -73.976187829432604, 40.765911381373208, 0.0 ], [ -73.976204627928425, 40.765973975322602, 0.0 ], [ -73.976233643512103, 40.766024866881487, 0.0 ], [ -73.976336770106712, 40.766105830644847, 0.0 ], [ -73.976703372574164, 40.766304293503005, 0.0 ], [ -73.976845845378222, 40.766421248197403, 0.0 ], [ -73.976929658194237, 40.766514594088527, 0.0 ], [ -73.976988228350763, 40.766601544443503, 0.0 ], [ -73.977015357472339, 40.766732650123586, 0.0 ], [ -73.977013830336361, 40.766814089276735, 0.0 ], [ -73.976997570829724, 40.76690015477287, 0.0 ], [ -73.976958943272507, 40.766971252272583, 0.0 ], [ -73.976916632622633, 40.767031532007003, 0.0 ], [ -73.976820512887215, 40.767125353290744, 0.0 ], [ -73.97672870506517, 40.767202845897287, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128582376.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976900642610559, 40.766615287759926, 0.0 ], [ -73.976892827267591, 40.766696659020759, 0.0 ], [ -73.976857523476923, 40.766801638685848, 0.0 ], [ -73.976784670107392, 40.76692464770003, 0.0 ], [ -73.976664834848492, 40.767099363651795, 0.0 ], [ -73.976600874800255, 40.76716787558383, 0.0 ], [ -73.976536555425909, 40.767212574989003, 0.0 ], [ -73.976397047062278, 40.767281563053047, 0.0 ], [ -73.976225379011481, 40.767448181859088, 0.0 ], [ -73.976091440202623, 40.767611670628568, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049802.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976345483764973, 40.766412267390471, 0.0 ], [ -73.976447532381258, 40.7664831613031, 0.0 ], [ -73.9765251468218, 40.766533236036494, 0.0 ], [ -73.976561169264698, 40.766570043662945, 0.0 ], [ -73.976591622152824, 40.766608484138288, 0.0 ], [ -73.976599257832731, 40.766633181281527, 0.0 ], [ -73.976597101876067, 40.766657878415579, 0.0 ], [ -73.976576081298418, 40.766722852925511, 0.0 ], [ -73.976554881057709, 40.766786262543064, 0.0 ], [ -73.97648562094929, 40.766924239484645, 0.0 ], [ -73.97642830843418, 40.76702588503646, 0.0 ], [ -73.976324822513433, 40.767188694488617, 0.0 ], [ -73.97627864910784, 40.767285781255822, 0.0 ], [ -73.976221875581885, 40.767345788563077, 0.0 ], [ -73.976016161381821, 40.767435935493118, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 211731507.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974836763245293, 40.768224664888734, 0.0 ], [ -73.974764448864931, 40.768238475904042, 0.0 ], [ -73.974682342847956, 40.768245687566072, 0.0 ], [ -73.974571580573425, 40.768246776118772, 0.0 ], [ -73.974459830152085, 40.768241741562427, 0.0 ], [ -73.974352750970212, 40.768227454305851, 0.0 ], [ -73.97424360566319, 40.768202553651349, 0.0 ], [ -73.974045257648456, 40.768126967181225, 0.0 ], [ -73.973986238334291, 40.768203029893471, 0.0 ], [ -73.973943388695247, 40.768233441347078, 0.0 ], [ -73.973889040620563, 40.768260383025897, 0.0 ], [ -73.973925961378725, 40.768308687523707, 0.0 ], [ -73.973973572088795, 40.768357332158537, 0.0 ], [ -73.974027830331949, 40.768395091256139, 0.0 ], [ -73.974124219561929, 40.768450471227148, 0.0 ], [ -73.974263817757091, 40.768483671973875, 0.0 ], [ -73.97438122756472, 40.768500272341022, 0.0 ], [ -73.974492079670782, 40.768513539024902, 0.0 ], [ -73.974870989057621, 40.768422781247409, 0.0 ], [ -73.975053706386404, 40.768386178750355, 0.0 ], [ -73.975219984545504, 40.768398356906822, 0.0 ], [ -73.975365062463894, 40.768419379529199, 0.0 ], [ -73.975551103559226, 40.768475848028906, 0.0 ], [ -73.9757871808159, 40.768566945904993, 0.0 ], [ -73.976270923596388, 40.76874934538457, 0.0 ], [ -73.976348717699992, 40.768788873143137, 0.0 ], [ -73.976356712706036, 40.768794383895894, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049808.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975475285749255, 40.767430764804587, 0.0 ], [ -73.975598175280112, 40.767366879553897, 0.0 ], [ -73.975890576905101, 40.767224685324955, 0.0 ], [ -73.975938726604326, 40.767175971825353, 0.0 ], [ -73.975955884426256, 40.76708126614853, 0.0 ], [ -73.976011220647763, 40.766863075185434, 0.0 ], [ -73.976043380334929, 40.766822457705352, 0.0 ], [ -73.976094314811533, 40.766771634793308, 0.0 ], [ -73.976131954221941, 40.766745236799558, 0.0 ], [ -73.97618010392118, 40.766712783581532, 0.0 ], [ -73.976240830034371, 40.766653932317638, 0.0 ], [ -73.976281074559097, 40.766611273623255, 0.0 ], [ -73.976326619144004, 40.766546230967947, 0.0 ], [ -73.976343327808294, 40.766487855810958, 0.0 ], [ -73.976345483764973, 40.766412267390471, 0.0 ], [ -73.976281344053689, 40.766189447738924, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049823.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976101680996862, 40.766330691671904, 0.0 ], [ -73.976345483764973, 40.766412267390471, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578942.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976270923596388, 40.76874934538457, 0.0 ], [ -73.976220078951329, 40.768650764004789, 0.0 ], [ -73.976177049649209, 40.768573545223497, 0.0 ], [ -73.97613411017862, 40.768508572523032, 0.0 ], [ -73.976053710960699, 40.768447681819389, 0.0 ], [ -73.975978611802944, 40.768402983245004, 0.0 ], [ -73.975814220105946, 40.768334676689683, 0.0 ], [ -73.975509331898522, 40.7682458916697, 0.0 ], [ -73.975427585207655, 40.768246572015137, 0.0 ], [ -73.975342335087205, 40.768267934858144, 0.0 ], [ -73.975287358191807, 40.7682919510397, 0.0 ], [ -73.975249718781413, 40.76833345206952, 0.0 ], [ -73.975219984545504, 40.768398356906822, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670253.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park South", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973635985205021, 40.764569951653293, 0.0 ], [ -73.976233913006681, 40.765674952608542, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 31292682.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976187829432604, 40.765911381373208, 0.0 ], [ -73.976097369083504, 40.765913558555042, 0.0 ], [ -73.976112281117224, 40.765978669866435, 0.0 ], [ -73.976132672874172, 40.766049156020848, 0.0 ], [ -73.976175342850169, 40.766123452156741, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 31292685.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976175342850169, 40.766123452156741, 0.0 ], [ -73.976052363487767, 40.766172982867857, 0.0 ], [ -73.975822664269614, 40.766140869553865, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128582379.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975938726604326, 40.767175971825353, 0.0 ], [ -73.975983911863111, 40.767326262381744, 0.0 ], [ -73.976016161381821, 40.767435935493118, 0.0 ], [ -73.976042931177275, 40.767529484064802, 0.0 ], [ -73.976091440202623, 40.767611670628568, 0.0 ], [ -73.976153423957228, 40.767706851795182, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049807.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975475285749255, 40.767430764804587, 0.0 ], [ -73.975568620707264, 40.767462333212492, 0.0 ], [ -73.975627640021443, 40.767492881075711, 0.0 ], [ -73.975710734185228, 40.767541594343008, 0.0 ], [ -73.97580730307827, 40.767578129270042, 0.0 ], [ -73.975895876965268, 40.767604594968141, 0.0 ], [ -73.975952111502053, 40.767622828399261, 0.0 ], [ -73.976011220647763, 40.76763908880563, 0.0 ], [ -73.976153423957228, 40.767706851795182, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049814.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.976011220647763, 40.766863075185434, 0.0 ], [ -73.976043380334929, 40.766753333092574, 0.0 ], [ -73.976048770226626, 40.766694481864583, 0.0 ], [ -73.976043380334929, 40.766653864281459, 0.0 ], [ -73.976019215653778, 40.766607191450099, 0.0 ], [ -73.976007447723575, 40.766568682937745, 0.0 ], [ -73.97601652070793, 40.766527861168825, 0.0 ], [ -73.976038080274748, 40.766462954504618, 0.0 ], [ -73.976083624859655, 40.766395938647491, 0.0 ], [ -73.976101680996862, 40.766330691671904, 0.0 ], [ -73.976100064029353, 40.766295380716805, 0.0 ], [ -73.976094045316955, 40.766256327731121, 0.0 ], [ -73.976073923054585, 40.76620904229091, 0.0 ], [ -73.976052363487767, 40.766172982867857, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 31292686.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975822664269614, 40.766140869553865, 0.0 ], [ -73.975830210118005, 40.766081133305633, 0.0 ], [ -73.975828323655918, 40.766013776879319, 0.0 ], [ -73.975724568240594, 40.76589355569422, 0.0 ], [ -73.975688186471587, 40.765853549954514, 0.0 ], [ -73.975573471609806, 40.765766190398388, 0.0 ], [ -73.975498731778174, 40.765720537500563, 0.0 ], [ -73.975296610839237, 40.765645968765405, 0.0 ], [ -73.97516913990043, 40.765600383822239, 0.0 ], [ -73.975143627746348, 40.76554758689376, 0.0 ], [ -73.974956059515037, 40.765527583922783, 0.0 ], [ -73.974866856807324, 40.765522072899117, 0.0 ], [ -73.97476480819104, 40.765489278896936, 0.0 ], [ -73.974686564929797, 40.765476555908336, 0.0 ], [ -73.974613711560252, 40.765420084860011, 0.0 ], [ -73.974542654821278, 40.765389127819184, 0.0 ], [ -73.9744133872519, 40.765234342398742, 0.0 ], [ -73.974336850789683, 40.765156031044292, 0.0 ], [ -73.97426768051281, 40.765125073880462, 0.0 ], [ -73.974189347420037, 40.765090442662526, 0.0 ], [ -73.97402001498898, 40.765114187841405, 0.0 ], [ -73.973939436107983, 40.765114187841405, 0.0 ], [ -73.973867031896091, 40.765114187841405, 0.0 ], [ -73.973670300848866, 40.765092279682392, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128580945.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.97583074910716, 40.769838629279946, 0.0 ], [ -73.975662135328335, 40.769833050580864, 0.0 ], [ -73.975485077385841, 40.769784270960365, 0.0 ], [ -73.975356348805633, 40.769727327341343, 0.0 ], [ -73.975220882860782, 40.769716646155281, 0.0 ], [ -73.975109581597081, 40.769757874163354, 0.0 ], [ -73.974996932860449, 40.769776175036625, 0.0 ], [ -73.974897669021558, 40.769786243916414, 0.0 ], [ -73.974768940441351, 40.769788352938349, 0.0 ], [ -73.974663118900878, 40.769768487309797, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 36930573.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975822664269614, 40.766140869553865, 0.0 ], [ -73.975797601273186, 40.76623407976561, 0.0 ], [ -73.975775682380259, 40.76641573724784, 0.0 ], [ -73.9757694840048, 40.766548952419228, 0.0 ], [ -73.975770921309262, 40.76668216732358, 0.0 ], [ -73.975734180214133, 40.766747141809766, 0.0 ], [ -73.975671477807296, 40.766803543694429, 0.0 ], [ -73.975606439780719, 40.766894439755241, 0.0 ], [ -73.975546342488215, 40.767050037738429, 0.0 ], [ -73.975453366856314, 40.767274759499621, 0.0 ], [ -73.975463338155961, 40.767367287766554, 0.0 ], [ -73.975475285749255, 40.767430764804587, 0.0 ], [ -73.975356169142586, 40.767483628272302, 0.0 ], [ -73.97524468821581, 40.767524585524683, 0.0 ], [ -73.9751226071687, 40.767707668216332, 0.0 ], [ -73.97503726721672, 40.767810265059708, 0.0 ], [ -73.974991003979582, 40.767898846557017, 0.0 ], [ -73.974965132499392, 40.767974093112514, 0.0 ], [ -73.974936206747259, 40.768047638714165, 0.0 ], [ -73.974894165591948, 40.76810084186463, 0.0 ], [ -73.97488060103116, 40.768125946661229, 0.0 ], [ -73.974939350850747, 40.768217657328151, 0.0 ], [ -73.97500043629006, 40.768295284729945, 0.0 ], [ -73.975053706386404, 40.768386178750355, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578946.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 13.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975750888878409, 40.768432442126169, 0.0 ], [ -73.975678933824156, 40.768543338028259, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578943.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975678933824156, 40.768543338028259, 0.0 ], [ -73.975432256447135, 40.768924056538992, 0.0 ], [ -73.974997741344211, 40.769398454876047, 0.0 ], [ -73.974680276722808, 40.769667458250801, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049824.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.975475285749255, 40.767430764804587, 0.0 ], [ -73.97539964760233, 40.767370893644937, 0.0 ], [ -73.975313858492697, 40.767342386789736, 0.0 ], [ -73.975217289599641, 40.767313947957817, 0.0 ], [ -73.975090177986942, 40.767285781255822, 0.0 ], [ -73.974965132499392, 40.767253056159525, 0.0 ], [ -73.97486856360635, 40.767253056159525, 0.0 ], [ -73.974809544292185, 40.767273330753312, 0.0 ], [ -73.97476822178912, 40.767281631088572, 0.0 ], [ -73.974687822571198, 40.767269452727454, 0.0 ], [ -73.974628713425503, 40.767249178132488, 0.0 ], [ -73.974564483882673, 40.767245027962964, 0.0 ], [ -73.974519747781528, 40.767219990869144, 0.0 ], [ -73.97449648141567, 40.767162772910098, 0.0 ], [ -73.974482467697243, 40.767111269901271, 0.0 ], [ -73.974437551933036, 40.766998534642227, 0.0 ], [ -73.974418238154428, 40.766951794017054, 0.0 ], [ -73.974372334243412, 40.766913149632572, 0.0 ], [ -73.974314752233695, 40.766880628460605, 0.0 ], [ -73.974260314327481, 40.766864231796724, 0.0 ], [ -73.974187371126405, 40.76685667980496, 0.0 ], [ -73.97413526883993, 40.766855046941757, 0.0 ], [ -73.974065559573873, 40.766855046941757, 0.0 ], [ -73.973968900849314, 40.766867293414776, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049800.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.97486856360635, 40.767253056159525, 0.0 ], [ -73.975020378889369, 40.767314152064309, 0.0 ], [ -73.975085057589823, 40.767382527704044, 0.0 ], [ -73.975149287132652, 40.767464034096122, 0.0 ], [ -73.97524468821581, 40.767524585524683, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128582383.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974746033401587, 40.769230684389875, 0.0 ], [ -73.974758250489472, 40.769254087921887, 0.0 ], [ -73.97477693544738, 40.769286539898857, 0.0 ], [ -73.974820234244063, 40.769323482067179, 0.0 ], [ -73.974916443810997, 40.769373962860669, 0.0 ], [ -73.974997741344211, 40.769398454876047, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 45782067.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974674258010396, 40.769533773098253, 0.0 ], [ -73.974947884845946, 40.769627182650453, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 162154228.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974870989057621, 40.768422781247409, 0.0 ], [ -73.974780528708521, 40.768367129115653, 0.0 ], [ -73.974702465110312, 40.76828133765742, 0.0 ], [ -73.974682342847956, 40.768245687566072, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128582373.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974732738335405, 40.769241161553481, 0.0 ], [ -73.974746033401587, 40.769230684389875, 0.0 ], [ -73.974775318479857, 40.76920768905098, 0.0 ], [ -73.974800111981708, 40.769165031995918, 0.0 ], [ -73.974804244232018, 40.769118633062824, 0.0 ], [ -73.974787176241605, 40.769073934939748, 0.0 ], [ -73.974753489418461, 40.769038285273624, 0.0 ], [ -73.974703183762557, 40.769011548011463, 0.0 ], [ -73.97464380512227, 40.768999574068687, 0.0 ], [ -73.974582629851426, 40.769003656094881, 0.0 ], [ -73.974507440862141, 40.769035291789329, 0.0 ], [ -73.974470520103964, 40.769072438198421, 0.0 ], [ -73.974452733461348, 40.769117068288857, 0.0 ], [ -73.974456147059414, 40.769163467223038, 0.0 ], [ -73.974480221909033, 40.76920626034623, 0.0 ], [ -73.974510944291751, 40.769233133597105, 0.0 ], [ -73.974563226241287, 40.769257557630866, 0.0 ], [ -73.974623413365322, 40.769266946254277, 0.0 ], [ -73.974684229310057, 40.769260142904116, 0.0 ], [ -73.974732738335405, 40.769241161553481, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613713.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 23.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974680276722808, 40.769667458250801, 0.0 ], [ -73.974597002895962, 40.769729164233041, 0.0 ], [ -73.9744225500678, 40.769811075944538, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 45782066.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974674258010396, 40.769533773098253, 0.0 ], [ -73.974030615109328, 40.769261775708223, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613714.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974663118900878, 40.769768487309797, 0.0 ], [ -73.974558555001806, 40.769833390745454, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613708.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974558555001806, 40.769833390745454, 0.0 ], [ -73.974384551331283, 40.769907478552064, 0.0 ], [ -73.97427280090993, 40.769938841684983, 0.0 ], [ -73.974111732979495, 40.769971157261978, 0.0 ], [ -73.973937549645896, 40.769987349060962, 0.0 ], [ -73.97384897575887, 40.769987349060962, 0.0 ], [ -73.973717552232827, 40.769987349060962, 0.0 ], [ -73.97362367828562, 40.769987349060962, 0.0 ], [ -73.973552172389006, 40.769993540041888, 0.0 ], [ -73.973301722087797, 40.769928432664194, 0.0 ], [ -73.973111369079092, 40.76984516043926, 0.0 ], [ -73.972978418417043, 40.769794884102602, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049817.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974047862762788, 40.770113141516163, 0.0 ], [ -73.974206774736558, 40.770047830157573, 0.0 ], [ -73.974293911319108, 40.770018984287084, 0.0 ], [ -73.974558555001806, 40.769833390745454, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 45782068.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973979051812009, 40.76935817911265, 0.0 ], [ -73.974030615109328, 40.769261775708223, 0.0 ], [ -73.974068074856675, 40.769184353536218, 0.0 ], [ -73.974271902594651, 40.768993382995156, 0.0 ], [ -73.974360386650133, 40.768920382711038, 0.0 ], [ -73.974448960537146, 40.768847178244933, 0.0 ], [ -73.974504117095577, 40.768664438863304, 0.0 ], [ -73.974492079670782, 40.768513539024902, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128582378.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974507440862141, 40.769035291789329, 0.0 ], [ -73.974468543810332, 40.768992090353365, 0.0 ], [ -73.974428209454075, 40.76896154317933, 0.0 ], [ -73.974393444652577, 40.768939228085628, 0.0 ], [ -73.974360386650133, 40.768920382711038, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613712.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.9744225500678, 40.769811075944538, 0.0 ], [ -73.97425393628896, 40.769867747360259, 0.0 ], [ -73.974097809092584, 40.769902240022994, 0.0 ], [ -73.973929464808336, 40.76991394167176, 0.0 ], [ -73.973755281474737, 40.76991394167176, 0.0 ], [ -73.973575887912503, 40.769896593296394, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049822.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973580648983514, 40.770452283320061, 0.0 ], [ -73.97361280867068, 40.770379488735728, 0.0 ], [ -73.973669222870527, 40.770314449768634, 0.0 ], [ -73.97373668634836, 40.770259479545963, 0.0 ], [ -73.973774235927237, 40.770218864141825, 0.0 ], [ -73.973833255241402, 40.770182262634087, 0.0 ], [ -73.973908354399157, 40.7701538930501, 0.0 ], [ -73.973978063665214, 40.770121373464093, 0.0 ], [ -73.974047862762788, 40.770113141516163, 0.0 ], [ -73.97425160066922, 40.770178180680311, 0.0 ], [ -73.974336760958153, 40.770211244498761, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225593.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.974030615109328, 40.769261775708223, 0.0 ], [ -73.973581277804215, 40.769086453138591, 0.0 ], [ -73.973245038393358, 40.768890787978407, 0.0 ], [ -73.972978508248559, 40.768850239771616, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225592.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973830021306384, 40.769600853824201, 0.0 ], [ -73.973979051812009, 40.76935817911265, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049812.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973968900849314, 40.766867293414776, 0.0 ], [ -73.973725906564951, 40.766968666910287, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049809.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973939436107983, 40.765114187841405, 0.0 ], [ -73.973908444230688, 40.765298978112654, 0.0 ], [ -73.973887064326931, 40.765355857488906, 0.0 ], [ -73.97386280981425, 40.765402531199079, 0.0 ], [ -73.973814660115025, 40.765457437402176, 0.0 ], [ -73.973777020704631, 40.765489959270596, 0.0 ], [ -73.973685841703286, 40.765579292270793, 0.0 ], [ -73.973661766853667, 40.765603649610256, 0.0 ], [ -73.973659071907818, 40.765636171407124, 0.0 ], [ -73.973659071907818, 40.765672775418885, 0.0 ], [ -73.973661766853667, 40.76570325606756, 0.0 ], [ -73.973667066913848, 40.765733668665142, 0.0 ], [ -73.973667066913848, 40.765766190398388, 0.0 ], [ -73.973661766853667, 40.765788574594673, 0.0 ], [ -73.973645687010077, 40.765808849635242, 0.0 ], [ -73.973608047599683, 40.765859673283586, 0.0 ], [ -73.973543728225323, 40.765906346639937, 0.0 ], [ -73.97350617864646, 40.765932744966911, 0.0 ], [ -73.973463508670463, 40.765960231873549, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128580941.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973937549645896, 40.769987349060962, 0.0 ], [ -73.973822116131885, 40.770042251476049, 0.0 ], [ -73.97351363466332, 40.77026567050153, 0.0 ], [ -73.973317801931387, 40.7704078582234, 0.0 ], [ -73.973259950427078, 40.77042915233929, 0.0 ], [ -73.973213238032301, 40.770426158917665, 0.0 ], [ -73.973140833820409, 40.770418063072121, 0.0 ], [ -73.973076424614533, 40.770397789437794, 0.0 ], [ -73.972987940559051, 40.770355065114337, 0.0 ], [ -73.972965303013893, 40.770340846344546, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049816.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.97348201396531, 40.767295782477461, 0.0 ], [ -73.973503483700611, 40.767322180252513, 0.0 ], [ -73.973522258490036, 40.767346536953191, 0.0 ], [ -73.973533128104989, 40.767411442754415, 0.0 ], [ -73.973566635265087, 40.767488866992039, 0.0 ], [ -73.973624307106334, 40.767598335729438, 0.0 ], [ -73.973652424374706, 40.767667663568687, 0.0 ], [ -73.973688626480651, 40.767752775468701, 0.0 ], [ -73.973727882858583, 40.767874966303239, 0.0 ], [ -73.973738213484353, 40.767907350918826, 0.0 ], [ -73.973749083099293, 40.767980488385447, 0.0 ], [ -73.973759773051157, 40.768053557736849, 0.0 ], [ -73.973889040620563, 40.768260383025897, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108111456.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.972612983759461, 40.767874762198467, 0.0 ], [ -73.972736322447957, 40.767928645836022, 0.0 ], [ -73.972788245071399, 40.767921570209339, 0.0 ], [ -73.973012015408671, 40.767915991349312, 0.0 ], [ -73.973373227984411, 40.767925992476101, 0.0 ], [ -73.973548219801742, 40.767917079907392, 0.0 ], [ -73.973727882858583, 40.767874966303239, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049810.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973725906564951, 40.766968666910287, 0.0 ], [ -73.973624307106334, 40.766992955704708, 0.0 ], [ -73.973550555421497, 40.767005338223932, 0.0 ], [ -73.973475456263742, 40.767009488408434, 0.0 ], [ -73.973437816853334, 40.767005338223932, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 31292683.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973670300848866, 40.765092279682392, 0.0 ], [ -73.973486415710212, 40.765090442662526, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049801.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973420748862935, 40.767100656330406, 0.0 ], [ -73.973437816853334, 40.767005338223932, 0.0 ], [ -73.973447159332281, 40.766960570643505, 0.0 ], [ -73.97346593412172, 40.766932131648183, 0.0 ], [ -73.973490008971353, 40.766897637443748, 0.0 ], [ -73.97351426348402, 40.766875253621016, 0.0 ], [ -73.973516868598338, 40.766852937826734, 0.0 ], [ -73.973516868598338, 40.766824430749352, 0.0 ], [ -73.97351426348402, 40.766794086686957, 0.0 ], [ -73.973503483700611, 40.766761565456719, 0.0 ], [ -73.973495488694581, 40.766716865748201, 0.0 ], [ -73.973492703917202, 40.766682235359724, 0.0 ], [ -73.973500788754762, 40.766653864281459, 0.0 ], [ -73.973522258490036, 40.766615287759926, 0.0 ], [ -73.973553250367345, 40.766574738164671, 0.0 ], [ -73.973573282798171, 40.766552286196905, 0.0 ], [ -73.973589362641761, 40.766527861168825, 0.0 ], [ -73.973597357647805, 40.766509627437273, 0.0 ], [ -73.973597357647805, 40.76649547588098, 0.0 ], [ -73.973581277804215, 40.766475133013529, 0.0 ], [ -73.973559718237397, 40.766458940358731, 0.0 ], [ -73.973543728225323, 40.766446761846851, 0.0 ], [ -73.973531780632058, 40.766428460056645, 0.0 ], [ -73.973524953435899, 40.766404034983047, 0.0 ], [ -73.973522258490036, 40.766373690728706, 0.0 ], [ -73.973527648381747, 40.766345183445743, 0.0 ], [ -73.973538338333626, 40.766310688936642, 0.0 ], [ -73.973606879789813, 40.766223261944816, 0.0 ], [ -73.973645687010077, 40.766176588811042, 0.0 ], [ -73.973661766853667, 40.766150190580923, 0.0 ], [ -73.973664461799515, 40.766129847607779, 0.0 ], [ -73.973667066913848, 40.766111545730297, 0.0 ], [ -73.973664461799515, 40.766089161642803, 0.0 ], [ -73.973645687010077, 40.766068886687748, 0.0 ], [ -73.973626822389122, 40.766048543689713, 0.0 ], [ -73.973591967756093, 40.766028268722266, 0.0 ], [ -73.973546333339655, 40.76600996681681, 0.0 ], [ -73.973463508670463, 40.765960231873549, 0.0 ], [ -73.973424431955607, 40.765936895218395, 0.0 ], [ -73.973323281654601, 40.765886343776941, 0.0 ], [ -73.973249619801322, 40.765837765370321, 0.0 ], [ -73.973190869981735, 40.765778232960855, 0.0 ], [ -73.973149367815623, 40.765708494927651, 0.0 ], [ -73.973122777683201, 40.765627734791899, 0.0 ], [ -73.972947785865856, 40.765555139034298, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670873.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Grand Army Plaza", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.973144157586958, 40.765122488446345, 0.0 ], [ -73.973203715890307, 40.765109357161002, 0.0 ], [ -73.973283126961419, 40.76507084778072, 0.0 ], [ -73.973340708971122, 40.765029684902572, 0.0 ], [ -73.973465754458672, 40.76483543659635, 0.0 ], [ -73.973566365770495, 40.764675887212626, 0.0 ], [ -73.973635985205021, 40.764569951653293, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117084.0, "ACCESS": "designated", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "designated", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 57th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "asphalt", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.982878212174157, 40.766715436989891, 0.0 ], [ -73.985716529145847, 40.767918236500357, 0.0 ], [ -73.988565536069444, 40.769103189422488, 0.0 ], [ -73.991418046422638, 40.770288529409399, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743301.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "10th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.989969063869353, 40.767175155397688, 0.0 ], [ -73.989512719705019, 40.76780536654028, 0.0 ], [ -73.989059609475703, 40.768430537164278, 0.0 ], [ -73.988565536069444, 40.769103189422488, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743297.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "10th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.988565536069444, 40.769103189422488, 0.0 ], [ -73.988079816995324, 40.769767534848008, 0.0 ], [ -73.987620957548188, 40.770392278818001, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670938.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 59th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.984769345510273, 40.769218166218209, 0.0 ], [ -73.987620957548188, 40.770392278818001, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108199254.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.984158401285555, 40.770055245721309, 0.0 ], [ -73.984666757904833, 40.770281930261206, 0.0 ], [ -73.98456084653283, 40.770449562028617, 0.0 ], [ -73.985671254055532, 40.770904560408411, 0.0 ], [ -73.985758480469627, 40.770797954458658, 0.0 ], [ -73.985844000084668, 40.770833739244523, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108199250.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.985772943345708, 40.771264855958066, 0.0 ], [ -73.985662720060333, 40.771226146050282, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108199255.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.985454131251373, 40.77100068930261, 0.0 ], [ -73.985387835583396, 40.771019261960404, 0.0 ], [ -73.985338787568878, 40.771049468030128, 0.0 ], [ -73.985301417653062, 40.771094981203838, 0.0 ], [ -73.98528964972283, 40.771127092123791, 0.0 ], [ -73.985290368375061, 40.771180564934866, 0.0 ], [ -73.985306268555604, 40.771217982270713, 0.0 ], [ -73.985346962237969, 40.771261658479723, 0.0 ], [ -73.985384062659193, 40.771283768699192, 0.0 ], [ -73.985452783778442, 40.771303837968958, 0.0 ], [ -73.985523481191294, 40.771304450251669, 0.0 ], [ -73.98557468516249, 40.771292680816345, 0.0 ], [ -73.985647089374396, 40.7712507734459, 0.0 ], [ -73.985662720060333, 40.771226146050282, 0.0 ], [ -73.985689310192754, 40.771184646827074, 0.0 ], [ -73.985691915307058, 40.771131174019288, 0.0 ], [ -73.985681315186724, 40.771099131132928, 0.0 ], [ -73.985630829867745, 40.771040828007081, 0.0 ], [ -73.985564264705189, 40.771008785077157, 0.0 ], [ -73.985494914765255, 40.77099824016053, 0.0 ], [ -73.985454131251373, 40.77100068930261, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46579578.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 60th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.982206631667751, 40.768945555231866, 0.0 ], [ -73.984165318313245, 40.769747873312255, 0.0 ], [ -73.98432063702586, 40.76984128256349, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669002.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 61st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.983850279143098, 40.770477931486369, 0.0 ], [ -73.982250738948196, 40.769798966079932, 0.0 ], [ -73.981996785217376, 40.769674261559267, 0.0 ], [ -73.981029119993323, 40.769274566005635, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672399.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 62nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.980563972339212, 40.769904961336849, 0.0 ], [ -73.982033526312492, 40.770503851771728, 0.0 ], [ -73.982261249237013, 40.770625765419162, 0.0 ], [ -73.983396540093096, 40.77110015160725, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117083.0, "ACCESS": "designated", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "designated", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 57th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "asphalt", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981847934374798, 40.766286944185254, 0.0 ], [ -73.982878212174157, 40.766715436989891, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117092.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "8th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.982878212174157, 40.766715436989891, 0.0 ], [ -73.982381353990505, 40.767398039779692, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 125480074.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "8th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.982381353990505, 40.767398039779692, 0.0 ], [ -73.982242204952996, 40.767595478250712, 0.0 ], [ -73.982228640392208, 40.767611942769342, 0.0 ], [ -73.98221345886391, 40.767623168575163, 0.0 ], [ -73.982194953569049, 40.767634666519776, 0.0 ], [ -73.982151385277774, 40.76765555331346, 0.0 ], [ -73.982087964218707, 40.767675351538557, 0.0 ], [ -73.981996964880423, 40.767689094632921, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 171574337.0, "ACCESS": "yes", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": "no", "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "designated", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": "roundabout", "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Columbus Circle", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981983040993526, 40.768410058820429, 0.0 ], [ -73.982022926192144, 40.768403051279378, 0.0 ], [ -73.982085628598966, 40.76838624678475, 0.0 ], [ -73.982146085217593, 40.768362638843826, 0.0 ], [ -73.982182556818117, 40.768344065443479, 0.0 ], [ -73.982215435157528, 40.768323791176364, 0.0 ], [ -73.982225047131067, 40.768316579522818, 0.0 ], [ -73.982254152546275, 40.768294672419493, 0.0 ], [ -73.982284335939823, 40.768266642202235, 0.0 ], [ -73.982315956637819, 40.768229767480939, 0.0 ], [ -73.982339133172161, 40.768194389500302, 0.0 ], [ -73.982364016505514, 40.768139485558457, 0.0 ], [ -73.982375245446562, 40.768094990880854, 0.0 ], [ -73.982379287865342, 40.768050428138707, 0.0 ], [ -73.982374706457406, 40.767998041365459, 0.0 ], [ -73.982361770717304, 40.767950280920623, 0.0 ], [ -73.982338684014508, 40.767900751534157, 0.0 ], [ -73.982315776974758, 40.767865985692758, 0.0 ], [ -73.982276969754494, 40.767822035111848, 0.0 ], [ -73.982241126974642, 40.767790875084877, 0.0 ], [ -73.982192977275417, 40.76775808220227, 0.0 ], [ -73.98216063792519, 40.767740461123807, 0.0 ], [ -73.982117069633915, 40.767721071128598, 0.0 ], [ -73.982062002906986, 40.767702565584045, 0.0 ], [ -73.982030202545943, 40.767694537441777, 0.0 ], [ -73.981996964880423, 40.767689094632921, 0.0 ], [ -73.981963906877979, 40.767683583788489, 0.0 ], [ -73.98190946897175, 40.767679773821705, 0.0 ], [ -73.981882429681704, 40.767680386137812, 0.0 ], [ -73.98184991066843, 40.767680930418791, 0.0 ], [ -73.981788555734511, 40.767688142141324, 0.0 ], [ -73.981757653688732, 40.767694061196025, 0.0 ], [ -73.981696029260249, 40.767711069970971, 0.0 ], [ -73.981658749175963, 40.767724949128095, 0.0 ], [ -73.981619133471938, 40.767744271087118, 0.0 ], [ -73.98160215531307, 40.767752435293467, 0.0 ], [ -73.981552478477852, 40.767784683898725, 0.0 ], [ -73.981513671257574, 40.767817068558315, 0.0 ], [ -73.981480972581238, 40.767851834425301, 0.0 ], [ -73.981454472280348, 40.767887960972317, 0.0 ], [ -73.981429139789327, 40.767936129671121, 0.0 ], [ -73.981416114217723, 40.767974093112514, 0.0 ], [ -73.981409017526971, 40.768008178549486, 0.0 ], [ -73.981407849717115, 40.768030630025372, 0.0 ], [ -73.981406322581122, 40.768057435716941, 0.0 ], [ -73.981412970114221, 40.768109142096527, 0.0 ], [ -73.9814249177075, 40.768149554686254, 0.0 ], [ -73.981450070535459, 40.768200988855817, 0.0 ], [ -73.981482769211809, 40.768246435946047, 0.0 ], [ -73.981493638826734, 40.76825745754109, 0.0 ], [ -73.98152472053556, 40.76828916162529, 0.0 ], [ -73.981564965060286, 40.768320389453095, 0.0 ], [ -73.981592812834108, 40.768338282515565, 0.0 ], [ -73.981636920114553, 40.768361550293022, 0.0 ], [ -73.981681386721107, 40.768379987619674, 0.0 ], [ -73.981746334916167, 40.768399445457007, 0.0 ], [ -73.981763313075021, 40.768402847176233, 0.0 ], [ -73.981790981185782, 40.768408357961022, 0.0 ], [ -73.981832842678017, 40.768413732676592, 0.0 ], [ -73.981882789007813, 40.768416454051405, 0.0 ], [ -73.981935879441096, 40.768415093364013, 0.0 ], [ -73.981967410307576, 40.768412167886027, 0.0 ], [ -73.981983040993526, 40.768410058820429, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196116975.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.982273106998761, 40.771445887406749, 0.0 ], [ -73.982261249237013, 40.770625765419162, 0.0 ], [ -73.982250738948196, 40.769798966079932, 0.0 ], [ -73.982206631667751, 40.768945555231866, 0.0 ], [ -73.982188485698998, 40.768497482935352, 0.0 ], [ -73.9821910009818, 40.76846387398961, 0.0 ], [ -73.982193785759179, 40.768428360064895, 0.0 ], [ -73.982199175650891, 40.76839277808682, 0.0 ], [ -73.98220717065692, 40.768365360220727, 0.0 ], [ -73.982215255494481, 40.768338962860057, 0.0 ], [ -73.982225047131067, 40.768316579522818, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673018.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 63rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.980111940088221, 40.770528955660495, 0.0 ], [ -73.982047180704811, 40.771355745916544, 0.0 ], [ -73.982273106998761, 40.771445887406749, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 109269259.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.98193471163124, 40.768117850535454, 0.0 ], [ -73.981971901883995, 40.76807097462811, 0.0 ], [ -73.981967320476059, 40.768043556629259, 0.0 ], [ -73.981891861992182, 40.768010491732205, 0.0 ], [ -73.981858085337493, 40.768020084636127, 0.0 ], [ -73.981819727274882, 40.768068865551683, 0.0 ], [ -73.981831046047446, 40.768099957413625, 0.0 ], [ -73.981892131486774, 40.768124245794553, 0.0 ], [ -73.98193471163124, 40.768117850535454, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22898530.0, "ACCESS": "yes", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "designated", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "designated", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981882429681704, 40.767680386137812, 0.0 ], [ -73.981827632449367, 40.767669636587591, 0.0 ], [ -73.981775350499831, 40.767651335134154, 0.0 ], [ -73.981753880764543, 40.767637047750654, 0.0 ], [ -73.981730973724808, 40.767620379132687, 0.0 ], [ -73.981682644362522, 40.767550370891556, 0.0 ], [ -73.981670157780059, 40.767529075853147, 0.0 ], [ -73.981662971257791, 40.767491044122195, 0.0 ], [ -73.981661983110982, 40.767434778891769, 0.0 ], [ -73.981665306877531, 40.767393277300719, 0.0 ], [ -73.981709773484098, 40.767118889899805, 0.0 ], [ -73.981847934374798, 40.766286944185254, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 167922075.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park South", "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981619133471938, 40.767744271087118, 0.0 ], [ -73.981551310667967, 40.767745767858351, 0.0 ], [ -73.981488338766567, 40.767748829435781, 0.0 ], [ -73.98142374989763, 40.767753387784133, 0.0 ], [ -73.981359610186345, 40.767750870487319, 0.0 ], [ -73.981318018188702, 40.767749849961561, 0.0 ], [ -73.981268431185001, 40.767744475192288, 0.0 ], [ -73.981222167947877, 40.767737671686255, 0.0 ], [ -73.981134402544626, 40.767724064672095, 0.0 ], [ -73.981018160546853, 40.767699231864064, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670348.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park West", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981493638826734, 40.76825745754109, 0.0 ], [ -73.981495076131196, 40.768274942413434, 0.0 ], [ -73.981507113556006, 40.768317668074353, 0.0 ], [ -73.981516545866484, 40.768349168026511, 0.0 ], [ -73.981528583291293, 40.768390737054986, 0.0 ], [ -73.981533973183005, 40.768426250999809, 0.0 ], [ -73.981538015601771, 40.768458363209433, 0.0 ], [ -73.98153783593871, 40.768466867499633, 0.0 ], [ -73.981533613856882, 40.768485168728454, 0.0 ], [ -73.981527056155301, 40.768504150295044, 0.0 ], [ -73.981498579560807, 40.768552590684109, 0.0 ], [ -73.981029119993323, 40.769274566005635, 0.0 ], [ -73.980563972339212, 40.769904961336849, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 153232761.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981498579560807, 40.768552590684109, 0.0 ], [ -73.981408029380162, 40.768501633026666, 0.0 ], [ -73.981383954530543, 40.768481767013448, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 186202420.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park South", "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981018160546853, 40.767699231864064, 0.0 ], [ -73.98117374875406, 40.767771144929227, 0.0 ], [ -73.981201237201759, 40.767791283294926, 0.0 ], [ -73.981226929018888, 40.767810333094701, 0.0 ], [ -73.981272473603781, 40.767850337656448, 0.0 ], [ -73.981304633290961, 40.767882858353865, 0.0 ], [ -73.981344787984156, 40.767932251683938, 0.0 ], [ -73.981364820414996, 40.767958649206179, 0.0 ], [ -73.981386200318752, 40.767993142859879, 0.0 ], [ -73.981407849717115, 40.768030630025372, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 153232754.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.981408029380162, 40.768501633026666, 0.0 ], [ -73.981242200378716, 40.768707436410075, 0.0 ], [ -73.981097661449496, 40.768767646535608, 0.0 ], [ -73.980901828717563, 40.768894053604726, 0.0 ], [ -73.980850175588728, 40.768981749218071, 0.0 ], [ -73.980759355913492, 40.769066927468721, 0.0 ], [ -73.980689377152871, 40.769157752400055, 0.0 ], [ -73.980592089607583, 40.769223676935383, 0.0 ], [ -73.98042033172527, 40.769337360887548, 0.0 ], [ -73.980355922519394, 40.769438934714998, 0.0 ], [ -73.980318462772061, 40.76962589002099, 0.0 ], [ -73.980307682988638, 40.76970303954635, 0.0 ], [ -73.980259443457882, 40.769755833173456, 0.0 ], [ -73.980141314998022, 40.769837064522939, 0.0 ], [ -73.979933444841279, 40.769942787587844, 0.0 ], [ -73.979837325105876, 40.770074635035435, 0.0 ], [ -73.979783156694253, 40.770213761702365, 0.0 ], [ -73.979717669510038, 40.770401735313428, 0.0 ], [ -73.979658560364328, 40.770499293612041, 0.0 ], [ -73.979652182325822, 40.77058072814912, 0.0 ], [ -73.979642570352283, 40.77064556275932, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225582.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park Driveway; West Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977486972996502, 40.771476229344991, 0.0 ], [ -73.977518234368389, 40.771454051158315, 0.0 ], [ -73.978251169808701, 40.770976333941299, 0.0 ], [ -73.978467484129126, 40.770814894407216, 0.0 ], [ -73.978576629436148, 40.77073196345318, 0.0 ], [ -73.978797525164524, 40.7705532431536, 0.0 ], [ -73.978972876307964, 40.770397381243754, 0.0 ], [ -73.979140142613872, 40.77023716488813, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128580946.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.979116067764252, 40.768889835504034, 0.0 ], [ -73.979000634250241, 40.768848879093099, 0.0 ], [ -73.978816299953948, 40.768756352889099, 0.0 ], [ -73.978727636235405, 40.768689135242461, 0.0 ], [ -73.978666371133016, 40.768624774962412, 0.0 ], [ -73.978583187137716, 40.768561094962251, 0.0 ], [ -73.978502787919794, 40.768527554082937, 0.0 ], [ -73.978417268304739, 40.768505851152, 0.0 ], [ -73.978367052480351, 40.7684572746602, 0.0 ], [ -73.978303002600597, 40.768372571868973, 0.0 ], [ -73.978219369447643, 40.768318688591393, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 170293900.0, "ACCESS": "permissive", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "pedestrian", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "6½ Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978928409701396, 40.765053838330026, 0.0 ], [ -73.979099538763023, 40.764820128036703, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22946967.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Central Park-Center Dr", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978733654947803, 40.767761483954324, 0.0 ], [ -73.978657118485614, 40.767642558598943, 0.0 ], [ -73.978626935092052, 40.767529075853147, 0.0 ], [ -73.97866053208368, 40.767407768842837, 0.0 ], [ -73.978975301759249, 40.767015951810002, 0.0 ], [ -73.979011953022834, 40.766964992974223, 0.0 ], [ -73.979075913071057, 40.766875933980494, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225587.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.979062079015677, 40.769136934112147, 0.0 ], [ -73.978853580038233, 40.769293955547553, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 162138628.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978924007956508, 40.766940159882544, 0.0 ], [ -73.978984464575134, 40.76683728955188, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578955.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978804801518308, 40.769364370152196, 0.0 ], [ -73.978896878834931, 40.769426756749233, 0.0 ], [ -73.978955808317579, 40.769467372637529, 0.0 ], [ -73.978891488943233, 40.769524248446082, 0.0 ], [ -73.978880709159824, 40.769589288186623, 0.0 ], [ -73.978886188883052, 40.769646163890826, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 113049826.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.977849533045173, 40.768126082730575, 0.0 ], [ -73.977996048268011, 40.768187449971123, 0.0 ], [ -73.978071147425766, 40.768224052577644, 0.0 ], [ -73.978219369447643, 40.768318688591393, 0.0 ], [ -73.978296534730546, 40.768248545016853, 0.0 ], [ -73.978422388701858, 40.768187858178742, 0.0 ], [ -73.978518688100323, 40.768123633482539, 0.0 ], [ -73.978771653684333, 40.767938646960914, 0.0 ], [ -73.978897687318693, 40.767868843159853, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578954.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978886188883052, 40.769646163890826, 0.0 ], [ -73.978832469629054, 40.769707053496269, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44225588.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978853580038233, 40.769293955547553, 0.0 ], [ -73.978804801518308, 40.769364370152196, 0.0 ], [ -73.97865541168656, 40.769296744919778, 0.0 ], [ -73.978596482203926, 40.769235786904822, 0.0 ], [ -73.978537462889761, 40.76914645881984, 0.0 ], [ -73.978473053683885, 40.769069240614577, 0.0 ], [ -73.978440804165189, 40.768992090353365, 0.0 ], [ -73.97843011421331, 40.768862077673461, 0.0 ], [ -73.97843011421331, 40.768744242832277, 0.0 ], [ -73.978440804165189, 40.768646681956909, 0.0 ], [ -73.978417268304739, 40.768505851152, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128578953.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978832469629054, 40.769707053496269, 0.0 ], [ -73.978768150254709, 40.769731477355847, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 128580939.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.978473053683885, 40.769069240614577, 0.0 ], [ -73.978387264574252, 40.769065158592419, 0.0 ], [ -73.978317465476678, 40.769081486679546, 0.0 ], [ -73.978279915897801, 40.769105774701728, 0.0 ], [ -73.978279915897801, 40.769158568803363, 0.0 ], [ -73.978301475464605, 40.769243950927923, 0.0 ], [ -73.978393642612772, 40.769347565900674, 0.0 ], [ -73.978453650073746, 40.769409340213308, 0.0 ], [ -73.978478443575597, 40.769434852715548, 0.0 ], [ -73.97862325199938, 40.769556768324314, 0.0 ], [ -73.978768150254709, 40.769731477355847, 0.0 ], [ -73.978784140266782, 40.769784270960365, 0.0 ], [ -73.978752070411119, 40.76982896860563, 0.0 ], [ -73.978676971253378, 40.769893940015052, 0.0 ], [ -73.978505213371051, 40.77005647030974, 0.0 ], [ -73.978333545320268, 40.770174234791412, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941788.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998109057984877, 40.765695635906695, 0.0 ], [ -73.9983118077445, 40.765777756701361, 0.0 ], [ -73.99836157441122, 40.765862394762991, 0.0 ], [ -74.001122366773913, 40.767034253438418, 0.0 ], [ -74.001194052333588, 40.767026361287002, 0.0 ], [ -74.001240315570726, 40.766967238157399, 0.0 ], [ -74.001214533922067, 40.766902263886408, 0.0 ], [ -73.998162777238846, 40.765622768074365, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941693.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997209934216997, 40.766973973706463, 0.0 ], [ -73.997382141256963, 40.76704643184263, 0.0 ], [ -73.99740064655181, 40.767116168471851, 0.0 ], [ -73.997488411955075, 40.767161344161387, 0.0 ], [ -74.000176081453617, 40.768319368936083, 0.0 ], [ -74.000261870563264, 40.768325832210252, 0.0 ], [ -74.000347659672897, 40.768241333355135, 0.0 ], [ -74.000321967855768, 40.768189354939992, 0.0 ], [ -73.997250627899362, 40.766914034099365, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941791.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.996150281507838, 40.768359033019252, 0.0 ], [ -73.99629913235043, 40.76825868216266, 0.0 ], [ -73.996413128559979, 40.768245551496982, 0.0 ], [ -73.996468285118425, 40.768326444520405, 0.0 ], [ -73.996538713036699, 40.768423529625395, 0.0 ], [ -73.999219645170626, 40.769551393701178, 0.0 ], [ -73.999293037529341, 40.76953697065975, 0.0 ], [ -73.999338941440357, 40.769480094862089, 0.0 ], [ -73.999319717493265, 40.76943532894883, 0.0 ], [ -73.996413128559979, 40.768245551496982, 0.0 ], [ -73.996318446129038, 40.768126558973229, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 55874424.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.998513120199661, 40.7650050552013, 0.0 ], [ -73.998905144989649, 40.764453469969901, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941661.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995935943481058, 40.768572864881413, 0.0 ], [ -73.996001251002198, 40.768688454901557, 0.0 ], [ -73.996085602807398, 40.768742950185633, 0.0 ], [ -73.996217475491093, 40.768736486952029, 0.0 ], [ -73.996266343842564, 40.768687842594737, 0.0 ], [ -73.996253947091631, 40.768594363687903, 0.0 ], [ -73.996152527296047, 40.76850258550661, 0.0 ], [ -73.996128901604081, 40.768427543652606, 0.0 ], [ -73.996150281507838, 40.768359033019252, 0.0 ], [ -73.996230770557304, 40.768260246956835, 0.0 ], [ -73.996318446129038, 40.768126558973229, 0.0 ], [ -73.997209934216997, 40.766973973706463, 0.0 ], [ -73.997250627899362, 40.766914034099365, 0.0 ], [ -73.998109057984877, 40.765695635906695, 0.0 ], [ -73.998162777238846, 40.765622768074365, 0.0 ], [ -73.998410532594207, 40.765189233436942, 0.0 ], [ -73.998473324832574, 40.765103846102654, 0.0 ], [ -73.998550220620899, 40.765076290804025, 0.0 ], [ -73.998624241800314, 40.765096838212969, 0.0 ], [ -73.998644813220309, 40.765138749464498, 0.0 ], [ -73.998647059008519, 40.765174537297973, 0.0 ], [ -73.998613102690783, 40.765213931107596, 0.0 ], [ -73.998551029104661, 40.76523849269384, 0.0 ], [ -73.998464431511266, 40.765255093871637, 0.0 ], [ -73.99837945088538, 40.765300679051641, 0.0 ], [ -73.998211915084894, 40.76539742838979, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941786.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995935943481058, 40.768572864881413, 0.0 ], [ -73.996241909666821, 40.768153772833934, 0.0 ], [ -73.99715630479453, 40.766901175311688, 0.0 ], [ -73.99805551839394, 40.765669373559909, 0.0 ], [ -73.998211915084894, 40.76539742838979, 0.0 ], [ -73.998296087227018, 40.765270538406277, 0.0 ], [ -73.998513120199661, 40.7650050552013, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941474.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99805605738311, 40.765576094518863, 0.0 ], [ -73.997995960090591, 40.765537041110498, 0.0 ], [ -73.997869117972485, 40.765474174600044, 0.0 ], [ -73.997663134277829, 40.765396135678046, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941844.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997754762436813, 40.765287683876643, 0.0 ], [ -73.997819081811159, 40.765356673938925, 0.0 ], [ -73.99792068126979, 40.7654052526972, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68668536.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995113984996081, 40.76925095838029, 0.0 ], [ -73.995955167428136, 40.768041855760465, 0.0 ], [ -73.995989483071995, 40.767989877189294, 0.0 ], [ -73.996429747392739, 40.767428791778599, 0.0 ], [ -73.996907830786938, 40.766793746506814, 0.0 ], [ -73.996942146430797, 40.766748230387002, 0.0 ], [ -73.997359503711806, 40.766187134492824, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443639.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99715630479453, 40.766901175311688, 0.0 ], [ -73.997110221220453, 40.766881240784066, 0.0 ], [ -73.997035301725759, 40.766848855668428, 0.0 ], [ -73.996907830786938, 40.766793746506814, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941784.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.997070964842536, 40.766800277965395, 0.0 ], [ -73.996942146430797, 40.766748230387002, 0.0 ], [ -73.996727628740956, 40.76665726609005, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443684.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 50th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.996907830786938, 40.766793746506814, 0.0 ], [ -73.996684868933428, 40.766714348412115, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 194920159.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.996684868933428, 40.766714348412115, 0.0 ], [ -73.996229782410481, 40.767346332846792, 0.0 ], [ -73.995809281025998, 40.767911841221419, 0.0 ], [ -73.995776402686602, 40.76796688142101, 0.0 ], [ -73.994907911469909, 40.769159929475542, 0.0 ], [ -73.994859941433731, 40.769229051585008, 0.0 ], [ -73.994794454249515, 40.769352872506865, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941736.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.996244963938778, 40.768078866655465, 0.0 ], [ -73.99615692904095, 40.768054442188472, 0.0 ], [ -73.995989483071995, 40.767989877189294, 0.0 ], [ -73.995809281025998, 40.767911841221419, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443634.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.996241909666821, 40.768153772833934, 0.0 ], [ -73.996197712554846, 40.768136560068335, 0.0 ], [ -73.996117672663033, 40.76810893799248, 0.0 ], [ -73.995955167428136, 40.768041855760465, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 55874436.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995765982229301, 40.768795268337655, 0.0 ], [ -73.995935943481058, 40.768572864881413, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 116672328.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99515467867846, 40.770146137334379, 0.0 ], [ -73.9953135008207, 40.77004497278417, 0.0 ], [ -73.995473131446673, 40.770027352312127, 0.0 ], [ -73.995673365923508, 40.770067763735277, 0.0 ], [ -73.995821767608447, 40.770193283908064, 0.0 ], [ -73.995856083252292, 40.770350234814885, 0.0 ], [ -73.995367848895384, 40.771030283095541, 0.0 ], [ -73.995091347450924, 40.771401394943091, 0.0 ], [ -73.994975644442334, 40.771420987958287, 0.0 ], [ -73.994798047510656, 40.771535076338211, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941530.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99499747350373, 40.769890878536451, 0.0 ], [ -73.995128986861332, 40.769686847678081, 0.0 ], [ -73.995350511410393, 40.769341783060085, 0.0 ], [ -73.995765982229301, 40.768795268337655, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941737.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995525323564692, 40.769428661682568, 0.0 ], [ -73.995350511410393, 40.769341783060085, 0.0 ], [ -73.995287988666618, 40.76931865169275, 0.0 ], [ -73.995113984996081, 40.76925095838029, 0.0 ], [ -73.994907911469909, 40.769159929475542, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443559.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995367579400778, 40.769793251311597, 0.0 ], [ -73.995304607499378, 40.769772433222805, 0.0 ], [ -73.995210284394545, 40.76972766750648, 0.0 ], [ -73.995128986861332, 40.769686847678081, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 116672331.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995070865862445, 40.77081686733267, 0.0 ], [ -73.995367848895384, 40.771030283095541, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22942165.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99515467867846, 40.770146137334379, 0.0 ], [ -73.995033945104268, 40.770136340639546, 0.0 ], [ -73.994931716824937, 40.77011994477899, 0.0 ], [ -73.994782865982344, 40.770085860425226, 0.0 ], [ -73.994562868569275, 40.77000456134715, 0.0 ], [ -73.994369730783191, 40.769927344139049, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 116672335.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99515467867846, 40.770146137334379, 0.0 ], [ -73.995070865862445, 40.77081686733267, 0.0 ], [ -73.995005827835882, 40.771316287716303, 0.0 ], [ -73.994975644442334, 40.771420987958287, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443564.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995128986861332, 40.769686847678081, 0.0 ], [ -73.995093952565256, 40.76966739021772, 0.0 ], [ -73.995045623202969, 40.769594254607718, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443598.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.99499747350373, 40.769890878536451, 0.0 ], [ -73.995045623202969, 40.769594254607718, 0.0 ], [ -73.995113984996081, 40.76925095838029, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68506902.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994798945825934, 40.769976191687284, 0.0 ], [ -73.99490288090432, 40.769625549855341, 0.0 ], [ -73.995074459123586, 40.769307086006066, 0.0 ], [ -73.995113984996081, 40.76925095838029, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671810.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 54th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.995074459123586, 40.769307086006066, 0.0 ], [ -73.994859941433731, 40.769229051585008, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443597.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994954444201639, 40.770016739207023, 0.0 ], [ -73.99499747350373, 40.769890878536451, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941526.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994798945825934, 40.769976191687284, 0.0 ], [ -73.994954444201639, 40.770016739207023, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443637.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 54th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994859941433731, 40.769229051585008, 0.0 ], [ -73.992822742032402, 40.768361346189756, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443588.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994679649556218, 40.770769585137529, 0.0 ], [ -73.994782865982344, 40.770085860425226, 0.0 ], [ -73.994798945825934, 40.769976191687284, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68506907.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994794454249515, 40.769352872506865, 0.0 ], [ -73.994671025729474, 40.76956057818348, 0.0 ], [ -73.994573648352684, 40.769907070355003, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 22941923.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994794454249515, 40.769352872506865, 0.0 ], [ -73.994444829940946, 40.769732361785138, 0.0 ], [ -73.994382486860232, 40.769833935008798, 0.0 ], [ -73.994369730783191, 40.769927344139049, 0.0 ], [ -73.994245403947872, 40.770587531364072, 0.0 ], [ -73.994202284814236, 40.77089993424439, 0.0 ], [ -73.994142187521732, 40.771010485870001, 0.0 ], [ -73.993910332346886, 40.771335472568317, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68506901.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "trunk", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "12th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 8.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.994573648352684, 40.769907070355003, 0.0 ], [ -73.994562868569275, 40.77000456134715, 0.0 ], [ -73.994437553587147, 40.770668081376179, 0.0 ], [ -73.994396410747129, 40.770912588162865, 0.0 ], [ -73.99433631345461, 40.771198593290222, 0.0 ], [ -73.994233366523062, 40.771478066188358, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46443582.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 57th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.993910332346886, 40.771335472568317, 0.0 ], [ -73.994233366523062, 40.771478066188358, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 169381961.0, "ACCESS": "designated", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "designated", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 57th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "asphalt", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.991418046422638, 40.770288529409399, 0.0 ], [ -73.993910332346886, 40.771335472568317, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46538358.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 54th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.992822742032402, 40.768361346189756, 0.0 ], [ -73.991433946603152, 40.767771349034312, 0.0 ], [ -73.991141814472769, 40.767652763872341, 0.0 ], [ -73.989969063869353, 40.767175155397688, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68668520.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "11th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.991418046422638, 40.770288529409399, 0.0 ], [ -73.991906819768715, 40.769623780993903, 0.0 ], [ -73.992361906291649, 40.768994267434266, 0.0 ], [ -73.992822742032402, 40.768361346189756, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46538405.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "11th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.990770271271259, 40.771183286196369, 0.0 ], [ -73.990937447745637, 40.770951570380412, 0.0 ], [ -73.991418046422638, 40.770288529409399, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 195743169.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 72nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.953747644140734, 40.766854638725952, 0.0 ], [ -73.9517499706119, 40.766011939884926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694759.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 73rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.951163280899834, 40.766637059344497, 0.0 ], [ -73.953259050457689, 40.76752356499545, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694758.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 74th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.952800909662784, 40.768152344106518, 0.0 ], [ -73.950555929936257, 40.767201689291888, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669396.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.952099325425891, 40.765342658212148, 0.0 ], [ -73.952336750155482, 40.765444170108182, 0.0 ], [ -73.952347440107374, 40.765426956640752, 0.0 ], [ -73.952167777050533, 40.765345651862781, 0.0 ], [ -73.952131574944588, 40.765340344936575, 0.0 ], [ -73.951815457796116, 40.765184334724317, 0.0 ], [ -73.951545154727114, 40.765465193665122, 0.0 ], [ -73.951565815978654, 40.765474991048613, 0.0 ], [ -73.951892802742066, 40.765119154596945, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46211823.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.952097618626851, 40.765257339112573, 0.0 ], [ -73.952158614234634, 40.765188893248578, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108158006.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.951844653042841, 40.765565752851977, 0.0 ], [ -73.951882741610888, 40.765581129277145, 0.0 ], [ -73.952099325425891, 40.765342658212148, 0.0 ], [ -73.952155470131146, 40.765281764607614, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46211827.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "FDR Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.950990445039167, 40.766563988435593, 0.0 ], [ -73.951548388662133, 40.765926961829159, 0.0 ], [ -73.951844653042841, 40.765565752851977, 0.0 ], [ -73.952097618626851, 40.765257339112573, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 35893761.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "yes", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.949979031860792, 40.767360892434603, 0.0 ], [ -73.949799278972435, 40.767575884107508, 0.0 ], [ -73.94973675622866, 40.767582891735778, 0.0 ], [ -73.949657075662955, 40.76766487412808, 0.0 ], [ -73.949597068201967, 40.767774274540507, 0.0 ], [ -73.94947471766028, 40.767939735518624, 0.0 ], [ -73.94939566591529, 40.767909255895724, 0.0 ], [ -73.949014780234805, 40.768437476668069, 0.0 ], [ -73.948713036130883, 40.768866091674191, 0.0 ], [ -73.948511903338755, 40.769068628311274, 0.0 ], [ -73.948493487875439, 40.769087337576465, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108299273.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944413968675661, 40.76664338670993, 0.0 ], [ -73.944474425294274, 40.766628282675327, 0.0 ], [ -73.944531917472474, 40.766628895001126, 0.0 ], [ -73.944591835101917, 40.766645291723059, 0.0 ], [ -73.944625342262015, 40.766663865598211, 0.0 ], [ -73.944663879987715, 40.766702237983161, 0.0 ], [ -73.944683014103248, 40.766750883793947, 0.0 ], [ -73.944678702189904, 40.766798985280921, 0.0 ], [ -73.944660556221152, 40.766833751680537, 0.0 ], [ -73.944620132033364, 40.766871035392185, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108297872.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944620132033364, 40.766871035392185, 0.0 ], [ -73.944556531311264, 40.766897977623358, 0.0 ], [ -73.944493469578319, 40.766904441035784, 0.0 ], [ -73.944431216329107, 40.766894167611525, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220709.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944431216329107, 40.766894167611525, 0.0 ], [ -73.944360429084739, 40.766855046941757, 0.0 ], [ -73.944328538892137, 40.766813340880617, 0.0 ], [ -73.944317759108742, 40.766757279184603, 0.0 ], [ -73.944332671142448, 40.76671033428142, 0.0 ], [ -73.944363932514335, 40.766673254588063, 0.0 ], [ -73.944413968675661, 40.76664338670993, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108220715.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Main Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944431216329107, 40.766894167611525, 0.0 ], [ -73.944268531431177, 40.766991867131473, 0.0 ], [ -73.942675369274781, 40.768629129148238, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46694755.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 70th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.954677041133664, 40.765577727413479, 0.0 ], [ -73.952760485474997, 40.764776175441398, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 108158014.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.949979031860792, 40.767360892434603, 0.0 ], [ -73.950539670429606, 40.766687338070355, 0.0 ], [ -73.950760925484076, 40.766381650994077, 0.0 ], [ -73.950791737698324, 40.7663440948619, 0.0 ], [ -73.950806559900514, 40.766293271584018, 0.0 ], [ -73.950819585472132, 40.766261430474458, 0.0 ], [ -73.951883460263119, 40.76508357084699, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251962.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.922361945418032, 40.85752273861403, 0.0 ], [ -73.922142037836494, 40.857557253678657, 0.0 ], [ -73.922111045959184, 40.857510169147048, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251961.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Swindler's Cove Park", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.921858349869765, 40.857079136901064, 0.0 ], [ -73.921733214550699, 40.857164881559342, 0.0 ], [ -73.921667727366483, 40.857284665709926, 0.0 ], [ -73.921690454743157, 40.857364838758343, 0.0 ], [ -73.92179061689734, 40.857390928949776, 0.0 ], [ -73.921889970567776, 40.857374690524544, 0.0 ], [ -73.922361945418032, 40.85752273861403, 0.0 ], [ -73.92244324295126, 40.857446370572475, 0.0 ], [ -73.922634404443713, 40.857488835019261, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251969.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.921789718582048, 40.856968932430853, 0.0 ], [ -73.921858349869765, 40.857079136901064, 0.0 ], [ -73.92219836220481, 40.856999371168442, 0.0 ], [ -73.922380720207471, 40.857015677629263, 0.0 ], [ -73.922561640905712, 40.857081175206432, 0.0 ], [ -73.922567210460457, 40.857089532257788, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251963.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.922111045959184, 40.857510169147048, 0.0 ], [ -73.922142037836494, 40.857557253678657, 0.0 ], [ -73.922091013528359, 40.857573492059139, 0.0 ], [ -73.922061548787028, 40.857644492462619, 0.0 ], [ -73.922064243732876, 40.857693139585088, 0.0 ], [ -73.921948900050396, 40.857788531324879, 0.0 ], [ -73.922050858835149, 40.857770254713003, 0.0 ], [ -73.922085713468178, 40.857741854614666, 0.0 ], [ -73.922131347884601, 40.857766246087429, 0.0 ], [ -73.922450429473528, 40.857756054665359, 0.0 ], [ -73.922458514311089, 40.857654683901842, 0.0 ], [ -73.922160812625918, 40.857648569038503, 0.0 ], [ -73.922150032842524, 40.857703331016829, 0.0 ], [ -73.922083018522315, 40.857729692846334, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593917.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931721582194797, 40.84632389290509, 0.0 ], [ -73.931536888572396, 40.846245881043551, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119552.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931386600425355, 40.846355491760157, 0.0 ], [ -73.931554315888903, 40.846422494873941, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593911.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93097894494943, 40.846355491760157, 0.0 ], [ -73.931193462639271, 40.84633918267555, 0.0 ], [ -73.931386600425355, 40.846355491760157, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119530.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931153757103715, 40.847736992564826, 0.0 ], [ -73.931045150785863, 40.84768263006719, 0.0 ], [ -73.93094211402277, 40.847591776643469, 0.0 ], [ -73.930873482735066, 40.847507378661831, 0.0 ], [ -73.930813385442576, 40.847332058839477, 0.0 ], [ -73.930699928222182, 40.846838374754704, 0.0 ], [ -73.930699928222182, 40.846684186913805, 0.0 ], [ -73.930742867692757, 40.846533940065306, 0.0 ], [ -73.930834046694102, 40.846404147172031, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591068.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Wadsworth Ave", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935972499950793, 40.848460281351748, 0.0 ], [ -73.935928931659518, 40.848519943490352, 0.0 ], [ -73.935470970527675, 40.849144965717791, 0.0 ], [ -73.934965937674932, 40.849839971552477, 0.0 ], [ -73.934543909154456, 40.850416940451666, 0.0 ], [ -73.934097985447409, 40.851020948323509, 0.0 ], [ -73.933666973774109, 40.851614962169819, 0.0 ], [ -73.933225900969589, 40.852212979652514, 0.0 ], [ -73.93272491053564, 40.852897964980649, 0.0 ], [ -73.932227962520471, 40.853581991967559, 0.0 ], [ -73.931795513542696, 40.854199967960021, 0.0 ], [ -73.931335306622643, 40.854812842250546, 0.0 ], [ -73.930876626838568, 40.855422653336944, 0.0 ], [ -73.930406718113446, 40.856076962499522, 0.0 ], [ -73.930113508004709, 40.85641539339457, 0.0 ], [ -73.929726513780309, 40.856608286680654, 0.0 ], [ -73.929332422865158, 40.856694847275278, 0.0 ], [ -73.929033643201663, 40.856697361199799, 0.0 ], [ -73.928720939651271, 40.856670455408015, 0.0 ], [ -73.928410931046713, 40.856605976584738, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68668523.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint Nicholas Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933730933822332, 40.84932096025841, 0.0 ], [ -73.933309983280182, 40.849894943838194, 0.0 ], [ -73.932860915469661, 40.850505955345028, 0.0 ], [ -73.932432958068304, 40.851094945534342, 0.0 ], [ -73.93199493953577, 40.851695957468145, 0.0 ], [ -73.93149493724863, 40.852379928916548, 0.0 ], [ -73.930995923108298, 40.853061990770499, 0.0 ], [ -73.930538950123264, 40.853684931744105, 0.0 ], [ -73.930081977138244, 40.854309973197509, 0.0 ], [ -73.929643958605709, 40.854907966354979, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61914063.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 187th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.928141885619127, 40.851859170847391, 0.0 ], [ -73.929174049880572, 40.852294857549261, 0.0 ], [ -73.929410127137245, 40.852394537806497, 0.0 ], [ -73.929602905597221, 40.852475939841241, 0.0 ], [ -73.930995923108298, 40.853061990770499, 0.0 ], [ -73.932227962520471, 40.853581991967559, 0.0 ], [ -73.933568428587435, 40.854139631470531, 0.0 ], [ -73.933703355543102, 40.854157161672461, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673358.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 184th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929580088389002, 40.849890866785195, 0.0 ], [ -73.929714656018561, 40.849947741651874, 0.0 ], [ -73.930042541097265, 40.850086293243443, 0.0 ], [ -73.930706665586811, 40.850366861027801, 0.0 ], [ -73.931042904997653, 40.850508945156164, 0.0 ], [ -73.932432958068304, 40.851094945534342, 0.0 ], [ -73.933666973774109, 40.851614962169819, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 110985802.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 185th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930601922024678, 40.851108943160895, 0.0 ], [ -73.93199493953577, 40.851695957468145, 0.0 ], [ -73.933225900969589, 40.852212979652514, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60858742.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929470853250436, 40.85537339303977, 0.0 ], [ -73.929464834538052, 40.855349272467102, 0.0 ], [ -73.929480914381628, 40.855324948049713, 0.0 ], [ -73.932686732136077, 40.856391748810822, 0.0 ], [ -73.932796416432254, 40.856427691292552, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671352.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 186th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93272491053564, 40.852897964980649, 0.0 ], [ -73.93149493724863, 40.852379928916548, 0.0 ], [ -73.930202620880891, 40.851835728484176, 0.0 ], [ -73.930100931590729, 40.851792988618001, 0.0 ], [ -73.929376979303257, 40.851486945909116, 0.0 ], [ -73.929115569555577, 40.851376664186859, 0.0 ], [ -73.928640720096396, 40.851176349165762, 0.0 ], [ -73.927476952645819, 40.850693973432833, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672264.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fairview Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.928235310408667, 40.857163454747393, 0.0 ], [ -73.928918389350713, 40.857420348346032, 0.0 ], [ -73.929044961974242, 40.857442293984157, 0.0 ], [ -73.929184470337873, 40.857434344636196, 0.0 ], [ -73.929774214321895, 40.857370478045382, 0.0 ], [ -73.930410221543056, 40.857304776924408, 0.0 ], [ -73.93072481155555, 40.857219983654382, 0.0 ], [ -73.93147490481779, 40.856850982190551, 0.0 ], [ -73.932026111076127, 40.856604142096757, 0.0 ], [ -73.932203169018621, 40.856600133400597, 0.0 ], [ -73.932630946756916, 40.856715977827115, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673351.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 188th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932540216913225, 40.854532157400563, 0.0 ], [ -73.931795513542696, 40.854199967960021, 0.0 ], [ -73.930538950123264, 40.853684931744105, 0.0 ], [ -73.929146920758996, 40.853099973486636, 0.0 ], [ -73.927685361791731, 40.852483957732417, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671109.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Wadsworth Terrace", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932091957586451, 40.855156987024429, 0.0 ], [ -73.932540216913225, 40.854532157400563, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251993.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932080638813872, 40.855712167253664, 0.0 ], [ -73.932195982496353, 40.8555843627447, 0.0 ], [ -73.932265601930865, 40.855462673054859, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671788.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 189th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.92722713116531, 40.853111048943589, 0.0 ], [ -73.928691924067593, 40.853723933307435, 0.0 ], [ -73.930081977138244, 40.854309973197509, 0.0 ], [ -73.931335306622643, 40.854812842250546, 0.0 ], [ -73.932038777321637, 40.855132730481962, 0.0 ], [ -73.932091957586451, 40.855156987024429, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61914065.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Wadsworth Terrace", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932091957586451, 40.855156987024429, 0.0 ], [ -73.931744040076907, 40.85562438236493, 0.0 ], [ -73.931654927200725, 40.855754972536474, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251549.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932018924553859, 40.855766930832758, 0.0 ], [ -73.932080638813872, 40.855712167253664, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251547.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93185794645494, 40.855669565778072, 0.0 ], [ -73.93185794645494, 40.855716176003547, 0.0 ], [ -73.931860641400789, 40.855748653663127, 0.0 ], [ -73.931903580871378, 40.855766930832758, 0.0 ], [ -73.931957210293831, 40.855785140052504, 0.0 ], [ -73.932018924553859, 40.855766930832758, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 104502458.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931744040076907, 40.85562438236493, 0.0 ], [ -73.93185794645494, 40.855669565778072, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670177.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 193rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930903935623206, 40.857977955540548, 0.0 ], [ -73.931817971424792, 40.858270991289125, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673067.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 190th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931654927200725, 40.855754972536474, 0.0 ], [ -73.930876626838568, 40.855422653336944, 0.0 ], [ -73.929643958605709, 40.854907966354979, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61914066.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Wadsworth Terrace", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929774214321895, 40.857370478045382, 0.0 ], [ -73.930365485441897, 40.857112836875082, 0.0 ], [ -73.930681602590383, 40.856914373676446, 0.0 ], [ -73.931005624913368, 40.856637638480521, 0.0 ], [ -73.931654927200725, 40.855754972536474, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673208.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway Terrace", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93147490481779, 40.856850982190551, 0.0 ], [ -73.930903935623206, 40.857977955540548, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 121772578.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933508421126461, 40.846838578616747, 0.0 ], [ -73.933139303376208, 40.846676236275002, 0.0 ], [ -73.932452721004552, 40.846364665618488, 0.0 ], [ -73.931894867213103, 40.846130833766587, 0.0 ], [ -73.931457118175175, 40.845968557645953, 0.0 ], [ -73.931130939895496, 40.845903660677429, 0.0 ], [ -73.930787603793902, 40.845858130829122, 0.0 ], [ -73.930384260231335, 40.845819260545809, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 121772577.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933405474194885, 40.846942480224904, 0.0 ], [ -73.932851842485292, 40.846715241963949, 0.0 ], [ -73.931701729427033, 40.84624126012902, 0.0 ], [ -73.93134985933024, 40.846111330752997, 0.0 ], [ -73.93038318225301, 40.845870362731745, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 49036429.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930408245249438, 40.846009330577964, 0.0 ], [ -73.93061593574312, 40.846059481249938, 0.0 ], [ -73.931422712699785, 40.846286653804938, 0.0 ], [ -73.932341150246273, 40.846663257024986, 0.0 ], [ -73.933388226541439, 40.847091774794578, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672662.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Audubon Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933352024435479, 40.847349590842583, 0.0 ], [ -73.933306929008225, 40.847411972118351, 0.0 ], [ -73.932848967876367, 40.848037956135428, 0.0 ], [ -73.932336928164418, 40.84873494419115, 0.0 ], [ -73.931916965769105, 40.849308932847165, 0.0 ], [ -73.931471940377349, 40.849920969020594, 0.0 ], [ -73.931042904997653, 40.850508945156164, 0.0 ], [ -73.930601922024678, 40.851108943160895, 0.0 ], [ -73.930449028763334, 40.851317684114655, 0.0 ], [ -73.930100931590729, 40.851792988618001, 0.0 ], [ -73.929602905597221, 40.852475939841241, 0.0 ], [ -73.929146920758996, 40.853099973486636, 0.0 ], [ -73.928691924067593, 40.853723933307435, 0.0 ], [ -73.928253905535058, 40.85432098050584, 0.0 ], [ -73.927780942537964, 40.854975980005911, 0.0 ], [ -73.927318938987341, 40.855597951752586, 0.0 ], [ -73.926862954149115, 40.856229973429514, 0.0 ], [ -73.926739884955197, 40.856417771441322, 0.0 ], [ -73.926739705292135, 40.856455140736166, 0.0 ], [ -73.926739345966027, 40.856602035832701, 0.0 ], [ -73.926798365280192, 40.85675633648296, 0.0 ], [ -73.926925476892904, 40.856884070787224, 0.0 ], [ -73.927206020756131, 40.8570495814662, 0.0 ], [ -73.927381731225694, 40.857168142843676, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 9852385.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930408245249438, 40.846009330577964, 0.0 ], [ -73.930559072385634, 40.846079527917141, 0.0 ], [ -73.930757510231899, 40.846156860427357, 0.0 ], [ -73.931487121905661, 40.846494458589071, 0.0 ], [ -73.932860466312022, 40.847046381670161, 0.0 ], [ -73.933302437431806, 40.847221634294691, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669434.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932512818297056, 40.846481479303449, 0.0 ], [ -73.931993142905199, 40.846257569237729, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593914.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931554315888903, 40.846422494873941, 0.0 ], [ -73.932341150246273, 40.846747656081703, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196116966.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Amsterdam Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932313751630105, 40.8461492494989, 0.0 ], [ -73.932257966250958, 40.846225562608105, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591060.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Amsterdam Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 46.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932257966250958, 40.846225562608105, 0.0 ], [ -73.932076776058153, 40.846473664549102, 0.0 ], [ -73.931887501027788, 40.846732774130238, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593919.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "no", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932076776058153, 40.846473664549102, 0.0 ], [ -73.931721582194797, 40.84632389290509, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593915.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931993142905199, 40.846257569237729, 0.0 ], [ -73.931834769920613, 40.846189274818244, 0.0 ], [ -73.931654927200725, 40.846086255441378, 0.0 ], [ -73.93157973821144, 40.846014563102415, 0.0 ], [ -73.931538864866013, 40.845914873247217, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591062.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Amsterdam Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931887501027788, 40.846732774130238, 0.0 ], [ -73.931839620823141, 40.846798281873333, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196116969.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Amsterdam Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931839620823141, 40.846798281873333, 0.0 ], [ -73.931382647838106, 40.847423660106848, 0.0 ], [ -73.931153757103715, 40.847736992564826, 0.0 ], [ -73.930876806501615, 40.84811596588731, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251535.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.923155966297685, 40.858565452523159, 0.0 ], [ -73.923078172194067, 40.858478282894147, 0.0 ], [ -73.923027147885932, 40.858076540167318, 0.0 ], [ -73.923033525924453, 40.857663788252893, 0.0 ], [ -73.923006666297454, 40.857310755932936, 0.0 ], [ -73.923038825984634, 40.856093540965503, 0.0 ], [ -73.923143479715236, 40.855685736676342, 0.0 ], [ -73.923280203301474, 40.855282074543673, 0.0 ], [ -73.923473341087558, 40.854973669853074, 0.0 ], [ -73.923615544397038, 40.854778937268875, 0.0 ], [ -73.923714718404398, 40.854596366458082, 0.0 ], [ -73.923846231761999, 40.854515170867003, 0.0 ], [ -73.924009814975221, 40.854261527429827, 0.0 ], [ -73.924408127972214, 40.853873076704552, 0.0 ], [ -73.924481969488568, 40.853695531474386, 0.0 ], [ -73.92455563134186, 40.853686494524958, 0.0 ], [ -73.924569016239587, 40.853602240200267, 0.0 ], [ -73.924687054867917, 40.853457173027259, 0.0 ], [ -73.92483195312326, 40.853372986358252, 0.0 ], [ -73.924853333027031, 40.853318288747609, 0.0 ], [ -73.92494325438696, 40.85322696741877, 0.0 ], [ -73.924994278695095, 40.853149847002122, 0.0 ], [ -73.925128307335484, 40.85289626628559, 0.0 ], [ -73.925195321655679, 40.852869834584844, 0.0 ], [ -73.925304017805061, 40.852692354614177, 0.0 ], [ -73.925372469429703, 40.852408263365277, 0.0 ], [ -73.925448826228859, 40.852289693469139, 0.0 ], [ -73.925514582907653, 40.852196264318415, 0.0 ], [ -73.925533357697105, 40.852147545210826, 0.0 ], [ -73.925533357697105, 40.852085779930874, 0.0 ], [ -73.925666128696093, 40.851890970909452, 0.0 ], [ -73.925664781223176, 40.851875750368833, 0.0 ], [ -73.925849834171686, 40.851620194251637, 0.0 ], [ -73.925955745543689, 40.851487285655367, 0.0 ], [ -73.926319203907639, 40.850944436887296, 0.0 ], [ -73.927021955954416, 40.849925929432786, 0.0 ], [ -73.927848046689689, 40.848757368370727, 0.0 ], [ -73.928733246570673, 40.847576555115282, 0.0 ], [ -73.92879756594499, 40.847333078142114, 0.0 ], [ -73.928797655776535, 40.847153544729821, 0.0 ], [ -73.928843919013659, 40.847117529263031, 0.0 ], [ -73.928907609567304, 40.847068330744676, 0.0 ], [ -73.928945877798412, 40.84700193986852, 0.0 ], [ -73.928965371240082, 40.846959876423298, 0.0 ], [ -73.928986122323138, 40.846881661448535, 0.0 ], [ -73.929019629483236, 40.846783264025092, 0.0 ], [ -73.929036338147512, 40.846720882157477, 0.0 ], [ -73.929053855295564, 40.846647355741389, 0.0 ], [ -73.929108113538717, 40.846560646110753, 0.0 ], [ -73.929152400482224, 40.846480459987717, 0.0 ], [ -73.929163180265633, 40.846375946064761, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251539.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.928491869253818, 40.849439059807764, 0.0 ], [ -73.928726868532138, 40.84954098675248, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117055.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint Nicholas Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.928715909085668, 40.856181936732447, 0.0 ], [ -73.928410931046713, 40.856605976584738, 0.0 ], [ -73.928265942959868, 40.856807973784555, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251541.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.926787405833721, 40.853712790005964, 0.0 ], [ -73.926601634232966, 40.853734057402868, 0.0 ], [ -73.92653605721722, 40.853723457678754, 0.0 ], [ -73.926504975508394, 40.853743841762089, 0.0 ], [ -73.92629234428064, 40.853391264183301, 0.0 ], [ -73.92620125511084, 40.853164048037129, 0.0 ], [ -73.926110076109495, 40.852918892900206, 0.0 ], [ -73.926104686217798, 40.852904352073679, 0.0 ], [ -73.926270964376897, 40.85263249238821, 0.0 ], [ -73.926501651741845, 40.852356554685947, 0.0 ], [ -73.92656597111619, 40.852283578110566, 0.0 ], [ -73.92658205095978, 40.85205629021695, 0.0 ], [ -73.926555281164312, 40.851853463142334, 0.0 ], [ -73.926619600538658, 40.851662730382067, 0.0 ], [ -73.926753719010577, 40.851484159989873, 0.0 ], [ -73.926844987843438, 40.851285340181796, 0.0 ], [ -73.926863672801346, 40.851209644445291, 0.0 ], [ -73.926920087001193, 40.850981061822054, 0.0 ], [ -73.927156074426335, 40.850648243025447, 0.0 ], [ -73.927370681947707, 40.850348038765084, 0.0 ], [ -73.927617449156259, 40.850047765193843, 0.0 ], [ -73.927950005474443, 40.849751567323679, 0.0 ], [ -73.928218242418268, 40.849540579045012, 0.0 ], [ -73.928491869253818, 40.849439059807764, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670176.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 193rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.926862954149115, 40.856229973429514, 0.0 ], [ -73.928265942959868, 40.856807973784555, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671964.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort George Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.924852344880208, 40.856361038017035, 0.0 ], [ -73.924739606312045, 40.85658015786025, 0.0 ], [ -73.924670975024341, 40.856802945943798, 0.0 ], [ -73.924669986877532, 40.856990946162114, 0.0 ], [ -73.924688941330018, 40.857154961818495, 0.0 ], [ -73.92472190950096, 40.857301991249791, 0.0 ], [ -73.924769969368654, 40.857445962913658, 0.0 ], [ -73.924839948129289, 40.857602979317285, 0.0 ], [ -73.924931935614381, 40.857760946548147, 0.0 ], [ -73.925030929958695, 40.857895948781959, 0.0 ], [ -73.92508195426683, 40.857956961276479, 0.0 ], [ -73.9252029573356, 40.858065737310483, 0.0 ], [ -73.92531138399039, 40.858123964008563, 0.0 ], [ -73.925405707095223, 40.8581636423826, 0.0 ], [ -73.9255441374805, 40.858200874807864, 0.0 ], [ -73.92568687977915, 40.858229274709409, 0.0 ], [ -73.925848846024877, 40.858235049807512, 0.0 ], [ -73.925997966362047, 40.858215686241287, 0.0 ], [ -73.926143852764184, 40.858192449954345, 0.0 ], [ -73.926243655592259, 40.85816187588015, 0.0 ], [ -73.926356933149577, 40.858095971716686, 0.0 ], [ -73.926471109022188, 40.858024971797114, 0.0 ], [ -73.926560132066854, 40.857949487588627, 0.0 ], [ -73.92662561925107, 40.857876041575047, 0.0 ], [ -73.926669546868453, 40.857793083491366, 0.0 ], [ -73.926717876230725, 40.857719841132933, 0.0 ], [ -73.926767283571351, 40.857657129847027, 0.0 ], [ -73.926851904871128, 40.85757396766018, 0.0 ], [ -73.926932483752111, 40.857481836880297, 0.0 ], [ -73.927272316424094, 40.857249335183212, 0.0 ], [ -73.927381731225694, 40.857168142843676, 0.0 ], [ -73.927921618711451, 40.856981230226069, 0.0 ], [ -73.928265942959868, 40.856807973784555, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670438.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.927079987121772, 40.851431974944191, 0.0 ], [ -73.928141885619127, 40.851859170847391, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236774.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930118628401829, 40.847383363719217, 0.0 ], [ -73.930034186765127, 40.847293053513603, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 175168756.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930081168654482, 40.847492768694345, 0.0 ], [ -73.929877879905689, 40.847520357746518, 0.0 ], [ -73.929496455236048, 40.847531977762586, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236799.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929955763840823, 40.84721748912358, 0.0 ], [ -73.930034186765127, 40.847293053513603, 0.0 ], [ -73.929931509328156, 40.847382344417355, 0.0 ], [ -73.929691569315764, 40.847479245977382, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236800.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929931509328156, 40.847382344417355, 0.0 ], [ -73.930026101927567, 40.847401643196569, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236798.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "dirt", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.92996573514047, 40.846915162747898, 0.0 ], [ -73.929857128822619, 40.846830492088415, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236753.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929955763840823, 40.84721748912358, 0.0 ], [ -73.929953068894974, 40.847009550699049, 0.0 ], [ -73.92996573514047, 40.846915162747898, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61236754.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929881922324455, 40.847216945494559, 0.0 ], [ -73.929955763840823, 40.84721748912358, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251532.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929120240795044, 40.847771376821548, 0.0 ], [ -73.928980732431427, 40.847710558805915, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251543.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929033643201663, 40.847454782763819, 0.0 ], [ -73.92879756594499, 40.847333078142114, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251533.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.929012353129437, 40.847523755412247, 0.0 ], [ -73.929033643201663, 40.847454782763819, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251952.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.928980732431427, 40.847710558805915, 0.0 ], [ -73.928996003791269, 40.847576555115282, 0.0 ], [ -73.929012353129437, 40.847523755412247, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251534.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.92879756594499, 40.847333078142114, 0.0 ], [ -73.928658147412904, 40.847324991674121, 0.0 ], [ -73.928491869253818, 40.847475032869028, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 33146406.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Henry Hudson Parkway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "HHP;NY 9A", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933745486529943, 40.864512759272095, 0.0 ], [ -73.933984887553137, 40.864074571342222, 0.0 ], [ -73.934413922932833, 40.863399552448826, 0.0 ], [ -73.935206506508024, 40.862262480611342, 0.0 ], [ -73.935378174558821, 40.861983389911266, 0.0 ], [ -73.935933153741345, 40.860945893211863, 0.0 ], [ -73.936227801154544, 40.860496879222552, 0.0 ], [ -73.936373867219743, 40.860302094933921, 0.0 ], [ -73.936699955667876, 40.859925569233503, 0.0 ], [ -73.937172020349678, 40.859386730192732, 0.0 ], [ -73.937360846222404, 40.859166056981486, 0.0 ], [ -73.937910166018625, 40.858510487431403, 0.0 ], [ -73.938124773540011, 40.858237767500569, 0.0 ], [ -73.93891430284323, 40.857205579658626, 0.0 ], [ -73.939601064877934, 40.856277262704054, 0.0 ], [ -73.940313428898236, 40.85525156707164, 0.0 ], [ -73.941000011269892, 40.854180331428367, 0.0 ], [ -73.94142060248592, 40.853518189609929, 0.0 ], [ -73.941609428358632, 40.8532325391106, 0.0 ], [ -73.941806878058088, 40.852966388381461, 0.0 ], [ -73.942090116867178, 40.852622232228278, 0.0 ], [ -73.942330416205678, 40.852362534141065, 0.0 ], [ -73.94255364755378, 40.852135382415476, 0.0 ], [ -73.942768165243635, 40.851947028674005, 0.0 ], [ -73.943330241116897, 40.851464386754742, 0.0 ], [ -73.943883962658035, 40.851051185944904, 0.0 ], [ -73.944107104174606, 40.850869352310276, 0.0 ], [ -73.944347403513106, 40.850642127515378, 0.0 ], [ -73.944544853212548, 40.850453837479229, 0.0 ], [ -73.944765120120223, 40.850182239541198, 0.0 ], [ -73.94494541199775, 40.849896574659326, 0.0 ], [ -73.945134237870477, 40.849435662240246, 0.0 ], [ -73.945254342623954, 40.848981134086323, 0.0 ], [ -73.94529737192606, 40.848637093136958, 0.0 ], [ -73.945305816089743, 40.848169580550291, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590475.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941679586782328, 40.848747447370997, 0.0 ], [ -73.941799781367351, 40.848637093136958, 0.0 ], [ -73.942031456879121, 40.848539649651897, 0.0 ], [ -73.942709505255564, 40.848416248212729, 0.0 ], [ -73.94294127059888, 40.848351353641235, 0.0 ], [ -73.943147254293521, 40.848253977688543, 0.0 ], [ -73.943275982873743, 40.848137167128051, 0.0 ], [ -73.943387553632036, 40.847994262479915, 0.0 ], [ -73.943464808746455, 40.847773551319399, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165422866.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Riverside Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943019154534014, 40.849110853980548, 0.0 ], [ -73.942896983655373, 40.850135761323664, 0.0 ], [ -73.942836886362869, 40.850518729991663, 0.0 ], [ -73.94278532306555, 40.850726589454474, 0.0 ], [ -73.942673752307257, 40.850979770776462, 0.0 ], [ -73.942502174088006, 40.851219972773507, 0.0 ], [ -73.942278942739904, 40.851447127637471, 0.0 ], [ -73.941997680224446, 40.851654644442441, 0.0 ], [ -73.941935247312202, 40.85170064595134, 0.0 ], [ -73.941835174989549, 40.851813645090942, 0.0 ], [ -73.941281004290772, 40.852373269979608, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46587572.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942907943101844, 40.847721635163751, 0.0 ], [ -73.942692347433649, 40.848565675366608, 0.0 ], [ -73.942632250141145, 40.848805886115095, 0.0 ], [ -73.942486363738993, 40.849026593837188, 0.0 ], [ -73.942331853510126, 40.849143470781463, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119569.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940449523663787, 40.849427372174752, 0.0 ], [ -73.940675360126221, 40.84952658108714, 0.0 ], [ -73.940889967647593, 40.849662891172464, 0.0 ], [ -73.940967132930496, 40.849766788352262, 0.0 ], [ -73.940975756757226, 40.849883663990951, 0.0 ], [ -73.940958509103766, 40.849974582223147, 0.0 ], [ -73.940900118610301, 40.850190257709933, 0.0 ], [ -73.940932368128998, 40.850376849735447, 0.0 ], [ -73.94102893702204, 40.850514856827786, 0.0 ], [ -73.941146975650369, 40.850604075440067, 0.0 ], [ -73.94128477721496, 40.850649737927817, 0.0 ], [ -73.941516452726745, 40.850675694863675, 0.0 ], [ -73.941731060248102, 40.850649737927817, 0.0 ], [ -73.941911262294099, 40.850597756075437, 0.0 ], [ -73.942125869815484, 40.850454992634447, 0.0 ], [ -73.942288914039551, 40.850305637691569, 0.0 ], [ -73.942460671921864, 40.850104368123198, 0.0 ], [ -73.942546461031512, 40.849935578452708, 0.0 ], [ -73.942783167108871, 40.849147344025511, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588501.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942246603389677, 40.848331783328668, 0.0 ], [ -73.942670428540723, 40.848311465532767, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588500.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942246603389677, 40.84837636014332, 0.0 ], [ -73.942670428540723, 40.848311465532767, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588494.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942665038649011, 40.849106776879303, 0.0 ], [ -73.942426266446503, 40.849922531890229, 0.0 ], [ -73.942331853510126, 40.850097844858887, 0.0 ], [ -73.942211658925117, 40.850253655569233, 0.0 ], [ -73.942005675230476, 40.850422444429455, 0.0 ], [ -73.941799781367351, 40.850532863640403, 0.0 ], [ -73.941610865663094, 40.850565343840962, 0.0 ], [ -73.941439287443828, 40.85054584213249, 0.0 ], [ -73.941232764760016, 40.850462059465997, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590812.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942331853510126, 40.849143470781463, 0.0 ], [ -73.942160185459343, 40.849201841224705, 0.0 ], [ -73.941902728298899, 40.849221343328743, 0.0 ], [ -73.941533161391021, 40.849216382863801, 0.0 ], [ -73.941051574567211, 40.849177650453534, 0.0 ], [ -73.940731145505353, 40.849143470781463, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590835.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942300322643646, 40.849459852917221, 0.0 ], [ -73.940731145505353, 40.849143470781463, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590811.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941377663015345, 40.848737594321861, 0.0 ], [ -73.941566758382649, 40.848628055497578, 0.0 ], [ -73.941731060248102, 40.848565675366608, 0.0 ], [ -73.94188557047697, 40.8485461730696, 0.0 ], [ -73.942053555435109, 40.848579265814081, 0.0 ], [ -73.942171504231908, 40.848648237292089, 0.0 ], [ -73.942252083112905, 40.848765930328192, 0.0 ], [ -73.942252083112905, 40.848891777384956, 0.0 ], [ -73.942214443702497, 40.848997238665312, 0.0 ], [ -73.942112574749288, 40.849078373067002, 0.0 ], [ -73.941973066385657, 40.84912308528277, 0.0 ], [ -73.941806788226572, 40.849135180679426, 0.0 ], [ -73.941581400921777, 40.849098690627763, 0.0 ], [ -73.941195215181139, 40.849017488299161, 0.0 ], [ -73.941055706817508, 40.849009334084926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119595.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942021305916413, 40.848319551880373, 0.0 ], [ -73.942118234135577, 40.84832648303469, 0.0 ], [ -73.942246603389677, 40.848331783328668, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119590.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941377663015345, 40.848737594321861, 0.0 ], [ -73.941475579381319, 40.848640286888923, 0.0 ], [ -73.941613650440473, 40.848546784639971, 0.0 ], [ -73.941799781367351, 40.848474755201238, 0.0 ], [ -73.942048165543412, 40.848408841400982, 0.0 ], [ -73.942246603389677, 40.84837636014332, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68325078.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940449523663787, 40.849427372174752, 0.0 ], [ -73.942241303329496, 40.849743888857041, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119587.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -1.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942033433172753, 40.849500555749835, 0.0 ], [ -73.941792055855899, 40.849455843788789, 0.0 ], [ -73.941588228117951, 40.849390950235403, 0.0 ], [ -73.941480969273016, 40.849338287880968, 0.0 ], [ -73.941379010488262, 40.849269249169687, 0.0 ], [ -73.941325381065809, 40.849171874565862, 0.0 ], [ -73.941297173965879, 40.849066141756524, 0.0 ], [ -73.941301755373829, 40.848923986582456, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613643.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 177th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941344874507465, 40.84821504085793, 0.0 ], [ -73.941891858683974, 40.848313028440366, 0.0 ], [ -73.942021305916413, 40.848319551880373, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119573.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942014209225675, 40.849409636867236, 0.0 ], [ -73.941851254833139, 40.84932524120088, 0.0 ], [ -73.941688120777528, 40.849188930420965, 0.0 ], [ -73.941628023485023, 40.849039572624321, 0.0 ], [ -73.94161948948981, 40.848877235674635, 0.0 ], [ -73.941679586782328, 40.848747447370997, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588490.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942014209225675, 40.849409636867236, 0.0 ], [ -73.941672669754638, 40.849334074890798, 0.0 ], [ -73.941530376613642, 40.849281344539655, 0.0 ], [ -73.941104485337434, 40.849123968654517, 0.0 ], [ -73.940812622701628, 40.849026593837188, 0.0 ], [ -73.940557860487061, 40.848978076254426, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617841.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -1.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941212732329177, 40.849711544155944, 0.0 ], [ -73.941373620596565, 40.849614170202088, 0.0 ], [ -73.941561458322468, 40.849569594220114, 0.0 ], [ -73.941786755795718, 40.849553285926547, 0.0 ], [ -73.942001273485573, 40.849589775727864, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588493.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940369124445851, 40.849536841726454, 0.0 ], [ -73.940649578477561, 40.849571972512599, 0.0 ], [ -73.941414224447399, 40.849618790881422, 0.0 ], [ -73.941667369694471, 40.849634283745111, 0.0 ], [ -73.94193551680678, 40.849678927634649, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588496.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941232764760016, 40.850462059465997, 0.0 ], [ -73.941098646288097, 40.850340360367561, 0.0 ], [ -73.941034326913737, 40.850186180675102, 0.0 ], [ -73.941077266384326, 40.850011683349315, 0.0 ], [ -73.941198808442266, 40.84986416208185, 0.0 ], [ -73.941344874507465, 40.849766788352262, 0.0 ], [ -73.941576550019235, 40.849701895103408, 0.0 ], [ -73.94193551680678, 40.849678927634649, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119596.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Lafayette Plaza", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941935247312202, 40.85170064595134, 0.0 ], [ -73.941658656036225, 40.851479675339121, 0.0 ], [ -73.941393383532812, 40.851307491700538, 0.0 ], [ -73.941321428478545, 40.851310685323796, 0.0 ], [ -73.941227824025958, 40.851320673889155, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588495.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941691983533261, 40.85079222914937, 0.0 ], [ -73.941790618551451, 40.850685275824347, 0.0 ], [ -73.941911262294099, 40.850597756075437, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590817.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941902728298899, 40.849221343328743, 0.0 ], [ -73.941602960488595, 40.849147344025511, 0.0 ], [ -73.941179135337549, 40.849054046347277, 0.0 ], [ -73.941055706817508, 40.849009334084926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592773.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Lafayette Plaza", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941246149657744, 40.851383391173329, 0.0 ], [ -73.941469201342784, 40.85151962948963, 0.0 ], [ -73.94178648630114, 40.851774574454133, 0.0 ], [ -73.941835174989549, 40.851813645090942, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119436.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941826371499758, 40.849461347846407, 0.0 ], [ -73.939449608921038, 40.848999888785528, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 160061986.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94178531849127, 40.852316465143311, 0.0 ], [ -73.941781365904021, 40.85238556862793, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 160061997.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "dismount", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941595504471735, 40.852528735598291, 0.0 ], [ -73.941502439008303, 40.852641937169786, 0.0 ], [ -73.94155534977854, 40.852660690832828, 0.0 ], [ -73.941781365904021, 40.85238556862793, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 121772574.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939726649354654, 40.849171195049621, 0.0 ], [ -73.94176923864768, 40.849545063827009, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593270.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941763848755983, 40.849078373067002, 0.0 ], [ -73.941189915120958, 40.848980658423592, 0.0 ], [ -73.941055706817508, 40.849009334084926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165422864.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941246149657744, 40.851383391173329, 0.0 ], [ -73.941321428478545, 40.851310685323796, 0.0 ], [ -73.941639162594541, 40.850861673973171, 0.0 ], [ -73.941691983533261, 40.85079222914937, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590825.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941672669754638, 40.849334074890798, 0.0 ], [ -73.941518788346471, 40.849315184383236, 0.0 ], [ -73.940857268971257, 40.849175747808246, 0.0 ], [ -73.940497853026073, 40.849139257778916, 0.0 ], [ -73.939382055611674, 40.84892419043809, 0.0 ], [ -73.939188917825575, 40.848794334274423, 0.0 ], [ -73.937700678894373, 40.848481754291655, 0.0 ], [ -73.937488406992742, 40.848437245500257, 0.0 ], [ -73.937348988460656, 40.8484169277367, 0.0 ], [ -73.937230949832326, 40.8484169277367, 0.0 ], [ -73.937112911203982, 40.848441254690336, 0.0 ], [ -73.937037812046228, 40.848502139987652, 0.0 ], [ -73.937005652359062, 40.848554938911121, 0.0 ], [ -73.93700026246735, 40.848636073854387, 0.0 ], [ -73.937027032262833, 40.84871727665039, 0.0 ], [ -73.93715046078286, 40.848822738208462, 0.0 ], [ -73.937359678412534, 40.848895786547523, 0.0 ], [ -73.937536736355028, 40.848928063694949, 0.0 ], [ -73.939049409461958, 40.849204151578796, 0.0 ], [ -73.939306956453919, 40.849163584467362, 0.0 ], [ -73.94041206391644, 40.849374573946442, 0.0 ], [ -73.940642751281402, 40.849451630806101, 0.0 ], [ -73.941425633051509, 40.849585562753688, 0.0 ], [ -73.941667369694471, 40.849634283745111, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119593.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941639162594541, 40.850861673973171, 0.0 ], [ -73.941632245566851, 40.850826340021037, 0.0 ], [ -73.941603140151656, 40.850800654943995, 0.0 ], [ -73.941565321078187, 40.85079868439535, 0.0 ], [ -73.941532981727974, 40.850814176983143, 0.0 ], [ -73.941513847612413, 40.85085848032827, 0.0 ], [ -73.941495342317566, 40.850940427848684, 0.0 ], [ -73.941440545085229, 40.851024141960579, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593262.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 30.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941624340392352, 40.849735734732207, 0.0 ], [ -73.941463452124978, 40.849776369444356, 0.0 ], [ -73.941415122762677, 40.849691090880924, 0.0 ], [ -73.941281004290772, 40.84964243788243, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592776.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "dismount", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941352420355855, 40.852409894124548, 0.0 ], [ -73.941595504471735, 40.852528735598291, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669714.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 180th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940602955914301, 40.850374539422248, 0.0 ], [ -73.939639872098212, 40.850178366357646, 0.0 ], [ -73.938659360965602, 40.849978047713819, 0.0 ], [ -73.936396953922539, 40.84954098675248, 0.0 ], [ -73.935470970527675, 40.849144965717791, 0.0 ], [ -73.934238931115502, 40.848625948979951, 0.0 ], [ -73.932848967876367, 40.848037956135428, 0.0 ], [ -73.931382647838106, 40.847423660106848, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593524.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cabrini Boulevard", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940234916142401, 40.851325973943645, 0.0 ], [ -73.940131969210853, 40.851421578699714, 0.0 ], [ -73.939530906454252, 40.853498960559321, 0.0 ], [ -73.938651904948742, 40.854676950435859, 0.0 ], [ -73.938021377450809, 40.855471845652346, 0.0 ], [ -73.937922203443435, 40.855604270640299, 0.0 ], [ -73.936939985511785, 40.85690893818164, 0.0 ], [ -73.936654950072139, 40.857254974480085, 0.0 ], [ -73.936575988158665, 40.857350978339952, 0.0 ], [ -73.935531966135457, 40.858917934623349, 0.0 ], [ -73.934531512403538, 40.859376674902286, 0.0 ], [ -73.934289057108359, 40.859327689310163, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 27518032.0, "ACCESS": "private", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Hudson View Gardens", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93875826547837, 40.852344867567552, 0.0 ], [ -73.939204638343057, 40.852409894124548, 0.0 ], [ -73.939307225948497, 40.852488850004512, 0.0 ], [ -73.939325731243358, 40.852610749001038, 0.0 ], [ -73.938880526188541, 40.853847053074482, 0.0 ], [ -73.938763655370067, 40.853891762072323, 0.0 ], [ -73.938568541290365, 40.853866553811294, 0.0 ], [ -73.938431548209536, 40.853840937859658, 0.0 ], [ -73.938285122818229, 40.853810973298891, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196946879.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 186th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939310909041168, 40.854979988800338, 0.0 ], [ -73.938722332867016, 40.854709360658966, 0.0 ], [ -73.938651904948742, 40.854676950435859, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196946881.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chittenden Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938615972337374, 40.855904994642657, 0.0 ], [ -73.939310909041168, 40.854979988800338, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948643.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939098726971068, 40.851531044956786, 0.0 ], [ -73.939235989546475, 40.851178931249265, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44763890.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 178th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939181821134838, 40.848695464026257, 0.0 ], [ -73.937688461806516, 40.848390358344183, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46334658.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939181821134838, 40.848695464026257, 0.0 ], [ -73.939156039486178, 40.848764027671066, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591083.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 26.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939156039486178, 40.848764027671066, 0.0 ], [ -73.938972783168225, 40.849251989480635, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 181699235.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pinehurst Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93875826547837, 40.852344867567552, 0.0 ], [ -73.938778477572271, 40.852284461440178, 0.0 ], [ -73.939098726971068, 40.851531044956786, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591084.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938972783168225, 40.849251989480635, 0.0 ], [ -73.938950145623053, 40.849312262469702, 0.0 ], [ -73.938659360965602, 40.849978047713819, 0.0 ], [ -73.938283955008359, 40.850908967079619, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44763888.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 179th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937027571251988, 40.848968155287743, 0.0 ], [ -73.938950145623053, 40.849312262469702, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 181699238.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "W 183rd St", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93875826547837, 40.852344867567552, 0.0 ], [ -73.937818987017309, 40.852127976019453, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46616999.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pinehurst Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937802637679127, 40.855402881277243, 0.0 ], [ -73.938285122818229, 40.853810973298891, 0.0 ], [ -73.938377918787083, 40.853536943024935, 0.0 ], [ -73.93864067600768, 40.85272884268678, 0.0 ], [ -73.938741466982563, 40.852399633930133, 0.0 ], [ -73.93875826547837, 40.852344867567552, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61221355.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93864067600768, 40.85272884268678, 0.0 ], [ -73.938507455851052, 40.852702342971241, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617000.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 187th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937735264032824, 40.855392077984391, 0.0 ], [ -73.937850428052244, 40.855576752899061, 0.0 ], [ -73.937922203443435, 40.855604270640299, 0.0 ], [ -73.938615972337374, 40.855904994642657, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671196.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 181st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930876806501615, 40.84811596588731, 0.0 ], [ -73.932336928164418, 40.84873494419115, 0.0 ], [ -73.933730933822332, 40.84932096025841, 0.0 ], [ -73.934965937674932, 40.849839971552477, 0.0 ], [ -73.935723037796393, 40.850176327839897, 0.0 ], [ -73.936660968784551, 40.850447993752475, 0.0 ], [ -73.937364978472701, 40.85064498142016, 0.0 ], [ -73.938283955008359, 40.850908967079619, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46334661.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938283955008359, 40.850908967079619, 0.0 ], [ -73.937818987017309, 40.852127976019453, 0.0 ], [ -73.937590635272073, 40.852900275205862, 0.0 ], [ -73.937434957233336, 40.853379984931259, 0.0 ], [ -73.936890937497267, 40.855105959945767, 0.0 ], [ -73.936691421672677, 40.855634370279965, 0.0 ], [ -73.935601944896078, 40.857108964096682, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617001.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 187th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938021377450809, 40.855471845652346, 0.0 ], [ -73.937871448629892, 40.855422789227369, 0.0 ], [ -73.937802637679127, 40.855402881277243, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 181334353.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 187th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937802637679127, 40.855402881277243, 0.0 ], [ -73.937735264032824, 40.855392077984391, 0.0 ], [ -73.937658278412968, 40.855366394677333, 0.0 ], [ -73.936890937497267, 40.855105959945767, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196946880.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936890937497267, 40.855105959945767, 0.0 ], [ -73.936037987134995, 40.854914964765847, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 104984009.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Bennett Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933431166012014, 40.857259051079936, 0.0 ], [ -73.933680987492522, 40.8567829704646, 0.0 ], [ -73.934265970405548, 40.855580965492287, 0.0 ], [ -73.934600413185834, 40.85458012734783, 0.0 ], [ -73.93462691348671, 40.854500970121606, 0.0 ], [ -73.935106883343011, 40.853531779041624, 0.0 ], [ -73.935132934486248, 40.853478984083864, 0.0 ], [ -73.935715941105641, 40.852338956059199, 0.0 ], [ -73.936660968784551, 40.850447993752475, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 164756916.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 190th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935601944896078, 40.857108964096682, 0.0 ], [ -73.936492624500303, 40.857330255650204, 0.0 ], [ -73.936575988158665, 40.857350978339952, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671030.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Overlook Terrace", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936522538399259, 40.852631473167101, 0.0 ], [ -73.936539336895081, 40.852735365692062, 0.0 ], [ -73.936402433645767, 40.853333033325356, 0.0 ], [ -73.936354912767243, 40.853820961487315, 0.0 ], [ -73.936291401876659, 40.854241551184295, 0.0 ], [ -73.936057570408195, 40.854862782422401, 0.0 ], [ -73.936037987134995, 40.854914964765847, 0.0 ], [ -73.936010049529671, 40.85498556034473, 0.0 ], [ -73.935611377206584, 40.855750827899186, 0.0 ], [ -73.93483900572528, 40.856733235571845, 0.0 ], [ -73.934817086832354, 40.856839363808746, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673064.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 190th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934817086832354, 40.856839363808746, 0.0 ], [ -73.934939976363225, 40.856943861227982, 0.0 ], [ -73.935601944896078, 40.857108964096682, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 164756872.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935601944896078, 40.857108964096682, 0.0 ], [ -73.934588914750194, 40.858468974828774, 0.0 ], [ -73.934491806867982, 40.85865466029442, 0.0 ], [ -73.934396944773965, 40.858835929028452, 0.0 ], [ -73.934188266133475, 40.859201250603249, 0.0 ], [ -73.934176228708665, 40.859246567459316, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672447.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 182nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930455586464888, 40.848692677989639, 0.0 ], [ -73.931916965769105, 40.849308932847165, 0.0 ], [ -73.933309983280182, 40.849894943838194, 0.0 ], [ -73.934543909154456, 40.850416940451666, 0.0 ], [ -73.935425964931923, 40.850773950607319, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670675.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 183rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.930004272866157, 40.84931035982828, 0.0 ], [ -73.931471940377349, 40.849920969020594, 0.0 ], [ -73.932860915469661, 40.850505955345028, 0.0 ], [ -73.934097985447409, 40.851020948323509, 0.0 ], [ -73.935082988156452, 40.851433945474014, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 164758478.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 184th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933666973774109, 40.851614962169819, 0.0 ], [ -73.934775943992349, 40.852057988933545, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591073.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint Nicholas Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934743514810592, 40.847931270176247, 0.0 ], [ -73.934692939660096, 40.847998951225044, 0.0 ], [ -73.934238931115502, 40.848625948979951, 0.0 ], [ -73.933730933822332, 40.84932096025841, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 164758479.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 185th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "-1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933225900969589, 40.852212979652514, 0.0 ], [ -73.934429912944907, 40.852728978582732, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671789.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 189th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "1", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933311959573814, 40.855334936009882, 0.0 ], [ -73.934200662884393, 40.855568191821696, 0.0 ], [ -73.934265970405548, 40.855580965492287, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60860648.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934185211861504, 40.848725974517201, 0.0 ], [ -73.934094302354765, 40.848675554054658, 0.0 ], [ -73.934228420826685, 40.848521370488456, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673069.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 190th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932760932978539, 40.856502973402804, 0.0 ], [ -73.932893434482935, 40.856543264244358, 0.0 ], [ -73.93361882407487, 40.856764082080765, 0.0 ], [ -73.933680987492522, 40.8567829704646, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251994.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932912029609327, 40.855823732710647, 0.0 ], [ -73.933063844892331, 40.855860830561546, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669666.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 192nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932042909571933, 40.857840983134665, 0.0 ], [ -73.932902776961896, 40.858089788951595, 0.0 ], [ -73.93298290668524, 40.858112957332096, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251544.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932528538814523, 40.855961660512847, 0.0 ], [ -73.932619717815868, 40.855902888356376, 0.0 ], [ -73.932705506925515, 40.855850027343365, 0.0 ], [ -73.932753836287787, 40.855803485156883, 0.0 ], [ -73.932855705240996, 40.855797370122659, 0.0 ], [ -73.932912029609327, 40.855823732710647, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251553.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932362260655452, 40.855874487457456, 0.0 ], [ -73.932354175817878, 40.855933259639123, 0.0 ], [ -73.932458739716964, 40.855961660512847, 0.0 ], [ -73.932528538814523, 40.855961660512847, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251551.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932265601930865, 40.855462673054859, 0.0 ], [ -73.932338006142771, 40.855399755796469, 0.0 ], [ -73.932426669861314, 40.85537339303977, 0.0 ], [ -73.932493684181509, 40.855409879635822, 0.0 ], [ -73.932485689175493, 40.855493044539429, 0.0 ], [ -73.932469519500373, 40.855562076765736, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60251552.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932469519500373, 40.855562076765736, 0.0 ], [ -73.932399720402785, 40.855738529875552, 0.0 ], [ -73.932362260655452, 40.855874487457456, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119592.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943142583054055, 40.846465034341051, 0.0 ], [ -73.942992384738531, 40.846883088481917, 0.0 ], [ -73.942829610009056, 40.847169785660327, 0.0 ], [ -73.94267518961172, 40.847481352531467, 0.0 ], [ -73.942572152848641, 40.847741069750342, 0.0 ], [ -73.942520679382852, 40.84798128348806, 0.0 ], [ -73.942486363738993, 40.848228087756596, 0.0 ], [ -73.942486363738993, 40.84876049416485, 0.0 ], [ -73.942503521560923, 40.849149994139722, 0.0 ], [ -73.942469116085533, 40.849422683530697, 0.0 ], [ -73.942314605856666, 40.849877140704926, 0.0 ], [ -73.942194501103188, 40.850097844858887, 0.0 ], [ -73.942048614701051, 40.850253655569233, 0.0 ], [ -73.941928420116042, 40.85035102858334, 0.0 ], [ -73.941739684074832, 40.850422444429455, 0.0 ], [ -73.94153361054866, 40.85043549089351, 0.0 ], [ -73.941353318671133, 40.850370530349153, 0.0 ], [ -73.941190364278597, 40.850253655569233, 0.0 ], [ -73.941113019332633, 40.850110891386848, 0.0 ], [ -73.941104485337434, 40.849942033782156, 0.0 ], [ -73.941132243279711, 40.849821081189134, 0.0 ], [ -73.941212732329177, 40.849711544155944, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617871.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942118234135577, 40.84832648303469, 0.0 ], [ -73.942132068190944, 40.848293186306378, 0.0 ], [ -73.942312449900001, 40.847593339568043, 0.0 ], [ -73.942677255736868, 40.847702880102766, 0.0 ], [ -73.942628926374596, 40.847877383508653, 0.0 ], [ -73.942602156579127, 40.84804787724137, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590476.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "service", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941530376613642, 40.849281344539655, 0.0 ], [ -73.941518788346471, 40.849315184383236, 0.0 ], [ -73.941425633051509, 40.849585562753688, 0.0 ], [ -73.941414224447399, 40.849618790881422, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119594.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94102893702204, 40.850514856827786, 0.0 ], [ -73.941185064218431, 40.85070117613899, 0.0 ], [ -73.941367961210275, 40.850802489592688, 0.0 ], [ -73.941430214459459, 40.850889261622697, 0.0 ], [ -73.941440545085229, 40.851024141960579, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 171960785.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941440545085229, 40.851024141960579, 0.0 ], [ -73.941227824025958, 40.851320673889155, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617678.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941301755373829, 40.848923986582456, 0.0 ], [ -73.941325381065809, 40.848835037515848, 0.0 ], [ -73.941377663015345, 40.848737594321861, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592775.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941281004290772, 40.852373269979608, 0.0 ], [ -73.941352420355855, 40.852409894124548, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46613645.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 177th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939523989426561, 40.847837970785811, 0.0 ], [ -73.940435959102984, 40.84801892935274, 0.0 ], [ -73.941344874507465, 40.84821504085793, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669719.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cabrini Boulevard", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941344874507465, 40.84821504085793, 0.0 ], [ -73.941055706817508, 40.849009334084926, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593263.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941281004290772, 40.84964243788243, 0.0 ], [ -73.940749920294792, 40.849622188439561, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119600.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941281004290772, 40.852373269979608, 0.0 ], [ -73.940535402604951, 40.853639271348108, 0.0 ], [ -73.94036373455414, 40.854061153184098, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 171960778.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941227824025958, 40.851320673889155, 0.0 ], [ -73.941246149657744, 40.851383391173329, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 171960762.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 181st St", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941117870235175, 40.851343776687635, 0.0 ], [ -73.941246149657744, 40.851383391173329, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 171960755.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Lafayette Plaza", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941227824025958, 40.851320673889155, 0.0 ], [ -73.941117870235175, 40.851343776687635, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670670.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 181st St", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940234916142401, 40.851325973943645, 0.0 ], [ -73.940602327093615, 40.851298930071472, 0.0 ], [ -73.940919971378079, 40.851305453217535, 0.0 ], [ -73.941117870235175, 40.851343776687635, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119562.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941055706817508, 40.849009334084926, 0.0 ], [ -73.940143826972601, 40.848834833659943, 0.0 ], [ -73.939612742976635, 40.848733449245579, 0.0 ], [ -73.939181821134838, 40.848695464026257, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44763887.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 179th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938950145623053, 40.849312262469702, 0.0 ], [ -73.939926434673851, 40.849510340734255, 0.0 ], [ -73.940737882869996, 40.849674986470582, 0.0 ], [ -73.940838404350288, 40.849695371799484, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588498.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cabrini Boulevard", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940838404350288, 40.849695371799484, 0.0 ], [ -73.940602955914301, 40.850374539422248, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669886.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "South Pinehurst Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940786930884499, 40.847149943184014, 0.0 ], [ -73.940690900980627, 40.847386965252326, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593264.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940749920294792, 40.849622188439561, 0.0 ], [ -73.940737882869996, 40.849674986470582, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68325086.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940731145505353, 40.849143470781463, 0.0 ], [ -73.939468832868101, 40.848893068471241, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673348.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pinehurst Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940143826972601, 40.848834833659943, 0.0 ], [ -73.940435959102984, 40.84801892935274, 0.0 ], [ -73.940690900980627, 40.847386965252326, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593523.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Cabrini Boulevard", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940234916142401, 40.851325973943645, 0.0 ], [ -73.94030255928331, 40.851238047343998, 0.0 ], [ -73.94057717426567, 40.850435354992854, 0.0 ], [ -73.940602955914301, 40.850374539422248, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588492.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940557860487061, 40.848978076254426, 0.0 ], [ -73.939619660004325, 40.848799362722957, 0.0 ], [ -73.939181821134838, 40.848695464026257, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590474.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939381875948612, 40.849229293662184, 0.0 ], [ -73.940449523663787, 40.849427372174752, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119561.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938950145623053, 40.849312262469702, 0.0 ], [ -73.939306956453919, 40.849321843627521, 0.0 ], [ -73.940369124445851, 40.849536841726454, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46334563.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "designated", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 181st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938283955008359, 40.850908967079619, 0.0 ], [ -73.939235989546475, 40.851178931249265, 0.0 ], [ -73.93965397564817, 40.851283437597033, 0.0 ], [ -73.939943412832719, 40.851319586698445, 0.0 ], [ -73.940234916142401, 40.851325973943645, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673346.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Pinehurst Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939926434673851, 40.849510340734255, 0.0 ], [ -73.939660713012799, 40.850129781667576, 0.0 ], [ -73.939639872098212, 40.850178366357646, 0.0 ], [ -73.939271023842551, 40.851091887799996, 0.0 ], [ -73.939235989546475, 40.851178931249265, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590814.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939420862831952, 40.849115134936582, 0.0 ], [ -73.939726649354654, 40.849171195049621, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673446.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 177th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938035930158421, 40.847557935919781, 0.0 ], [ -73.939523989426561, 40.847837970785811, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46334660.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Fort Washington Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939181821134838, 40.848695464026257, 0.0 ], [ -73.939523989426561, 40.847837970785811, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590831.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "-1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -11.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939468832868101, 40.848893068471241, 0.0 ], [ -73.937752781180862, 40.848552628534392, 0.0 ], [ -73.937585425043437, 40.848513691879262, 0.0 ], [ -73.937375129435409, 40.848455252877478, 0.0 ], [ -73.937143364092123, 40.848364332560614, 0.0 ], [ -73.935896682140807, 40.847842863400956, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590832.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "-1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -11.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939449608921038, 40.848999888785528, 0.0 ], [ -73.937581113130065, 40.848637093136958, 0.0 ], [ -73.937332279796365, 40.848572130829503, 0.0 ], [ -73.937074732804405, 40.848481278625336, 0.0 ], [ -73.935829218662988, 40.847960557867495, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591090.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "-1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -11.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935743160058763, 40.848063030708545, 0.0 ], [ -73.937160521914038, 40.848650072000375, 0.0 ], [ -73.937418068905998, 40.8487279451275, 0.0 ], [ -73.939420862831952, 40.849115134936582, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591081.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "-1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -11.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935668420227117, 40.848192480589574, 0.0 ], [ -73.936954538219396, 40.848721489679775, 0.0 ], [ -73.937134830096923, 40.848786383888786, 0.0 ], [ -73.937383753262139, 40.848857733469316, 0.0 ], [ -73.937624052600654, 40.848903261256751, 0.0 ], [ -73.939381875948612, 40.849229293662184, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61221359.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Bennett Park", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938507455851052, 40.852702342971241, 0.0 ], [ -73.938427685453817, 40.852677541945816, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948491.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938493711627203, 40.850860450875146, 0.0 ], [ -73.938434782144569, 40.850844278799087, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948490.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938434782144569, 40.850844278799087, 0.0 ], [ -73.938453287439415, 40.850795150997627, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948495.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938202657475145, 40.850771572357992, 0.0 ], [ -73.938305784069769, 40.850804528091174, 0.0 ], [ -73.938434782144569, 40.850844278799087, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61221341.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938427685453817, 40.852677541945816, 0.0 ], [ -73.938198076067195, 40.853141285611123, 0.0 ], [ -73.938039703082609, 40.853114854008126, 0.0 ], [ -73.937905674442206, 40.85306205871813, 0.0 ], [ -73.937806410603315, 40.852938393910222, 0.0 ], [ -73.937736701337286, 40.852928133797654, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672392.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 185th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937434957233336, 40.853379984931259, 0.0 ], [ -73.938302909460859, 40.853524440748856, 0.0 ], [ -73.938377918787083, 40.853536943024935, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948565.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938293117824259, 40.850835988909836, 0.0 ], [ -73.938305784069769, 40.850804528091174, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948496.0, "ACCESS": "customer", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938210203323536, 40.851041265288615, 0.0 ], [ -73.938293117824259, 40.850835988909836, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948493.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938202657475145, 40.850771572357992, 0.0 ], [ -73.938218737318735, 40.850730190805876, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948494.0, "ACCESS": "customer", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937463613490891, 40.852912981443083, 0.0 ], [ -73.937552726367088, 40.852930647865129, 0.0 ], [ -73.937865250254418, 40.8519658504825, 0.0 ], [ -73.938210203323536, 40.851041265288615, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948492.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93814480597085, 40.85075499256024, 0.0 ], [ -73.938202657475145, 40.850771572357992, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948564.0, "ACCESS": "customer", "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937865250254418, 40.8519658504825, 0.0 ], [ -73.937885103022211, 40.851968364586476, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670676.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 183rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936892913790899, 40.851901978619686, 0.0 ], [ -73.937818987017309, 40.852127976019453, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61221344.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937736701337286, 40.852928133797654, 0.0 ], [ -73.937694480518928, 40.852906050768532, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 61221343.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937694480518928, 40.852906050768532, 0.0 ], [ -73.937590635272073, 40.852900275205862, 0.0 ], [ -73.937449779435525, 40.852895790650962, 0.0 ], [ -73.937337040867362, 40.852874047350198, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671998.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 178th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937688461806516, 40.848390358344183, 0.0 ], [ -73.936402972634951, 40.847871947272409, 0.0 ], [ -73.935171921369587, 40.847357949121502, 0.0 ], [ -73.933775939418069, 40.846762945754399, 0.0 ], [ -73.932313751630105, 40.8461492494989, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44763889.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937688461806516, 40.848390358344183, 0.0 ], [ -73.93763384423724, 40.848438128881149, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591086.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 27.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93763384423724, 40.848438128881149, 0.0 ], [ -73.937083626125727, 40.84891909404714, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196948586.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936641116016773, 40.852752080890149, 0.0 ], [ -73.937337040867362, 40.852874047350198, 0.0 ], [ -73.937331920470243, 40.85288709333151, 0.0 ], [ -73.937463613490891, 40.852912981443083, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669964.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Colonel Robert Magaw Place", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937364978472701, 40.85064498142016, 0.0 ], [ -73.936892913790899, 40.851901978619686, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591067.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "primary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Broadway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 7.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937083626125727, 40.84891909404714, 0.0 ], [ -73.937027571251988, 40.848968155287743, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672615.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 179th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.931839620823141, 40.846798281873333, 0.0 ], [ -73.933306929008225, 40.847411972118351, 0.0 ], [ -73.934692939660096, 40.847998951225044, 0.0 ], [ -73.935928931659518, 40.848519943490352, 0.0 ], [ -73.937027571251988, 40.848968155287743, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 105561203.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936539336895081, 40.852735365692062, 0.0 ], [ -73.936641116016773, 40.852752080890149, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 164756917.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 184th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 4.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934775943992349, 40.852057988933545, 0.0 ], [ -73.935632667278824, 40.852314086949349, 0.0 ], [ -73.935715941105641, 40.852338956059199, 0.0 ], [ -73.935798316617209, 40.852363961056419, 0.0 ], [ -73.936471603922655, 40.852568689116204, 0.0 ], [ -73.936522538399259, 40.852631473167101, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591079.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935896682140807, 40.847842863400956, 0.0 ], [ -73.933821753497554, 40.846974962185392, 0.0 ], [ -73.933508421126461, 40.846838578616747, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591091.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935829218662988, 40.847960557867495, 0.0 ], [ -73.933735964387921, 40.8470852512337, 0.0 ], [ -73.933405474194885, 40.846942480224904, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 121772575.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933388226541439, 40.847091774794578, 0.0 ], [ -73.933680179008775, 40.847208655151491, 0.0 ], [ -73.935743160058763, 40.848063030708545, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 121772576.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Trans-Manhattan Expressway", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933302437431806, 40.847221634294691, 0.0 ], [ -73.934139307950488, 40.847552771470468, 0.0 ], [ -73.935668420227117, 40.848192480589574, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591076.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Saint Nicholas Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 26.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93512637678468, 40.847418971321019, 0.0 ], [ -73.934743514810592, 40.847931270176247, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46591058.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "tertiary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Audubon Ave", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 24.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933726262582852, 40.846831783214853, 0.0 ], [ -73.933352024435479, 40.847349590842583, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119559.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933508421126461, 40.846838578616747, 0.0 ], [ -73.932512818297056, 40.846481479303449, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119558.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.933405474194885, 40.846942480224904, 0.0 ], [ -73.932512818297056, 40.846481479303449, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119556.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932341150246273, 40.846747656081703, 0.0 ], [ -73.933388226541439, 40.847091774794578, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119555.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.932341150246273, 40.846747656081703, 0.0 ], [ -73.933302437431806, 40.847221634294691, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670686.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 142nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934462970947365, 40.8171889804618, 0.0 ], [ -73.935955970949564, 40.817798933785966, 0.0 ], [ -73.937640940927977, 40.818516974638072, 0.0 ], [ -73.940403889247364, 40.819690487653361, 0.0 ], [ -73.940552021437696, 40.819753438813386, 0.0 ], [ -73.943321976616289, 40.820916936808125, 0.0 ], [ -73.944602974211435, 40.821461934955565, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671135.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 143rd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934249261741272, 40.817884389348798, 0.0 ], [ -73.937180913670986, 40.819143979337753, 0.0 ], [ -73.939947904409138, 40.820311566895597, 0.0 ], [ -73.940097024746308, 40.820374449485044, 0.0 ], [ -73.942864913799724, 40.821541947403773, 0.0 ], [ -73.944048983175733, 40.82205193102039, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240148.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "5th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93763492221558, 40.812747954175215, 0.0 ], [ -73.939017968427024, 40.810855930384506, 0.0 ], [ -73.939493985696075, 40.810208993816644, 0.0 ], [ -73.939948982387477, 40.809581972660418, 0.0 ], [ -73.94040397907888, 40.808957937264367, 0.0 ], [ -73.940860952063915, 40.808333963993185, 0.0 ], [ -73.941317925048949, 40.807712976596022, 0.0 ], [ -73.941770945446734, 40.807088991618301, 0.0 ], [ -73.942261964581036, 40.806415976072351, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46130044.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 127th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937957147907994, 40.806299975734198, 0.0 ], [ -73.938242901999871, 40.806417947940353, 0.0 ], [ -73.939701945684348, 40.807034935762189, 0.0 ], [ -73.941317925048949, 40.807712976596022, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46693907.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 128th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940860952063915, 40.808333963993185, 0.0 ], [ -73.93924793713974, 40.807654977585862, 0.0 ], [ -73.937790151096692, 40.80703996737833, 0.0 ], [ -73.937635910362403, 40.806974964308033, 0.0 ], [ -73.937504666499393, 40.806919956429979, 0.0 ], [ -73.936015978410552, 40.806295963995545, 0.0 ], [ -73.935327419745278, 40.80601296581974, 0.0 ], [ -73.934651437493955, 40.805735134144513, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68668534.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Madison Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94064598521642, 40.805736970040456, 0.0 ], [ -73.940157211870343, 40.806408632563397, 0.0 ], [ -73.939701945684348, 40.807034935762189, 0.0 ], [ -73.93924793713974, 40.807654977585862, 0.0 ], [ -73.938791952301528, 40.808279977144728, 0.0 ], [ -73.938337943756935, 40.808902931030062, 0.0 ], [ -73.9378809707719, 40.809524995167777, 0.0 ], [ -73.937415823117789, 40.81016547920207, 0.0 ], [ -73.936071673958153, 40.811984773695606, 0.0 ], [ -73.93602091914461, 40.812069964789309, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670751.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 129th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.937049130818821, 40.807543942997114, 0.0 ], [ -73.937335334068337, 40.807664564764558, 0.0 ], [ -73.94040397907888, 40.808957937264367, 0.0 ], [ -73.938791952301528, 40.808279977144728, 0.0 ], [ -73.935561969865958, 40.806916964652849, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 204133356.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 136th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.940363644722623, 40.814784940173659, 0.0 ], [ -73.93953701499818, 40.814428144100177, 0.0 ], [ -73.93864067600768, 40.814059856201581, 0.0 ], [ -73.937950141048773, 40.813772267958754, 0.0 ], [ -73.93714066914626, 40.813427976280991, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670411.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 134th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939439907115968, 40.812615987470132, 0.0 ], [ -73.9398099231815, 40.812786979827514, 0.0 ], [ -73.940067919331085, 40.812900929161735, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46594123.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 130th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939948982387477, 40.809581972660418, 0.0 ], [ -73.938337943756935, 40.808902931030062, 0.0 ], [ -73.93688042720845, 40.808289360252523, 0.0 ], [ -73.936593235812126, 40.808168467646169, 0.0 ], [ -73.935105985027718, 40.807539931333665, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670615.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Lenox Terrace Place", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.9398099231815, 40.812786979827514, 0.0 ], [ -73.939324922759596, 40.813457959098834, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670881.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Malcolm X Boulevard", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939679936959877, 40.815718937272216, 0.0 ], [ -73.939456975106367, 40.81602698074569, 0.0 ], [ -73.938990929136963, 40.816662982994707, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46594126.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 131st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936424352538708, 40.80891598566582, 0.0 ], [ -73.9378809707719, 40.809524995167777, 0.0 ], [ -73.939493985696075, 40.810208993816644, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670409.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 138th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936223938398811, 40.814669974270338, 0.0 ], [ -73.936605632563044, 40.814830151429369, 0.0 ], [ -73.939456975106367, 40.81602698074569, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670244.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 145th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934592058853681, 40.819726450040434, 0.0 ], [ -73.936245318302582, 40.820434748733732, 0.0 ], [ -73.939014464997413, 40.821609043579478, 0.0 ], [ -73.939153254708799, 40.821667982109432, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240188.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 132nd Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.939017968427024, 40.810855930384506, 0.0 ], [ -73.937415823117789, 40.81016547920207, 0.0 ], [ -73.935968727026605, 40.809541789254823, 0.0 ], [ -73.935681355967205, 40.809417839273436, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5673301.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 139th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93575591613579, 40.815325977509758, 0.0 ], [ -73.938990929136963, 40.816662982994707, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 196117043.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Malcolm X Blvd", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.938990929136963, 40.816662982994707, 0.0 ], [ -73.938538986717532, 40.817281983069755, 0.0 ], [ -73.938086954466556, 40.817899957613704, 0.0 ], [ -73.937640940927977, 40.818516974638072, 0.0 ], [ -73.937180913670986, 40.819143979337753, 0.0 ], [ -73.936720976245525, 40.819769958384349, 0.0 ], [ -73.936245318302582, 40.820434748733732, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5670645.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 135th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93763492221558, 40.812747954175215, 0.0 ], [ -73.936132220408311, 40.812116741656169, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240134.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "5th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936155756268747, 40.814778889341611, 0.0 ], [ -73.936223938398811, 40.814669974270338, 0.0 ], [ -73.936687918243067, 40.814043947097325, 0.0 ], [ -73.93714066914626, 40.813427976280991, 0.0 ], [ -73.93763492221558, 40.812747954175215, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240152.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "unclassified", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936155756268747, 40.814778889341611, 0.0 ], [ -73.936332814211255, 40.814815466273004, 0.0 ], [ -73.936605632563044, 40.814830151429369, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46594125.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 131st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936136262827091, 40.80879468624299, 0.0 ], [ -73.936424352538708, 40.80891598566582, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671488.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "West 141st Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93487296204303, 40.816527964748076, 0.0 ], [ -73.936364973898421, 40.817197954403333, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5671622.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Chisum Place", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936364973898421, 40.817197954403333, 0.0 ], [ -73.935955970949564, 40.817798933785966, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5672976.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 138th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936223938398811, 40.814669974270338, 0.0 ], [ -73.934724829852684, 40.814082428086564, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 5669316.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935372515172517, 40.814462137711217, 0.0 ], [ -73.936155756268747, 40.814778889341611, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240138.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "5th Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93575591613579, 40.815325977509758, 0.0 ], [ -73.935789513127418, 40.815276959355351, 0.0 ], [ -73.936155756268747, 40.814778889341611, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 68668530.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 135th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.936132220408311, 40.812116741656169, 0.0 ], [ -73.93602091914461, 40.812069964789309, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240121.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Madison Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934765703198096, 40.814023686779535, 0.0 ], [ -73.935356435328941, 40.813175127443763, 0.0 ], [ -73.936132220408311, 40.812116741656169, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32973204.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "residential", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 3.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93602091914461, 40.812069964789309, 0.0 ], [ -73.935753400853002, 40.811851581654743, 0.0 ], [ -73.934948151032302, 40.811460094771846, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32973203.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "East 135th Street", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934884460478671, 40.811693233035697, 0.0 ], [ -73.935630062164492, 40.811997759735313, 0.0 ], [ -73.93602091914461, 40.812069964789309, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 33117601.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.935504567519288, 40.811823365848625, 0.0 ], [ -73.93602091914461, 40.812069964789309, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 33117594.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Madison Avenue", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.934954169744714, 40.813581153663932, 0.0 ], [ -73.935941238578906, 40.812265774709743, 0.0 ], [ -73.93602091914461, 40.812069964789309, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 32973206.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93602091914461, 40.812069964789309, 0.0 ], [ -73.935866139421151, 40.812196629397583, 0.0 ], [ -73.934862900911853, 40.813528394871554, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46240141.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Park Ave", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.93536721511235, 40.810353339747827, 0.0 ], [ -73.935968727026605, 40.809541789254823, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593266.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941763848755983, 40.849078373067002, 0.0 ], [ -73.941747768912393, 40.848964757696081, 0.0 ], [ -73.941763848755983, 40.848883555203336, 0.0 ], [ -73.941799511872759, 40.848811254322719, 0.0 ], [ -73.941865717709206, 40.848737594321861, 0.0 ], [ -73.941822868070147, 40.848709190351322, 0.0 ], [ -73.941747768912393, 40.848782170863529, 0.0 ], [ -73.941683449538047, 40.848891777384956, 0.0 ], [ -73.941688749598228, 40.84902564251238, 0.0 ], [ -73.941731689068803, 40.849155430271111, 0.0 ], [ -73.941855027757327, 40.84926503617514, 0.0 ], [ -73.942064245386987, 40.849354256470278, 0.0 ], [ -73.943775536003244, 40.849691090880924, 0.0 ], [ -73.944494367893597, 40.849930550090392, 0.0 ], [ -73.961078346016791, 40.853172133792548, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46593991.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 40.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.960997856967325, 40.85341966614677, 0.0 ], [ -73.958463350224719, 40.85292106722914, 0.0 ], [ -73.944408578783964, 40.850161786411476, 0.0 ], [ -73.943593178000555, 40.850072567203654, 0.0 ], [ -73.941930126915082, 40.849731657669409, 0.0 ], [ -73.941624340392352, 40.849735734732207, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 49032026.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (upper level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1;US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.95209456435488, 40.851493944681351, 0.0 ], [ -73.944417651768333, 40.849975941239109, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 49032027.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (lower level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1;US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.95209456435488, 40.851493944681351, 0.0 ], [ -73.944446038531311, 40.849979134926556, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 9702602.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (upper level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1;US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944390702309803, 40.850094175522436, 0.0 ], [ -73.952030155149018, 40.851591383821905, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46618199.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (lower level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944381719156965, 40.850100970589779, 0.0 ], [ -73.952030155149018, 40.851591383821905, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 160061993.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "path", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.946530309653511, 40.849818974709429, 0.0 ], [ -73.946717518558728, 40.850061966893747, 0.0 ], [ -73.946879933962109, 40.85019283983187, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46618200.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (lower level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944446038531311, 40.849979134926556, 0.0 ], [ -73.943727206640958, 40.849735734732207, 0.0 ], [ -73.942300322643646, 40.849459852917221, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617679.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944446038531311, 40.849979134926556, 0.0 ], [ -73.942033433172753, 40.849500555749835, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 9702487.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944417651768333, 40.849975941239109, 0.0 ], [ -73.943730799902099, 40.849747286408764, 0.0 ], [ -73.942014209225675, 40.849409636867236, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 44763891.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (upper level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "yes", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.944417651768333, 40.849975941239109, 0.0 ], [ -73.941826371499758, 40.849461347846407, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 16586045.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (upper level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94176923864768, 40.849545063827009, 0.0 ], [ -73.944390702309803, 40.850094175522436, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46588491.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "3", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "US 9", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 49.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94193551680678, 40.849678927634649, 0.0 ], [ -73.943602161153393, 40.850013450069085, 0.0 ], [ -73.944390702309803, 40.850094175522436, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46617791.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942001273485573, 40.849589775727864, 0.0 ], [ -73.944381719156965, 40.850100970589779, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46590816.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": "no", "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "no", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway", "HISTORIC": null, "HORSE": "no", "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "George Washington Bridge (lower level)", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": "I 95;US 1", "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942241303329496, 40.849743888857041, 0.0 ], [ -73.943603867952447, 40.850011683349315, 0.0 ], [ -73.944381719156965, 40.850100970589779, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592770.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Hudson River Greenway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94382386536553, 40.851500875503625, 0.0 ], [ -73.944151031792003, 40.851419676118851, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592772.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Hudson River Greenway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943459059528635, 40.85148463563462, 0.0 ], [ -73.943555538590161, 40.851508961462009, 0.0 ], [ -73.94382386536553, 40.851500875503625, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592767.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Hudson River Greenway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.941567387203335, 40.852528735598291, 0.0 ], [ -73.94178531849127, 40.852316465143311, 0.0 ], [ -73.942482680646336, 40.851683454844661, 0.0 ], [ -73.942767087265281, 40.851379178313195, 0.0 ], [ -73.943045924329482, 40.851038275501502, 0.0 ], [ -73.943233762055385, 40.850908491430729, 0.0 ], [ -73.943528768794692, 40.850774562157135, 0.0 ], [ -73.943678967110202, 40.850754245110252, 0.0 ], [ -73.943737986424367, 40.850786657252328, 0.0 ], [ -73.943759456159654, 40.850835377360582, 0.0 ], [ -73.943743376316078, 40.850884029483154, 0.0 ], [ -73.943662887266612, 40.850928740480498, 0.0 ], [ -73.94353415868639, 40.851013949501315, 0.0 ], [ -73.94332494105673, 40.851228942109849, 0.0 ], [ -73.943314161273307, 40.851302055745705, 0.0 ], [ -73.943330241116897, 40.851371092338965, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096742.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943449088228988, 40.849404948221931, 0.0 ], [ -73.943652826135434, 40.849354256470278, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096746.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "track", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "gravel", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943652826135434, 40.849354256470278, 0.0 ], [ -73.943491937868046, 40.849569390366476, 0.0 ], [ -73.943398063920853, 40.849648485533628, 0.0 ], [ -73.94329341019025, 40.850060268125972, 0.0 ], [ -73.943285415184221, 40.850192160326102, 0.0 ], [ -73.943274635400812, 40.850403146530006, 0.0 ], [ -73.943304100142129, 40.85051675943464, 0.0 ], [ -73.943574403211116, 40.850668492154753, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119579.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 9.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943602161153393, 40.847721567210648, 0.0 ], [ -73.943576469336293, 40.84801376493936, 0.0 ], [ -73.943507748217044, 40.848247454242085, 0.0 ], [ -73.943353237988163, 40.848701987428619, 0.0 ], [ -73.943233043403168, 40.849078576922167, 0.0 ], [ -73.943169352849523, 40.849451630806101, 0.0 ], [ -73.943142583054055, 40.849910232784701, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 8119481.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Riverside Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943602161153393, 40.847721567210648, 0.0 ], [ -73.943518977158092, 40.847970750796442, 0.0 ], [ -73.943318922344332, 40.848279935562914, 0.0 ], [ -73.943120035340414, 40.848577567008313, 0.0 ], [ -73.94306002787944, 40.84866848703259, 0.0 ], [ -73.943025622404051, 40.848778773262318, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096744.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943574403211116, 40.850668492154753, 0.0 ], [ -73.943528768794692, 40.850774562157135, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46592771.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "cycleway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Hudson River Greenway", "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": "grade1", "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -10.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943330241116897, 40.851371092338965, 0.0 ], [ -73.943459059528635, 40.85148463563462, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096743.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "-1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": "yes", "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": -20.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94309443335483, 40.849320144840782, 0.0 ], [ -73.943449088228988, 40.849404948221931, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 90086361.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "2", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 39.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942670428540723, 40.848311465532767, 0.0 ], [ -73.94286895621849, 40.848283061379554, 0.0 ], [ -73.942986905015317, 40.848242493704234, 0.0 ], [ -73.943099643583466, 40.848181540215712, 0.0 ], [ -73.943198727759309, 40.848098162276059, 0.0 ], [ -73.943293140695658, 40.847942346497199, 0.0 ], [ -73.943344614161447, 40.847773551319399, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 165423253.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Riverside Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943019154534014, 40.849110853980548, 0.0 ], [ -73.943143750863911, 40.848822194592621, 0.0 ], [ -73.943141235581123, 40.848771162634989, 0.0 ], [ -73.943111231850636, 40.848750437261486, 0.0 ], [ -73.943076377217608, 40.848748534603921, 0.0 ], [ -73.943052661694111, 40.848758931267803, 0.0 ], [ -73.943025622404051, 40.848778773262318, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096741.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "steps", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943080778962496, 40.849135180679426, 0.0 ], [ -73.94309443335483, 40.849320144840782, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096750.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94304044460624, 40.849120774925858, 0.0 ], [ -73.943080778962496, 40.849135180679426, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096754.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943011878180215, 40.848445263880159, 0.0 ], [ -73.943046642981699, 40.848485831431354, 0.0 ], [ -73.943044037867367, 40.848548755255592, 0.0 ], [ -73.943054727819259, 40.848640083032414, 0.0 ], [ -73.943001008565275, 40.848765862376155, 0.0 ], [ -73.942997505135665, 40.849102427971033, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096748.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": "yes", "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": null, "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": "paved", "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 0.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.942997505135665, 40.849102427971033, 0.0 ], [ -73.943019154534014, 40.849110853980548, 0.0 ], [ -73.94304044460624, 40.849120774925858, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 46587573.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": "yes", "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "motorway_link", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": "1", "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": null, "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": "no", "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 29.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.94302211897444, 40.84774467126401, 0.0 ], [ -73.942665038649011, 40.849106776879303, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 160061999.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "secondary", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": null, "MILITARY": null, "MOTORCAR": null, "NAME": "Riverside Drive", "NATURAL": null, "OFFICE": null, "ONEWAY": "yes", "OPERATOR": null, "PLACE": null, "POPULATION": null, "POWER": null, "POWER_SOUR": null, "PUBLIC_TRA": null, "RAILWAY": null, "REF": null, "RELIGION": null, "ROUTE": null, "SERVICE": null, "SHOP": null, "SPORT": null, "SURFACE": null, "TOLL": null, "TOURISM": null, "TOWER:TYPE": null, "TRACKTYPE": null, "TUNNEL": null, "WATER": null, "WATERWAY": null, "WETLAND": null, "WIDTH": null, "WOOD": null, "Z_ORDER": 6.0, "WAY_AREA": null }, "geometry": { "type": "LineString", "coordinates": [ [ -73.943025622404051, 40.848778773262318, 0.0 ], [ -73.943019154534014, 40.848944440094257, 0.0 ], [ -73.943019154534014, 40.849110853980548, 0.0 ] ] } }
,
{ "type": "Feature", "properties": { "OSM_ID": 60096753.0, "ACCESS": null, "ADDR:HOUSE": null, "ADDR:HOU00": null, "ADDR:INTER": null, "ADMIN_LEVE": null, "AERIALWAY": null, "AEROWAY": null, "AMENITY": null, "AREA": null, "BARRIER": null, "BICYCLE": null, "BRAND": null, "BRIDGE": null, "BOUNDARY": null, "BUILDING": null, "CONSTRUCTI": null, "COVERED": null, "CULVERT": null, "CUTTING": null, "DENOMINATI": null, "DISUSED": null, "EMBANKMENT": null, "FOOT": null, "GENERATOR:": null, "HARBOUR": null, "HIGHWAY": "footway", "HISTORIC": null, "HORSE": null, "INTERMITTE": null, "JUNCTION": null, "LANDUSE": null, "LAYER": null, "LEISURE": null, "LOCK": null, "MAN_MADE": nu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment