Skip to content

Instantly share code, notes, and snippets.

@dphiffer
Last active January 22, 2023 05:47
Show Gist options
  • Select an option

  • Save dphiffer/0634fd3f0a68e1f870b2 to your computer and use it in GitHub Desktop.

Select an option

Save dphiffer/0634fd3f0a68e1f870b2 to your computer and use it in GitHub Desktop.
NYPL Labs Space/Time Engineer code test (I did not get an offer)

Dan Phiffer's Space/Time Exercise

This ended up taking a bit longer than I'd hoped. I started out by exploring the data using some JavaScript mapping libraries, but started to realize I was going to need something with a little more heft. I turned to Ruby, and decided the RGeo gem was the right thing for the job. It's been some time since I've used Ruby regularly, so there was some time spent reacquainting myself with some language stuff. And just getting up to speed with a library I had never used before.

At the core of the problem is this: how close is each address point to a street line? I looked up the math involved, and decided calculating things was going to be too much trouble. Then I discovered a very relevant message on the RGeo-users mailing list, and the rest of the solution was structuring the data properly.

I created a helper function point_line_dist(point, line) that returns the distance from a given point to a specific line (as defined by two end points). This function uses two low-level methods, project and interpolate, provided by the ffi-geos gem. The first method gives a distance along the line, to the point of intersection where you'd draw a perpendicular line from the point to the line. Then the second method converts that line-distance into the coordinates where that point of interesection appears. Then, the method returns the distance from that intersection point on the line to the original point.

def point_line_dist(point, line)
	line = line.geometry.fg_geom
	line_dist = line.project(point.fg_geom)
	line_point_geom = line.interpolate(line_dist)
	line_point = @factory.wrap_fg_geom(line_point_geom)
	return line_point.distance(point)
end

This method was used to sort the centerlines from the geojson file in order to find the closest one for each point in the addresses json file. The first item in the sorted list was the closest line to the address point, and presto—we have a good way to pick a centerline for each point!

sortedlines = centerlines.sort { |a, b|
	a_dist = point_line_dist(point, a)
	b_dist = point_line_dist(point, b)
	a_dist <=> b_dist
}
centerline = sortedlines.first

The rest of the script simply churns out the data structures with the associated properties appended to the address points, using RGeo's EntityFactory. I found using two different factories (one for regular RGeo, and another for GeoJSON) to be slightly unweidly. I also wasn't sure which ID property was the "canonical" one for the centerlines, and just chose the PhysicalID number arbitrarily. It should be easy enough to use a different one (perhaps GenericID?).

One problem I see in the resulting solution is that addresses right at the corner of two streets might easily get mis-associated with the wrong one. For example "499 West 12 Street" should probably be "499 West Street" given the patterns of the address numbers. This seems like a limitation that would be hard to improve programatically. (EDIT: I just thought of how this could work, you could just keep track of the address number sequence for the chosen street, and if the number doesn't fit, go with the second closest street.) The approach isn't perfect, but a good starting point for a bit more manual polishing.

In addition to the resulting GeoJSON file, I've also included a quick and dirty Leaflet mapping interface that I used to confirm my results. This file is a modified version of the leaflet.html file output from MapTiler.app, which I used to turn the GeoTIFF file into tiled PNG files. I also ran the GeoJSON through a validator to make sure things looked okay.

require 'rgeo/geo_json'
require 'ffi-geos'
# Usage: ruby conflate.rb > conflated.geojson
@factory = RGeo::Geos.factory(:native_interface => :ffi)
entity_factory = RGeo::GeoJSON::EntityFactory.instance
# This was helpful: https://groups.google.com/forum/#!topic/rgeo-users/e1FgzpPISs8
def point_line_dist(point, line)
line = line.geometry.fg_geom
line_dist = line.project(point.fg_geom)
line_point_geom = line.interpolate(line_dist)
line_point = @factory.wrap_fg_geom(line_point_geom)
return line_point.distance(point)
end
centerlines_geojson = File.read('west_village_centerlines.geojson')
centerlines = RGeo::GeoJSON.decode(centerlines_geojson, {
:json_parser => :json,
:geo_factory => @factory
})
addresses_json = File.read('data/addresses.json')
addresses = JSON.parse(addresses_json)
features = []
addresses.each { |address|
data = address["addresses"].first
point = @factory.point(
data["longitude"],
data["latitude"]
)
sortedlines = centerlines.sort { |a, b|
a_dist = point_line_dist(point, a)
b_dist = point_line_dist(point, b)
a_dist <=> b_dist
}
centerline = sortedlines.first
centerline_id = centerline.properties["PhysicalID"]
street = centerline.properties["Street"]
features.push(entity_factory.feature(point, address["id"], {
"centerline" => centerline_id,
"number" => data["address"],
"street" => street,
"address" => "#{data["address"]} #{street}"
}))
}
centerlines.each { |centerline|
centerline_id = centerline.properties["PhysicalID"]
feature = entity_factory.feature(centerline.geometry, centerline_id, centerline.properties)
features.push(feature)
}
collection = entity_factory.feature_collection(features)
geojson = RGeo::GeoJSON.encode(collection)
puts(geojson.to_json)
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00743450437287,40.74003465832258]},"properties":{"centerline":77467,"number":"28","street":"LITTLE WEST 12 STREET","address":"28 LITTLE WEST 12 STREET"},"id":119666},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00706969201566,40.738074425497665]},"properties":{"centerline":690,"number":"78","street":"JANE STREET","address":"78 JANE STREET"},"id":119571},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00740820914476,40.736918199277]},"properties":{"centerline":79636,"number":"17","street":"BETHUNE STREET","address":"17 BETHUNE STREET"},"id":119777},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007933139801,40.739278390106996]},"properties":{"centerline":72623,"number":"813","street":"GANSEVOORT STREET","address":"813 GANSEVOORT STREET"},"id":119348},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006510004401,40.739277882038]},"properties":{"centerline":479,"number":"834","street":"GREENWICH STREET","address":"834 GREENWICH STREET"},"id":119350},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00635667145234,40.739280422382336]},"properties":{"centerline":479,"number":"837","street":"GREENWICH STREET","address":"837 GREENWICH STREET"},"id":119354},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00689423084249,40.739323438859]},"properties":{"centerline":72623,"number":"27","street":"GANSEVOORT STREET","address":"27 GANSEVOORT STREET"},"id":119361},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00714524090267,40.73931954366767]},"properties":{"centerline":72623,"number":"33","street":"GANSEVOORT STREET","address":"33 GANSEVOORT STREET"},"id":119363},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006964638829,40.739319713023995]},"properties":{"centerline":72623,"number":"29","street":"GANSEVOORT STREET","address":"29 GANSEVOORT STREET"},"id":119365},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00554060936001,40.73921589761467]},"properties":{"centerline":630,"number":"647","street":"HUDSON STREET","address":"647 HUDSON STREET"},"id":119371},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00906793773201,40.739305995173]},"properties":{"centerline":128993,"number":"72","street":"GANSEVOORT STREET","address":"72 GANSEVOORT STREET"},"id":119373},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0081340819595,40.73920175635125]},"properties":{"centerline":441,"number":"812","street":"WASHINGTON STREET","address":"812 WASHINGTON STREET"},"id":119375},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00555029191251,40.73915718251925]},"properties":{"centerline":630,"number":"645","street":"HUDSON STREET","address":"645 HUDSON STREET"},"id":119381},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00814011693,40.73913392905266]},"properties":{"centerline":441,"number":"810","street":"WASHINGTON STREET","address":"810 WASHINGTON STREET"},"id":119382},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00794744491567,40.73907905748]},"properties":{"centerline":441,"number":"809","street":"WASHINGTON STREET","address":"809 WASHINGTON STREET"},"id":119395},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00636829435798,40.73900318560134]},"properties":{"centerline":479,"number":"829","street":"GREENWICH STREET","address":"829 GREENWICH STREET"},"id":119404},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007664695382,40.7380772622665]},"properties":{"centerline":690,"number":"92","street":"JANE STREET","address":"92 JANE STREET"},"id":119555},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00816543027776,40.738862746186]},"properties":{"centerline":441,"number":"802","street":"WASHINGTON STREET","address":"802 WASHINGTON STREET"},"id":119416},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007255155593,40.73882121128875]},"properties":{"centerline":99497,"number":"75","street":"HORATIO STREET","address":"75 HORATIO STREET"},"id":119417},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006847962737,40.73882044918033]},"properties":{"centerline":99497,"number":"65","street":"HORATIO STREET","address":"65 HORATIO STREET"},"id":119418},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00783210992834,40.73882925576667]},"properties":{"centerline":99497,"number":"87","street":"HORATIO STREET","address":"87 HORATIO STREET"},"id":119419},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0071781076315,40.73882281286075]},"properties":{"centerline":99497,"number":"73","street":"HORATIO STREET","address":"73 HORATIO STREET"},"id":119420},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00604799389866,40.738812658738]},"properties":{"centerline":99498,"number":"51","street":"HORATIO STREET","address":"51 HORATIO STREET"},"id":119435},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00818638503567,40.73860316323667]},"properties":{"centerline":440,"number":"798","street":"WASHINGTON STREET","address":"798 WASHINGTON STREET"},"id":119463},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00728967137734,40.738682275557665]},"properties":{"centerline":99497,"number":"80","street":"HORATIO STREET","address":"80 HORATIO STREET"},"id":119471},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00720067322267,40.73868326951666]},"properties":{"centerline":99497,"number":"78","street":"HORATIO STREET","address":"78 HORATIO STREET"},"id":119474},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00653993360733,40.738523528693996]},"properties":{"centerline":478,"number":"826","street":"GREENWICH STREET","address":"826 GREENWICH STREET"},"id":119482},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0063836053015,40.73849807652225]},"properties":{"centerline":478,"number":"817","street":"GREENWICH STREET","address":"817 GREENWICH STREET"},"id":119486},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00654056594,40.73845985675433]},"properties":{"centerline":478,"number":"824","street":"GREENWICH STREET","address":"824 GREENWICH STREET"},"id":119493},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00820448994598,40.738444305254326]},"properties":{"centerline":440,"number":"792","street":"WASHINGTON STREET","address":"792 WASHINGTON STREET"},"id":119495},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00654036611267,40.738403405190006]},"properties":{"centerline":478,"number":"822","street":"GREENWICH STREET","address":"822 GREENWICH STREET"},"id":119503},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00568835437299,40.73835556139767]},"properties":{"centerline":629,"number":"627","street":"HUDSON STREET","address":"627 HUDSON STREET"},"id":119511},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00639237076226,40.73829009718775]},"properties":{"centerline":478,"number":"809","street":"GREENWICH STREET","address":"809 GREENWICH STREET"},"id":119517},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00570534169667,40.738283583946334]},"properties":{"centerline":629,"number":"625","street":"HUDSON STREET","address":"625 HUDSON STREET"},"id":119518},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007232412696,40.73818552512767]},"properties":{"centerline":690,"number":"79","street":"JANE STREET","address":"79 JANE STREET"},"id":119519},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00730259716534,40.73818942038567]},"properties":{"centerline":690,"number":"81","street":"JANE STREET","address":"81 JANE STREET"},"id":119520},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00715708732632,40.738187388077336]},"properties":{"centerline":690,"number":"77","street":"JANE STREET","address":"77 JANE STREET"},"id":119521},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00860838592068,40.73819958192767]},"properties":{"centerline":689,"number":"101","street":"JANE STREET","address":"101 JANE STREET"},"id":119522},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00821410119534,40.73823379243999]},"properties":{"centerline":440,"number":"784","street":"WASHINGTON STREET","address":"784 WASHINGTON STREET"},"id":119526},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00770068168634,40.73819179141233]},"properties":{"centerline":690,"number":"91","street":"JANE STREET","address":"91 JANE STREET"},"id":119529},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0058074332775,40.738171637684005]},"properties":{"centerline":691,"number":"59","street":"JANE STREET","address":"59 JANE STREET"},"id":119534},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00959092378619,40.7379695242434]},"properties":{"centerline":99502,"number":"502","street":"WEST STREET","address":"502 WEST STREET"},"id":119562},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00639109313501,40.738025819351]},"properties":{"centerline":477,"number":"807","street":"GREENWICH STREET","address":"807 GREENWICH STREET"},"id":119547},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.005760550499,40.73796959198733]},"properties":{"centerline":628,"number":"619","street":"HUDSON STREET","address":"619 HUDSON STREET"},"id":119557},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00616087019468,40.73806561881133]},"properties":{"centerline":691,"number":"64","street":"JANE STREET","address":"64 JANE STREET"},"id":119558},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00804869830633,40.73797077750434]},"properties":{"centerline":439,"number":"779","street":"WASHINGTON STREET","address":"779 WASHINGTON STREET"},"id":119563},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00782048702267,40.73808289346366]},"properties":{"centerline":690,"number":"96","street":"JANE STREET","address":"96 JANE STREET"},"id":119565},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007748514414,40.738079167559]},"properties":{"centerline":690,"number":"94","street":"JANE STREET","address":"94 JANE STREET"},"id":119566},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007217437029,40.738077304606335]},"properties":{"centerline":690,"number":"82","street":"JANE STREET","address":"82 JANE STREET"},"id":119567},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00712177157399,40.738075780372334]},"properties":{"centerline":690,"number":"80","street":"JANE STREET","address":"80 JANE STREET"},"id":119574},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00687009096133,40.738071377029335]},"properties":{"centerline":690,"number":"70","street":"JANE STREET","address":"70 JANE STREET"},"id":119575},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00702342391,40.738069514077]},"properties":{"centerline":690,"number":"76","street":"JANE STREET","address":"76 JANE STREET"},"id":119576},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00805095074625,40.73790341541075]},"properties":{"centerline":439,"number":"777","street":"WASHINGTON STREET","address":"777 WASHINGTON STREET"},"id":119582},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00865404941466,40.738084561141996]},"properties":{"centerline":689,"number":"126","street":"JANE STREET","address":"126 JANE STREET"},"id":119585},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006561413407,40.73786374215266]},"properties":{"centerline":477,"number":"810","street":"GREENWICH STREET","address":"810 GREENWICH STREET"},"id":119596},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00656566023834,40.73780480489167]},"properties":{"centerline":477,"number":"808","street":"GREENWICH STREET","address":"808 GREENWICH STREET"},"id":119605},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00960639119134,40.7377674609965]},"properties":{"centerline":99502,"number":"499","street":"WEST STREET","address":"499 WEST STREET"},"id":119609},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00825388729567,40.737775505601334]},"properties":{"centerline":439,"number":"774","street":"WASHINGTON STREET","address":"774 WASHINGTON STREET"},"id":119613},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00640264060401,40.7377859477525]},"properties":{"centerline":477,"number":"799","street":"GREENWICH STREET","address":"799 GREENWICH STREET"},"id":119614},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006567001343,40.73774925478167]},"properties":{"centerline":477,"number":"806","street":"GREENWICH STREET","address":"806 GREENWICH STREET"},"id":119616},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00786362588433,40.73758429777967]},"properties":{"centerline":850,"number":"367","street":"WEST 12 STREET","address":"367 WEST 12 STREET"},"id":119630},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00635137006934,40.737581552105]},"properties":{"centerline":851,"number":"329","street":"WEST 12 STREET","address":"329 WEST 12 STREET"},"id":119638},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00691345334033,40.73760174191734]},"properties":{"centerline":850,"number":"97","street":"WEST 12 STREET","address":"97 WEST 12 STREET"},"id":119639},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007276445627,40.73757752335567]},"properties":{"centerline":850,"number":"349","street":"WEST 12 STREET","address":"349 WEST 12 STREET"},"id":119642},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00720290839699,40.73757752335566]},"properties":{"centerline":850,"number":"347","street":"WEST 12 STREET","address":"347 WEST 12 STREET"},"id":119647},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00656811892965,40.73763950930667]},"properties":{"centerline":477,"number":"802","street":"GREENWICH STREET","address":"802 GREENWICH STREET"},"id":119648},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00603950023667,40.737568885965004]},"properties":{"centerline":851,"number":"321","street":"WEST 12 STREET","address":"321 WEST 12 STREET"},"id":119653},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00655560195425,40.73744419409075]},"properties":{"centerline":476,"number":"798","street":"GREENWICH STREET","address":"798 GREENWICH STREET"},"id":119664},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0080999955535,40.73740596084817]},"properties":{"centerline":438,"number":"763","street":"WASHINGTON STREET","address":"763 WASHINGTON STREET"},"id":119672},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00809787213825,40.7374613418835]},"properties":{"centerline":850,"number":"765","street":"WEST 12 STREET","address":"765 WEST 12 STREET"},"id":119661},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00781556963919,40.736916166929596]},"properties":{"centerline":79636,"number":"27","street":"BETHUNE STREET","address":"27 BETHUNE STREET"},"id":119769},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00732472538951,40.7369179452335]},"properties":{"centerline":79636,"number":"15","street":"BETHUNE STREET","address":"15 BETHUNE STREET"},"id":119774},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00714769959433,40.739911779536335]},"properties":{"centerline":77467,"number":"20","street":"LITTLE WEST 12 STREET","address":"20 LITTLE WEST 12 STREET"},"id":119788},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00597130373068,40.736699212308]},"properties":{"centerline":155684,"number":"587","street":"HUDSON STREET","address":"587 HUDSON STREET"},"id":119791},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00835744912,40.736644469599746]},"properties":{"centerline":437,"number":"746","street":"WASHINGTON STREET","address":"746 WASHINGTON STREET"},"id":119798},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00665501132625,40.736651834221746]},"properties":{"centerline":475,"number":"776","street":"GREENWICH STREET","address":"776 GREENWICH STREET"},"id":119801},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009083688111,40.736621266062336]},"properties":{"centerline":79635,"number":"3","street":"BETHUNE STREET","address":"3 BETHUNE STREET"},"id":119802},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009088813419,40.736578605873746]},"properties":{"centerline":79635,"number":"2","street":"BETHUNE STREET","address":"2 BETHUNE STREET"},"id":119810},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00909297168266,40.736532729617004]},"properties":{"centerline":79635,"number":"1","street":"BETHUNE STREET","address":"1 BETHUNE STREET"},"id":119817},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00707773864266,40.73643500694467]},"properties":{"centerline":79733,"number":"97","street":"BANK STREET","address":"97 BANK STREET"},"id":119825},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00722257792933,40.73641739313734]},"properties":{"centerline":79733,"number":"101","street":"BANK STREET","address":"101 BANK STREET"},"id":119827},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00818973779676,40.736440087849495]},"properties":{"centerline":437,"number":"737","street":"WASHINGTON STREET","address":"737 WASHINGTON STREET"},"id":119828},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00769520550975,40.73635218813775]},"properties":{"centerline":79733,"number":"113","street":"BANK STREET","address":"113 BANK STREET"},"id":119834},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00784127414234,40.736330340215]},"properties":{"centerline":79733,"number":"117","street":"BANK STREET","address":"117 BANK STREET"},"id":119838},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00837704539266,40.73635540604833]},"properties":{"centerline":437,"number":"736","street":"WASHINGTON STREET","address":"736 WASHINGTON STREET"},"id":119839},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006927087903,40.7381856098075]},"properties":{"centerline":690,"number":"71","street":"JANE STREET","address":"71 JANE STREET"},"id":119524},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0063968487085,40.73821863481375]},"properties":{"centerline":478,"number":"807","street":"GREENWICH STREET","address":"807 GREENWICH STREET"},"id":119531},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0065430290995,40.738220159044744]},"properties":{"centerline":478,"number":"816","street":"GREENWICH STREET","address":"816 GREENWICH STREET"},"id":119532},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008045345545,40.738032763088334]},"properties":{"centerline":690,"number":"781","street":"JANE STREET","address":"781 JANE STREET"},"id":119546},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008236899972,40.737999229911]},"properties":{"centerline":439,"number":"780","street":"WASHINGTON STREET","address":"780 WASHINGTON STREET"},"id":119552},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00600038468832,40.738064941374]},"properties":{"centerline":691,"number":"60","street":"JANE STREET","address":"60 JANE STREET"},"id":119561},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006399139762,40.73797535021367]},"properties":{"centerline":477,"number":"805","street":"GREENWICH STREET","address":"805 GREENWICH STREET"},"id":119564},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0069698356095,40.738070530232996]},"properties":{"centerline":690,"number":"74","street":"JANE STREET","address":"74 JANE STREET"},"id":119573},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00692328810668,40.73807527229433]},"properties":{"centerline":690,"number":"72","street":"JANE STREET","address":"72 JANE STREET"},"id":119577},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00655671954166,40.737918276007996]},"properties":{"centerline":477,"number":"812","street":"GREENWICH STREET","address":"812 GREENWICH STREET"},"id":119578},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0082448907195,40.7378986726165]},"properties":{"centerline":439,"number":"778","street":"WASHINGTON STREET","address":"778 WASHINGTON STREET"},"id":119584},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00579119831299,40.737791510128666]},"properties":{"centerline":628,"number":"615","street":"HUDSON STREET","address":"615 HUDSON STREET"},"id":119610},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00580301880866,40.73773282684367]},"properties":{"centerline":628,"number":"613","street":"HUDSON STREET","address":"613 HUDSON STREET"},"id":119617},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008253775537,40.73771512870025]},"properties":{"centerline":439,"number":"772","street":"WASHINGTON STREET","address":"772 WASHINGTON STREET"},"id":119621},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00794230401534,40.737608346978]},"properties":{"centerline":850,"number":"125","street":"WEST 12 STREET","address":"125 WEST 12 STREET"},"id":119628},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009866565466,40.73765153389667]},"properties":{"centerline":852,"number":"493","street":"WEST 12 STREET","address":"493 WEST 12 STREET"},"id":119629},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008021429181,40.73758141864967]},"properties":{"centerline":850,"number":"371","street":"WEST 12 STREET","address":"371 WEST 12 STREET"},"id":119626},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00848025456074,40.73758188439125]},"properties":{"centerline":852,"number":"377","street":"WEST 12 STREET","address":"377 WEST 12 STREET"},"id":119633},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00559850037101,40.738902587485]},"properties":{"centerline":630,"number":"639","street":"HUDSON STREET","address":"639 HUDSON STREET"},"id":119413},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00812782347167,40.739270938430664]},"properties":{"centerline":441,"number":"814","street":"WASHINGTON STREET","address":"814 WASHINGTON STREET"},"id":119359},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00869131088267,40.73930582581733]},"properties":{"centerline":128993,"number":"62","street":"GANSEVOORT STREET","address":"62 GANSEVOORT STREET"},"id":119370},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007653966546,40.738825191188]},"properties":{"centerline":99497,"number":"85","street":"HORATIO STREET","address":"85 HORATIO STREET"},"id":119425},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.005985632539,40.73881384423999]},"properties":{"centerline":99498,"number":"49","street":"HORATIO STREET","address":"49 HORATIO STREET"},"id":119431},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.005874991417,40.73880876351633]},"properties":{"centerline":99498,"number":"45","street":"HORATIO STREET","address":"45 HORATIO STREET"},"id":119433},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007670730352,40.737512996936665]},"properties":{"centerline":850,"number":"358","street":"WEST 12 STREET","address":"358 WEST 12 STREET"},"id":119678},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0095819383862,40.7380461424828]},"properties":{"centerline":689,"number":"503","street":"JANE STREET","address":"503 JANE STREET"},"id":119541},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00709925219425,40.738820068126]},"properties":{"centerline":99497,"number":"71","street":"HORATIO STREET","address":"71 HORATIO STREET"},"id":119426},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007061198354,40.739320221092335]},"properties":{"centerline":72623,"number":"31","street":"GANSEVOORT STREET","address":"31 GANSEVOORT STREET"},"id":119353},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006847292185,40.73868072915]},"properties":{"centerline":99497,"number":"70","street":"HORATIO STREET","address":"70 HORATIO STREET"},"id":119460},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0069902539252,40.7370287588796]},"properties":{"centerline":79636,"number":"8","street":"BETHUNE STREET","address":"8 BETHUNE STREET"},"id":119743},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00826551020167,40.738691906763336]},"properties":{"centerline":99496,"number":"94","street":"HORATIO STREET","address":"94 HORATIO STREET"},"id":119440},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00711730122534,40.73868089850733]},"properties":{"centerline":99497,"number":"76","street":"HORATIO STREET","address":"76 HORATIO STREET"},"id":119473},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00820717215568,40.738396376812]},"properties":{"centerline":440,"number":"790","street":"WASHINGTON STREET","address":"790 WASHINGTON STREET"},"id":119504},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00780685245967,40.737609701862]},"properties":{"centerline":850,"number":"121","street":"WEST 12 STREET","address":"121 WEST 12 STREET"},"id":119637},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006849080324,40.737577523356]},"properties":{"centerline":850,"number":"337","street":"WEST 12 STREET","address":"337 WEST 12 STREET"},"id":119651},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00826819241034,40.737654243663]},"properties":{"centerline":439,"number":"770","street":"WASHINGTON STREET","address":"770 WASHINGTON STREET"},"id":119655},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00611504912366,40.73756905532566]},"properties":{"centerline":851,"number":"323","street":"WEST 12 STREET","address":"323 WEST 12 STREET"},"id":119656},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00581911206233,40.73765542918567]},"properties":{"centerline":851,"number":"611","street":"WEST 12 STREET","address":"611 WEST 12 STREET"},"id":119657},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00889873504633,40.73749487533234]},"properties":{"centerline":852,"number":"144","street":"WEST 12 STREET","address":"144 WEST 12 STREET"},"id":119712},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00725029408933,40.736916505654335]},"properties":{"centerline":79636,"number":"13","street":"BETHUNE STREET","address":"13 BETHUNE STREET"},"id":119766},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00701403617867,40.73644483002734]},"properties":{"centerline":79733,"number":"95","street":"BANK STREET","address":"95 BANK STREET"},"id":119824},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00838263332867,40.736291386535335]},"properties":{"centerline":437,"number":"734","street":"WASHINGTON STREET","address":"734 WASHINGTON STREET"},"id":119842},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008742272854,40.736205010904]},"properties":{"centerline":79735,"number":"133","street":"BANK STREET","address":"133 BANK STREET"},"id":119844},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00692926719775,40.7369209937545]},"properties":{"centerline":79636,"number":"5","street":"BETHUNE STREET","address":"5 BETHUNE STREET"},"id":119771},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00552628949066,40.73928228631933]},"properties":{"centerline":630,"number":"649","street":"HUDSON STREET","address":"649 HUDSON STREET"},"id":119349},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00861889123934,40.739309382296994]},"properties":{"centerline":128993,"number":"60","street":"GANSEVOORT STREET","address":"60 GANSEVOORT STREET"},"id":119372},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00701336562634,40.73882011046533]},"properties":{"centerline":99497,"number":"69","street":"HORATIO STREET","address":"69 HORATIO STREET"},"id":119423},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00632157921767,40.738815707172]},"properties":{"centerline":99498,"number":"59","street":"HORATIO STREET","address":"59 HORATIO STREET"},"id":119428},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00616958737368,40.738816215244334]},"properties":{"centerline":99498,"number":"55","street":"HORATIO STREET","address":"55 HORATIO STREET"},"id":119434},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00561213493334,40.738845175361]},"properties":{"centerline":99498,"number":"637","street":"HORATIO STREET","address":"637 HORATIO STREET"},"id":119438},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007020071149,40.738686317957]},"properties":{"centerline":99497,"number":"74","street":"HORATIO STREET","address":"74 HORATIO STREET"},"id":119466},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00819377854525,40.73855237394]},"properties":{"centerline":440,"number":"796","street":"WASHINGTON STREET","address":"796 WASHINGTON STREET"},"id":119479},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00654219090966,40.73834353693467]},"properties":{"centerline":478,"number":"820","street":"GREENWICH STREET","address":"820 GREENWICH STREET"},"id":119512},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00700457088966,40.73818560980734]},"properties":{"centerline":690,"number":"73","street":"JANE STREET","address":"73 JANE STREET"},"id":119525},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0096142590046,40.7376550227208]},"properties":{"centerline":852,"number":"492","street":"WEST 12 STREET","address":"492 WEST 12 STREET"},"id":119632},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00595327638,40.737597654063]},"properties":{"centerline":851,"number":"12","street":"WEST 12 STREET","address":"12 WEST 12 STREET"},"id":119652},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00619831204267,40.73760107497767]},"properties":{"centerline":851,"number":"6","street":"WEST 12 STREET","address":"6 WEST 12 STREET"},"id":119654},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0070918761195,40.7369206126895]},"properties":{"centerline":79636,"number":"9","street":"BETHUNE STREET","address":"9 BETHUNE STREET"},"id":119775},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007064048201,40.7370294702]},"properties":{"centerline":79636,"number":"10","street":"BETHUNE STREET","address":"10 BETHUNE STREET"},"id":119745},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00734864175332,40.739996456810665]},"properties":{"centerline":77467,"number":"26","street":"LITTLE WEST 12 STREET","address":"26 LITTLE WEST 12 STREET"},"id":119724},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0071979910135,40.737029089135504]},"properties":{"centerline":79636,"number":"14","street":"BETHUNE STREET","address":"14 BETHUNE STREET"},"id":119740},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0096075534818,40.737767003724194]},"properties":{"centerline":99502,"number":"499","street":"WEST STREET","address":"499 WEST STREET"},"id":119608},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00657027028501,40.737691947512374]},"properties":{"centerline":477,"number":"804","street":"GREENWICH STREET","address":"804 GREENWICH STREET"},"id":119623},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0070083923635,40.73691807225525]},"properties":{"centerline":79636,"number":"7","street":"BETHUNE STREET","address":"7 BETHUNE STREET"},"id":119772},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00958314538028,40.73804585215229]},"properties":{"centerline":689,"number":"503","street":"JANE STREET","address":"503 JANE STREET"},"id":119544},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0077379196882,40.737028454028]},"properties":{"centerline":79636,"number":"30","street":"BETHUNE STREET","address":"30 BETHUNE STREET"},"id":119730},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00835871696475,40.73658044769775]},"properties":{"centerline":437,"number":"744","street":"WASHINGTON STREET","address":"744 WASHINGTON STREET"},"id":119807},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0083634108305,40.736526082108504]},"properties":{"centerline":437,"number":"742","street":"WASHINGTON STREET","address":"742 WASHINGTON STREET"},"id":119819},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00615280434533,40.737477991580334]},"properties":{"centerline":851,"number":"7","street":"WEST 12 STREET","address":"7 WEST 12 STREET"},"id":119674},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006084650755,40.73747861669267]},"properties":{"centerline":851,"number":"9","street":"WEST 12 STREET","address":"9 WEST 12 STREET"},"id":119675},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00675922632234,40.737483528157334]},"properties":{"centerline":850,"number":"94","street":"WEST 12 STREET","address":"94 WEST 12 STREET"},"id":119680},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00725498795532,40.73748471368333]},"properties":{"centerline":850,"number":"106","street":"WEST 12 STREET","address":"106 WEST 12 STREET"},"id":119681},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00716871023165,40.73748403623933]},"properties":{"centerline":850,"number":"104","street":"WEST 12 STREET","address":"104 WEST 12 STREET"},"id":119683},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0062951594592,40.73748705086221]},"properties":{"centerline":851,"number":"3","street":"WEST 12 STREET","address":"3 WEST 12 STREET"},"id":119684},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00734953582274,40.737486746013]},"properties":{"centerline":850,"number":"108","street":"WEST 12 STREET","address":"108 WEST 12 STREET"},"id":119688},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00707684585875,40.73749165510725]},"properties":{"centerline":850,"number":"340","street":"WEST 12 STREET","address":"340 WEST 12 STREET"},"id":119689},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006982296705,40.737493520446]},"properties":{"centerline":850,"number":"338","street":"WEST 12 STREET","address":"338 WEST 12 STREET"},"id":119690},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00585219264033,40.737393766852335]},"properties":{"centerline":627,"number":"609","street":"HUDSON STREET","address":"609 HUDSON STREET"},"id":119692},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00841336697326,40.73749551043575]},"properties":{"centerline":852,"number":"376","street":"WEST 12 STREET","address":"376 WEST 12 STREET"},"id":119693},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00586275383824,40.737347658286]},"properties":{"centerline":627,"number":"607","street":"HUDSON STREET","address":"607 HUDSON STREET"},"id":119696},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00848746299725,40.737497288724]},"properties":{"centerline":852,"number":"378","street":"WEST 12 STREET","address":"378 WEST 12 STREET"},"id":119698},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0058694593605,40.737308789883]},"properties":{"centerline":627,"number":"605","street":"HUDSON STREET","address":"605 HUDSON STREET"},"id":119702},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00734886527074,40.73999688019675]},"properties":{"centerline":77467,"number":"26","street":"LITTLE WEST 12 STREET","address":"26 LITTLE WEST 12 STREET"},"id":119751},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00836827233451,40.737033788931]},"properties":{"centerline":79635,"number":"34","street":"BETHUNE STREET","address":"34 BETHUNE STREET"},"id":119733},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00746487081025,40.737027691899]},"properties":{"centerline":79636,"number":"22","street":"BETHUNE STREET","address":"22 BETHUNE STREET"},"id":119737},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00668451562525,40.737030232329005]},"properties":{"centerline":79636,"number":"2","street":"BETHUNE STREET","address":"2 BETHUNE STREET"},"id":119742},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00727376341825,40.73702947020001]},"properties":{"centerline":79636,"number":"16","street":"BETHUNE STREET","address":"16 BETHUNE STREET"},"id":119739},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00734534487125,40.737027691899]},"properties":{"centerline":79636,"number":"18","street":"BETHUNE STREET","address":"18 BETHUNE STREET"},"id":119738},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00641489930167,40.73704103881]},"properties":{"centerline":476,"number":"783","street":"GREENWICH STREET","address":"783 GREENWICH STREET"},"id":119749},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00591757148474,40.737027691899]},"properties":{"centerline":155684,"number":"597","street":"HUDSON STREET","address":"597 HUDSON STREET"},"id":119750},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007265716791,40.739961061723335]},"properties":{"centerline":77467,"number":"24","street":"LITTLE WEST 12 STREET","address":"24 LITTLE WEST 12 STREET"},"id":119753},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009686857462,40.736879415304]},"properties":{"centerline":79635,"number":"470","street":"BETHUNE STREET","address":"470 BETHUNE STREET"},"id":119756},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00755640119318,40.736911932871834]},"properties":{"centerline":79636,"number":"21","street":"BETHUNE STREET","address":"21 BETHUNE STREET"},"id":119758},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00866147130725,40.736914642669]},"properties":{"centerline":79635,"number":"39","street":"BETHUNE STREET","address":"39 BETHUNE STREET"},"id":119759},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00594696402533,40.73683741342167]},"properties":{"centerline":155684,"number":"591","street":"HUDSON STREET","address":"591 HUDSON STREET"},"id":119760},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00898925960034,40.736916505654]},"properties":{"centerline":79635,"number":"51","street":"BETHUNE STREET","address":"51 BETHUNE STREET"},"id":119762},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00914929807168,40.736916505654335]},"properties":{"centerline":79635,"number":"55","street":"BETHUNE STREET","address":"55 BETHUNE STREET"},"id":119763},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00717206299299,40.73691955417533]},"properties":{"centerline":79636,"number":"11","street":"BETHUNE STREET","address":"11 BETHUNE STREET"},"id":119764},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009070172906,40.73691853800133]},"properties":{"centerline":79635,"number":"53","street":"BETHUNE STREET","address":"53 BETHUNE STREET"},"id":119765},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00923691689967,40.73691735246567]},"properties":{"centerline":79635,"number":"57","street":"BETHUNE STREET","address":"57 BETHUNE STREET"},"id":119767},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0081540644168,40.736818004477996]},"properties":{"centerline":437,"number":"751","street":"WASHINGTON STREET","address":"751 WASHINGTON STREET"},"id":119768},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00740239769199,40.737027268494]},"properties":{"centerline":79636,"number":"20","street":"BETHUNE STREET","address":"20 BETHUNE STREET"},"id":119744},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00819912552834,40.73632170266167]},"properties":{"centerline":437,"number":"733","street":"WASHINGTON STREET","address":"733 WASHINGTON STREET"},"id":119841},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008654654026,40.73621754384566]},"properties":{"centerline":79735,"number":"131","street":"BANK STREET","address":"131 BANK STREET"},"id":119843},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00686584413033,40.739790013427665]},"properties":{"centerline":77467,"number":"12","street":"LITTLE WEST 12 STREET","address":"12 LITTLE WEST 12 STREET"},"id":119851},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00652028620233,40.739594746865]},"properties":{"centerline":77467,"number":"7","street":"LITTLE WEST 12 STREET","address":"7 LITTLE WEST 12 STREET"},"id":119856},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00656029582,40.739551899918666]},"properties":{"centerline":72623,"number":"5","street":"GANSEVOORT STREET","address":"5 GANSEVOORT STREET"},"id":119858},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00658935308468,40.73950481905266]},"properties":{"centerline":72623,"number":"3","street":"GANSEVOORT STREET","address":"3 GANSEVOORT STREET"},"id":119859},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00768682360633,40.73758446714]},"properties":{"centerline":850,"number":"361","street":"WEST 12 STREET","address":"361 WEST 12 STREET"},"id":119640},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00715038180367,40.736429079222]},"properties":{"centerline":79733,"number":"99","street":"BANK STREET","address":"99 BANK STREET"},"id":119826},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00575126134066,40.73801964856867]},"properties":{"centerline":691,"number":"621","street":"JANE STREET","address":"621 JANE STREET"},"id":119548},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00950478554033,40.73926479943567]},"properties":{"centerline":128993,"number":"534","street":"GANSEVOORT STREET","address":"534 GANSEVOORT STREET"},"id":119356},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0083820186555,40.7393087048725]},"properties":{"centerline":128993,"number":"54","street":"GANSEVOORT STREET","address":"54 GANSEVOORT STREET"},"id":119358},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008473046124,40.7393071806665]},"properties":{"centerline":128993,"number":"56","street":"GANSEVOORT STREET","address":"56 GANSEVOORT STREET"},"id":119366},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00854200124733,40.739312091996]},"properties":{"centerline":128993,"number":"58","street":"GANSEVOORT STREET","address":"58 GANSEVOORT STREET"},"id":119367},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00891080498701,40.73930464032367]},"properties":{"centerline":128993,"number":"68","street":"GANSEVOORT STREET","address":"68 GANSEVOORT STREET"},"id":119368},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00883793830866,40.73930447096767]},"properties":{"centerline":128993,"number":"66","street":"GANSEVOORT STREET","address":"66 GANSEVOORT STREET"},"id":119369},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00914102792733,40.739300914487]},"properties":{"centerline":128993,"number":"74","street":"GANSEVOORT STREET","address":"74 GANSEVOORT STREET"},"id":119374},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009516313672,40.73909074309667]},"properties":{"centerline":99502,"number":"528","street":"WEST STREET","address":"528 WEST STREET"},"id":119393},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00556519627533,40.739090404383326]},"properties":{"centerline":630,"number":"643","street":"HUDSON STREET","address":"643 HUDSON STREET"},"id":119394},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00557324290266,40.73901876644033]},"properties":{"centerline":630,"number":"641","street":"HUDSON STREET","address":"641 HUDSON STREET"},"id":119401},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00796264409999,40.738932733064665]},"properties":{"centerline":441,"number":"801","street":"WASHINGTON STREET","address":"801 WASHINGTON STREET"},"id":119408},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007585123181,40.738823497614]},"properties":{"centerline":99497,"number":"83","street":"HORATIO STREET","address":"83 HORATIO STREET"},"id":119421},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00733903050434,40.738820449180004]},"properties":{"centerline":99497,"number":"77","street":"HORATIO STREET","address":"77 HORATIO STREET"},"id":119422},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00652721524267,40.73885855459201]},"properties":{"centerline":479,"number":"832","street":"GREENWICH STREET","address":"832 GREENWICH STREET"},"id":119429},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.005928132683,40.738812955113005]},"properties":{"centerline":99498,"number":"47","street":"HORATIO STREET","address":"47 HORATIO STREET"},"id":119432},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006239604205,40.738815368457004]},"properties":{"centerline":99498,"number":"57","street":"HORATIO STREET","address":"57 HORATIO STREET"},"id":119436},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00610633194434,40.738815029741666]},"properties":{"centerline":99498,"number":"53","street":"HORATIO STREET","address":"53 HORATIO STREET"},"id":119437},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00574088096634,40.73867107575533]},"properties":{"centerline":99498,"number":"54","street":"HORATIO STREET","address":"54 HORATIO STREET"},"id":119459},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00691904127599,40.73868428566333]},"properties":{"centerline":99497,"number":"72","street":"HORATIO STREET","address":"72 HORATIO STREET"},"id":119468},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00653799995776,40.738582924953995]},"properties":{"centerline":478,"number":"828","street":"GREENWICH STREET","address":"828 GREENWICH STREET"},"id":119470},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00565320715266,40.73855421012366]},"properties":{"centerline":629,"number":"633","street":"HUDSON STREET","address":"633 HUDSON STREET"},"id":119478},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00819823145866,40.738498669276]},"properties":{"centerline":440,"number":"794","street":"WASHINGTON STREET","address":"794 WASHINGTON STREET"},"id":119485},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.005662502573,40.73847813356633]},"properties":{"centerline":629,"number":"631","street":"HUDSON STREET","address":"631 HUDSON STREET"},"id":119488},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00638343766325,40.7384241516025]},"properties":{"centerline":478,"number":"815","street":"GREENWICH STREET","address":"815 GREENWICH STREET"},"id":119497},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00567516684534,40.738422458018]},"properties":{"centerline":629,"number":"629","street":"HUDSON STREET","address":"629 HUDSON STREET"},"id":119500},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0063906461,40.73835522268067]},"properties":{"centerline":478,"number":"813","street":"GREENWICH STREET","address":"813 GREENWICH STREET"},"id":119510},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00821072049433,40.738288366130334]},"properties":{"centerline":440,"number":"786","street":"WASHINGTON STREET","address":"786 WASHINGTON STREET"},"id":119515},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00654229115526,40.738282276749004]},"properties":{"centerline":478,"number":"818","street":"GREENWICH STREET","address":"818 GREENWICH STREET"},"id":119516},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00708243250834,40.738184678332665]},"properties":{"centerline":690,"number":"75","street":"JANE STREET","address":"75 JANE STREET"},"id":119523},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00760993361467,40.737583450976665]},"properties":{"centerline":850,"number":"359","street":"WEST 12 STREET","address":"359 WEST 12 STREET"},"id":119641},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0071195364,40.737576676553]},"properties":{"centerline":850,"number":"345","street":"WEST 12 STREET","address":"345 WEST 12 STREET"},"id":119643},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00704242289034,40.73757650719234]},"properties":{"centerline":850,"number":"343","street":"WEST 12 STREET","address":"343 WEST 12 STREET"},"id":119649},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00697246193867,40.737602249999]},"properties":{"centerline":850,"number":"99","street":"WEST 12 STREET","address":"99 WEST 12 STREET"},"id":119650},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00827959179901,40.737459648274665]},"properties":{"centerline":438,"number":"768","street":"WASHINGTON STREET","address":"768 WASHINGTON STREET"},"id":119662},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00600753724568,40.73748352815733]},"properties":{"centerline":851,"number":"11","street":"WEST 12 STREET","address":"11 WEST 12 STREET"},"id":119663},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00743444450211,40.7400344768715]},"properties":{"centerline":77467,"number":"28","street":"LITTLE WEST 12 STREET","address":"28 LITTLE WEST 12 STREET"},"id":119714},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00741904973967,40.73748606857]},"properties":{"centerline":850,"number":"110","street":"WEST 12 STREET","address":"110 WEST 12 STREET"},"id":119669},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007732914463,40.73751272629966]},"properties":{"centerline":850,"number":"360","street":"WEST 12 STREET","address":"360 WEST 12 STREET"},"id":119677},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00668501853933,40.73748302007467]},"properties":{"centerline":850,"number":"92","street":"WEST 12 STREET","address":"92 WEST 12 STREET"},"id":119679},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00779355317333,40.73748884930634]},"properties":{"centerline":850,"number":"120","street":"WEST 12 STREET","address":"120 WEST 12 STREET"},"id":119685},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00622770190233,40.73747844733166]},"properties":{"centerline":851,"number":"5","street":"WEST 12 STREET","address":"5 WEST 12 STREET"},"id":119686},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00635980069633,40.73750029487834]},"properties":{"centerline":851,"number":"326","street":"WEST 12 STREET","address":"326 WEST 12 STREET"},"id":119694},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00657169520875,40.73713566008625]},"properties":{"centerline":476,"number":"788","street":"GREENWICH STREET","address":"788 GREENWICH STREET"},"id":119723},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00641791522499,40.737095690707]},"properties":{"centerline":476,"number":"785","street":"GREENWICH STREET","address":"785 GREENWICH STREET"},"id":119726},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00590270757665,40.73709586006867]},"properties":{"centerline":155684,"number":"599","street":"HUDSON STREET","address":"599 HUDSON STREET"},"id":119727},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00592263460332,40.73696340137567]},"properties":{"centerline":155684,"number":"595","street":"HUDSON STREET","address":"595 HUDSON STREET"},"id":119752},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0059346702325,40.7368964333415]},"properties":{"centerline":155684,"number":"593","street":"HUDSON STREET","address":"593 HUDSON STREET"},"id":119754},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00720424950167,40.73993413434733]},"properties":{"centerline":77467,"number":"22","street":"LITTLE WEST 12 STREET","address":"22 LITTLE WEST 12 STREET"},"id":119761},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0059580443415,40.7367718065975]},"properties":{"centerline":155684,"number":"589","street":"HUDSON STREET","address":"589 HUDSON STREET"},"id":119779},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00908559560766,40.736668220085996]},"properties":{"centerline":79635,"number":"4","street":"BETHUNE STREET","address":"4 BETHUNE STREET"},"id":119794},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00776916742319,40.736339892330804]},"properties":{"centerline":79733,"number":"115","street":"BANK STREET","address":"115 BANK STREET"},"id":119837},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.008182696998,40.736495596712004]},"properties":{"centerline":437,"number":"739","street":"WASHINGTON STREET","address":"739 WASHINGTON STREET"},"id":119821},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0081729739904,40.7366048105806]},"properties":{"centerline":437,"number":"743","street":"WASHINGTON STREET","address":"743 WASHINGTON STREET"},"id":119806},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00702834129333,40.739859956991666]},"properties":{"centerline":77467,"number":"16","street":"LITTLE WEST 12 STREET","address":"16 LITTLE WEST 12 STREET"},"id":119796},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00597705483267,40.73664099499167]},"properties":{"centerline":79734,"number":"585","street":"BANK STREET","address":"585 BANK STREET"},"id":119805},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00666959583766,40.73658760329]},"properties":{"centerline":475,"number":"774","street":"GREENWICH STREET","address":"774 GREENWICH STREET"},"id":119811},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007095173001,40.73988485214067]},"properties":{"centerline":77467,"number":"18","street":"LITTLE WEST 12 STREET","address":"18 LITTLE WEST 12 STREET"},"id":119814},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00693647563467,40.736454145018335]},"properties":{"centerline":79733,"number":"93","street":"BANK STREET","address":"93 BANK STREET"},"id":119822},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00837659835832,40.736410279868004]},"properties":{"centerline":437,"number":"738","street":"WASHINGTON STREET","address":"738 WASHINGTON STREET"},"id":119832},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00729700922966,40.73640604577833]},"properties":{"centerline":79733,"number":"103","street":"BANK STREET","address":"103 BANK STREET"},"id":119829},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00818794965734,40.73638182678233]},"properties":{"centerline":437,"number":"735","street":"WASHINGTON STREET","address":"735 WASHINGTON STREET"},"id":119836},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.006805550307,40.739762281546]},"properties":{"centerline":77467,"number":"10","street":"LITTLE WEST 12 STREET","address":"10 LITTLE WEST 12 STREET"},"id":119853},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00673441588867,40.739736158526334]},"properties":{"centerline":77467,"number":"8","street":"LITTLE WEST 12 STREET","address":"8 LITTLE WEST 12 STREET"},"id":119854},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00662645697601,40.73945960106767]},"properties":{"centerline":72623,"number":"1","street":"GANSEVOORT STREET","address":"1 GANSEVOORT STREET"},"id":119862},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007742702961,40.736919469494]},"properties":{"centerline":79636,"number":"25","street":"BETHUNE STREET","address":"25 BETHUNE STREET"},"id":119755},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00817042589159,40.7366619197852]},"properties":{"centerline":437,"number":"745","street":"WASHINGTON STREET","address":"745 WASHINGTON STREET"},"id":119797},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00814963877221,40.736879889518605]},"properties":{"centerline":79636,"number":"753","street":"BETHUNE STREET","address":"753 BETHUNE STREET"},"id":119757},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00815801385866,40.7367723782815]},"properties":{"centerline":437,"number":"749","street":"WASHINGTON STREET","address":"749 WASHINGTON STREET"},"id":119780},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007794111967,40.7370268027485]},"properties":{"centerline":79636,"number":"32","street":"BETHUNE STREET","address":"32 BETHUNE STREET"},"id":119729},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00746176950625,40.737026358173125]},"properties":{"centerline":79636,"number":"22","street":"BETHUNE STREET","address":"22 BETHUNE STREET"},"id":119741},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00774257523672,40.73691856219614]},"properties":{"centerline":79636,"number":"25","street":"BETHUNE STREET","address":"25 BETHUNE STREET"},"id":119795},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00748399518366,40.736915389386674]},"properties":{"centerline":79636,"number":"19","street":"BETHUNE STREET","address":"19 BETHUNE STREET"},"id":119773},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00817476212983,40.73655161361716]},"properties":{"centerline":437,"number":"741","street":"WASHINGTON STREET","address":"741 WASHINGTON STREET"},"id":119815},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00767391547527,40.7370265487055]},"properties":{"centerline":79636,"number":"28","street":"BETHUNE STREET","address":"28 BETHUNE STREET"},"id":119732},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00789402425275,40.73691553182075]},"properties":{"centerline":79636,"number":"29","street":"BETHUNE STREET","address":"29 BETHUNE STREET"},"id":119770},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0081607699392,40.7367122205562]},"properties":{"centerline":437,"number":"747","street":"WASHINGTON STREET","address":"747 WASHINGTON STREET"},"id":119784},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00648762273886,40.73754959445074],[-74.00820601819836,40.73755381659396]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03080","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0031988","SegCount":"1","LocStatus":null,"XFrom":982452,"YFrom":207986,"XTo":981976,"YTo":207987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020312","NodeIDTo":"0020160","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":850,"GenericID":725,"NYPDID":null,"LegacyID":"0031988","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"328","LHi_Hyphen":"370","RLo_Hyphen":"333","RHi_Hyphen":"371","FromLeft":328,"ToLeft":370,"FromRight":333,"ToRight":371,"Join_ID":"1482001000000","SHAPE_Leng":476.212215},"id":850},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00647053748419,40.738138725775784],[-74.00646034468079,40.73875458341208]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"03020","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0032017","SegCount":"1","LocStatus":null,"XFrom":982457,"YFrom":208201,"XTo":982460,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020326","NodeIDTo":"0020327","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":478,"GenericID":365,"NYPDID":null,"LegacyID":"0032017","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"816","LHi_Hyphen":"830","RLo_Hyphen":"809","RHi_Hyphen":"823","FromLeft":816,"ToLeft":830,"FromRight":809,"ToRight":823,"Join_ID":"1271001000000","SHAPE_Leng":224.394188},"id":478},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00549494066132,40.73875392208171],[-74.00539036039231,40.739411972516855]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00050","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0032031","SegCount":"1","LocStatus":"X","XFrom":982727,"YFrom":208425,"XTo":982756,"YTo":208664,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020333","NodeIDTo":"0020334","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":630,"GenericID":514,"NYPDID":null,"LegacyID":"0032031","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"637","LHi_Hyphen":"649","RLo_Hyphen":"638","RHi_Hyphen":"650","FromLeft":637,"ToLeft":649,"FromRight":638,"ToRight":650,"Join_ID":"1286001000000","SHAPE_Leng":241.493884},"id":630},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00417529780091,40.738134346937464],[-74.00559149564992,40.73813833923738]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00030","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0032269","SegCount":"1","LocStatus":null,"XFrom":983093,"YFrom":208199,"XTo":982700,"YTo":208200,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020458","NodeIDTo":"0020332","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":692,"GenericID":572,"NYPDID":null,"LegacyID":"0032269","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"40","LHi_Hyphen":"56","RLo_Hyphen":"33","RHi_Hyphen":"57","FromLeft":40,"ToLeft":56,"FromRight":33,"ToRight":57,"Join_ID":"1292001000000","SHAPE_Leng":392.462577},"id":692},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00482959326249,40.737547469687186],[-74.00568704529502,40.73755187923092]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03060","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0032008","SegCount":"1","LocStatus":null,"XFrom":982912,"YFrom":207985,"XTo":982674,"YTo":207987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020322","NodeIDTo":"0020317","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":854,"GenericID":728,"NYPDID":null,"LegacyID":"0032008","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"308","LHi_Hyphen":"314","RLo_Hyphen":"297","RHi_Hyphen":"311","FromLeft":308,"ToLeft":314,"FromRight":297,"ToRight":311,"Join_ID":"1482001000000","SHAPE_Leng":237.626528},"id":854},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00482959326249,40.737547469687186],[-74.00417529780091,40.738134346937464]]},"properties":{"Street":"8 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2370","SeqNum":"01010","StreetCode":"110810","SAFStreetC":null,"SegmentID":"0032009","SegCount":"2","LocStatus":null,"XFrom":982912,"YFrom":207985,"XTo":983093,"YTo":208199,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020322","NodeIDTo":"0020458","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1099,"GenericID":966,"NYPDID":null,"LegacyID":"0032009","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"11","LHi_Hyphen":"29","RLo_Hyphen":"22","RHi_Hyphen":"40","FromLeft":11,"ToLeft":29,"FromRight":22,"ToRight":40,"Join_ID":"1237002000000","SHAPE_Leng":280.348473},"id":1099},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00482959326249,40.737547469687186],[-74.00417529780091,40.738134346937464]]},"properties":{"Street":"8 AVENUE","SAFStreetN":"8 AVENUE","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"S","FaceCode":"2370","SeqNum":"01010","StreetCode":"110810","SAFStreetC":"110810","SegmentID":"0032009","SegCount":"2","LocStatus":null,"XFrom":982912,"YFrom":207985,"XTo":983093,"YTo":208199,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020322","NodeIDTo":"0020458","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1099,"GenericID":966,"NYPDID":null,"LegacyID":"0032009","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"40","RHi_Hyphen":"40","FromLeft":0,"ToLeft":0,"FromRight":40,"ToRight":40,"Join_ID":"10000000000000S","SHAPE_Leng":280.348473},"id":1099},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00155531466707,40.74108002587859],[-74.00441531105689,40.74228411844143]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4840","SeqNum":"04040","StreetCode":"134090","SAFStreetC":null,"SegmentID":"0032299","SegCount":"2","LocStatus":null,"XFrom":983819,"YFrom":209272,"XTo":983026,"YTo":209711,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020473","NodeIDTo":"0020470","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1377,"GenericID":1241,"NYPDID":null,"LegacyID":"0032299","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"300","LHi_Hyphen":"398","RLo_Hyphen":"301","RHi_Hyphen":"399","FromLeft":300,"ToLeft":398,"FromRight":301,"ToRight":399,"Join_ID":"1484001000000","SHAPE_Leng":905.840065},"id":1377},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00155531466707,40.74108002587859],[-74.00441531105689,40.74228411844143]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":"DR G B KELLY PLAYGROUND","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"N","FaceCode":"4840","SeqNum":"04040","StreetCode":"134090","SAFStreetC":"111795","SegmentID":"0032299","SegCount":"2","LocStatus":null,"XFrom":983819,"YFrom":209272,"XTo":983026,"YTo":209711,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020473","NodeIDTo":"0020470","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1377,"GenericID":1241,"NYPDID":null,"LegacyID":"0032299","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"11179501000000N","SHAPE_Leng":905.840065},"id":1377},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00820401890236,40.7421475181741],[-74.00789568898671,40.74257005072403]]},"properties":{"Street":"10 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4340","SeqNum":"00035","StreetCode":"111010","SAFStreetC":null,"SegmentID":"0164192","SegCount":"1","LocStatus":"X","XFrom":981977,"YFrom":209661,"XTo":982062,"YTo":209815,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020183","NodeIDTo":"0077855","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1313,"GenericID":1178,"NYPDID":null,"LegacyID":"0164192","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"55","LHi_Hyphen":"71","RLo_Hyphen":"58","RHi_Hyphen":"70","FromLeft":55,"ToLeft":71,"FromRight":58,"ToRight":70,"Join_ID":"1434002000000","SHAPE_Leng":176.062744},"id":1313},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00529178846817,40.740023223408244],[-74.00512553519455,40.740850212999504]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00070","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0032035","SegCount":"1","LocStatus":"X","XFrom":982784,"YFrom":208887,"XTo":982830,"YTo":209188,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020335","NodeIDTo":"0020341","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":632,"GenericID":516,"NYPDID":null,"LegacyID":"0032035","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"669","LHi_Hyphen":"685","RLo_Hyphen":"666","RHi_Hyphen":"684","FromLeft":669,"ToLeft":685,"FromRight":666,"ToRight":684,"Join_ID":"1286001000000","SHAPE_Leng":304.800487},"id":632},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00837037995568,40.73550554607348],[-74.00832244848465,40.7361873506291]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"03330","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031721","SegCount":"1","LocStatus":null,"XFrom":981930,"YFrom":207241,"XTo":981944,"YTo":207490,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020157","NodeIDTo":"0020158","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":436,"GenericID":323,"NYPDID":null,"LegacyID":"0031721","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"720","LHi_Hyphen":"732","RLo_Hyphen":"719","RHi_Hyphen":"731","FromLeft":720,"ToLeft":732,"FromRight":719,"ToRight":731,"Join_ID":"1460001000000","SHAPE_Leng":248.757776},"id":436},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00832244848465,40.7361873506291],[-74.00825320571238,40.736960180316515]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"03340","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031723","SegCount":"1","LocStatus":null,"XFrom":981944,"YFrom":207490,"XTo":981963,"YTo":207771,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020158","NodeIDTo":"0020159","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":437,"GenericID":324,"NYPDID":null,"LegacyID":"0031723","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"734","LHi_Hyphen":"754","RLo_Hyphen":"733","RHi_Hyphen":"753","FromLeft":734,"ToLeft":754,"FromRight":733,"ToRight":753,"Join_ID":"1460001000000","SHAPE_Leng":282.219344},"id":437},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0098436227589,40.739379962374116],[-74.01122810571803,40.739352537848]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00050","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0164205","SegCount":"1","LocStatus":null,"XFrom":981522,"YFrom":208653,"XTo":981495,"YTo":208653,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094853","NodeIDTo":"0020170","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72620,"GenericID":63115,"NYPDID":null,"LegacyID":"0164205","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1257501000000","SHAPE_Leng":26.755357},"id":72620},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0067990701103,40.73572292368411],[-74.00662031977012,40.73643169686715]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"02330","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0031983","SegCount":"3","LocStatus":null,"XFrom":982366,"YFrom":207320,"XTo":982415,"YTo":207579,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020309","NodeIDTo":"0020310","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":474,"GenericID":361,"NYPDID":null,"LegacyID":"0031983","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"752","LHi_Hyphen":"770","RLo_Hyphen":"753","RHi_Hyphen":"769","FromLeft":752,"ToLeft":770,"FromRight":753,"ToRight":769,"Join_ID":"1271001000000","SHAPE_Leng":262.936951},"id":474},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0067990701103,40.73572292368411],[-74.00662031977012,40.73643169686715]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":"GREENWICH STREET","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"S","FaceCode":"2710","SeqNum":"02330","StreetCode":"121790","SAFStreetC":"121790","SegmentID":"0031983","SegCount":"3","LocStatus":null,"XFrom":982366,"YFrom":207320,"XTo":982415,"YTo":207579,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020309","NodeIDTo":"0020310","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":474,"GenericID":361,"NYPDID":null,"LegacyID":"0031983","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"769","RHi_Hyphen":"769","FromLeft":0,"ToLeft":0,"FromRight":769,"ToRight":769,"Join_ID":"10000000000000S","SHAPE_Leng":262.936951},"id":474},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0067990701103,40.73572292368411],[-74.00662031977012,40.73643169686715]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":"GREENWICH STREET","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"S","FaceCode":"2710","SeqNum":"02330","StreetCode":"121790","SAFStreetC":"121790","SegmentID":"0031983","SegCount":"3","LocStatus":null,"XFrom":982366,"YFrom":207320,"XTo":982415,"YTo":207579,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020309","NodeIDTo":"0020310","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":474,"GenericID":361,"NYPDID":null,"LegacyID":"0031983","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"769","RHi_Hyphen":"769","FromLeft":0,"ToLeft":0,"FromRight":769,"ToRight":769,"Join_ID":"10000000000000S","SHAPE_Leng":262.936951},"id":474},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00586426261837,40.740261442858106],[-74.00536222024918,40.74094950293069]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00030","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0032027","SegCount":"1","LocStatus":null,"XFrom":982625,"YFrom":208974,"XTo":982764,"YTo":209225,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020331","NodeIDTo":"0020339","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1443,"GenericID":1304,"NYPDID":null,"LegacyID":"0032027","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"29","LHi_Hyphen":"45","RLo_Hyphen":"22","RHi_Hyphen":"42","FromLeft":29,"ToLeft":45,"FromRight":22,"ToRight":42,"Join_ID":"1335001000000","SHAPE_Leng":286.699209},"id":1443},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00662031977012,40.73643169686715],[-74.00832244848465,40.7361873506291]]},"properties":{"Street":"BANK STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0610","SeqNum":"00060","StreetCode":"112510","SAFStreetC":null,"SegmentID":"0031984","SegCount":"1","LocStatus":"X","XFrom":982415,"YFrom":207579,"XTo":981944,"YTo":207490,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020310","NodeIDTo":"0020158","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79733,"GenericID":68958,"NYPDID":null,"LegacyID":"0031984","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"100","LHi_Hyphen":"138","RLo_Hyphen":"101","RHi_Hyphen":"135","FromLeft":100,"ToLeft":138,"FromRight":101,"ToRight":135,"Join_ID":"1061001020000","SHAPE_Leng":480.037497},"id":79733},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00648762273886,40.73754959445074],[-74.00647053748419,40.738138725775784]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"03010","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0031989","SegCount":"1","LocStatus":null,"XFrom":982452,"YFrom":207986,"XTo":982457,"YTo":208201,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020312","NodeIDTo":"0020326","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":477,"GenericID":364,"NYPDID":null,"LegacyID":"0031989","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"800","LHi_Hyphen":"814","RLo_Hyphen":"797","RHi_Hyphen":"807","FromLeft":800,"ToLeft":814,"FromRight":797,"ToRight":807,"Join_ID":"1271001000000","SHAPE_Leng":214.691366},"id":477},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00559149564992,40.73813833923738],[-74.00549494066132,40.73875392208171]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00040","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0032029","SegCount":"1","LocStatus":"X","XFrom":982700,"YFrom":208200,"XTo":982727,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020332","NodeIDTo":"0020333","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":629,"GenericID":513,"NYPDID":null,"LegacyID":"0032029","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"623","LHi_Hyphen":"635","RLo_Hyphen":"624","RHi_Hyphen":"636","FromLeft":623,"ToLeft":635,"FromRight":624,"ToRight":636,"Join_ID":"1286001000000","SHAPE_Leng":225.866808},"id":629},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00512616445451,40.73596173520952],[-74.00531381040828,40.73661143389406]]},"properties":{"Street":"BLEECKER STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0710","SeqNum":"01140","StreetCode":"113310","SAFStreetC":null,"SegmentID":"0032007","SegCount":"2","LocStatus":null,"XFrom":982829,"YFrom":207407,"XTo":982777,"YTo":207644,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020321","NodeIDTo":"0020318","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1072,"GenericID":939,"NYPDID":null,"LegacyID":"0032007","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"402","LHi_Hyphen":"416","RLo_Hyphen":"403","RHi_Hyphen":"417","FromLeft":402,"ToLeft":416,"FromRight":403,"ToRight":417,"Join_ID":"1071001000000","SHAPE_Leng":242.350632},"id":1072},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00512616445451,40.73596173520952],[-74.00531381040828,40.73661143389406]]},"properties":{"Street":"BLEECKER STREET","SAFStreetN":"BLEECKER PLAYGROUND","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"N","FaceCode":"0710","SeqNum":"01140","StreetCode":"113310","SAFStreetC":"112430","SegmentID":"0032007","SegCount":"2","LocStatus":null,"XFrom":982829,"YFrom":207407,"XTo":982777,"YTo":207644,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020321","NodeIDTo":"0020318","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1072,"GenericID":939,"NYPDID":null,"LegacyID":"0032007","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"11243001000000N","SHAPE_Leng":242.350632},"id":1072},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386573442286,40.73754405756805],[-74.00387408005533,40.738138653001656]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"03140","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032239","SegCount":"1","LocStatus":null,"XFrom":983179,"YFrom":207984,"XTo":983176,"YTo":208200,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020443","NodeIDTo":"0020459","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1259,"GenericID":1124,"NYPDID":null,"LegacyID":"0032239","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"320","LHi_Hyphen":"332","RLo_Hyphen":"321","RHi_Hyphen":"335","FromLeft":320,"ToLeft":332,"FromRight":321,"ToRight":335,"Join_ID":"1479001000000","SHAPE_Leng":216.642243},"id":1259},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386493162624,40.73941811233957],[-74.00539036039231,40.739411972516855]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00010","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0032277","SegCount":"1","LocStatus":null,"XFrom":983179,"YFrom":208667,"XTo":982756,"YTo":208664,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020462","NodeIDTo":"0020334","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72626,"GenericID":63120,"NYPDID":null,"LegacyID":"0032277","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"2","LHi_Hyphen":"26","RLo_Hyphen":"1","RHi_Hyphen":"23","FromLeft":2,"ToLeft":26,"FromRight":1,"ToRight":23,"Join_ID":"1257501000000","SHAPE_Leng":422.728001},"id":72626},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386493162624,40.73941811233957],[-74.00529178846817,40.740023223408244]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04020","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0032278","SegCount":"1","LocStatus":null,"XFrom":983179,"YFrom":208667,"XTo":982784,"YTo":208887,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020462","NodeIDTo":"0020335","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79757,"GenericID":68981,"NYPDID":null,"LegacyID":"0032278","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"316","LHi_Hyphen":"350","RLo_Hyphen":"321","RHi_Hyphen":"349","FromLeft":316,"ToLeft":350,"FromRight":321,"ToRight":349,"Join_ID":"1482501000000","SHAPE_Leng":452.711487},"id":79757},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00512553519455,40.740850212999504],[-74.00536222024918,40.74094950293069]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03025","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0032044","SegCount":"1","LocStatus":"X","XFrom":982830,"YFrom":209188,"XTo":982764,"YTo":209225,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020341","NodeIDTo":"0020339","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79851,"GenericID":69070,"NYPDID":null,"LegacyID":"0032044","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1483001000000","SHAPE_Leng":74.902428},"id":79851},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00825320571238,40.736960180316515],[-74.01143951115034,40.73696626283133]]},"properties":{"Street":"BETHUNE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0695","SeqNum":"00035","StreetCode":"113210","SAFStreetC":null,"SegmentID":"0164179","SegCount":"1","LocStatus":null,"XFrom":981963,"YFrom":207771,"XTo":981522,"YTo":207774,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020159","NodeIDTo":"0094586","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79635,"GenericID":68863,"NYPDID":null,"LegacyID":"0164179","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"49","LHi_Hyphen":"77","RLo_Hyphen":"52","RHi_Hyphen":"80","FromLeft":49,"ToLeft":77,"FromRight":52,"ToRight":80,"Join_ID":"1069501000000","SHAPE_Leng":440.781612},"id":79635},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00952037573522,40.740354656339825],[-74.00820401890236,40.7421475181741]]},"properties":{"Street":"10 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4340","SeqNum":"00030","StreetCode":"111010","SAFStreetC":null,"SegmentID":"0031752","SegCount":"1","LocStatus":null,"XFrom":981831,"YFrom":209405,"XTo":981977,"YTo":209661,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094863","NodeIDTo":"0020183","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1315,"GenericID":1180,"NYPDID":null,"LegacyID":"0031752","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"1","LHi_Hyphen":"53","RLo_Hyphen":"38","RHi_Hyphen":"56","FromLeft":1,"ToLeft":53,"FromRight":38,"ToRight":56,"Join_ID":"1434002000000","SHAPE_Leng":294.534903},"id":1315},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00698045525886,40.73500216475321],[-74.0067990701103,40.73572292368411]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"02320","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0031981","SegCount":"1","LocStatus":null,"XFrom":982315,"YFrom":207058,"XTo":982366,"YTo":207320,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020308","NodeIDTo":"0020309","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":473,"GenericID":360,"NYPDID":null,"LegacyID":"0031981","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"738","LHi_Hyphen":"750","RLo_Hyphen":"733","RHi_Hyphen":"751","FromLeft":738,"ToLeft":750,"FromRight":733,"ToRight":751,"Join_ID":"1271001000000","SHAPE_Leng":267.363202},"id":473},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00646034468079,40.73875458341208],[-74.00645011885481,40.739404029622065]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"03030","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0032019","SegCount":"1","LocStatus":null,"XFrom":982460,"YFrom":208425,"XTo":982463,"YTo":208662,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020327","NodeIDTo":"0020328","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":479,"GenericID":366,"NYPDID":null,"LegacyID":"0032019","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"832","LHi_Hyphen":"846","RLo_Hyphen":"825","RHi_Hyphen":"835","FromLeft":832,"ToLeft":846,"FromRight":825,"ToRight":835,"Join_ID":"1271001000000","SHAPE_Leng":236.630778},"id":479},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00493121749336,40.73530368858059],[-74.00512616445451,40.73596173520952]]},"properties":{"Street":"BLEECKER STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0710","SeqNum":"01130","StreetCode":"113310","SAFStreetC":null,"SegmentID":"0032005","SegCount":"1","LocStatus":null,"XFrom":982883,"YFrom":207168,"XTo":982829,"YTo":207407,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020320","NodeIDTo":"0020321","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1071,"GenericID":938,"NYPDID":null,"LegacyID":"0032005","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"386","LHi_Hyphen":"400","RLo_Hyphen":"385","RHi_Hyphen":"401","FromLeft":386,"ToLeft":400,"FromRight":385,"ToRight":401,"Join_ID":"1071001000000","SHAPE_Leng":245.759024},"id":1071},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00508163528107,40.741335388687425],[-74.00485969251613,40.74164623857275]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"G","IncExFlag":null,"RB_Layer":"G","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00045","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0032043","SegCount":"1","LocStatus":null,"XFrom":982842,"YFrom":209365,"XTo":982903,"YTo":209478,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020340","NodeIDTo":"0020342","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":0,"GenericID":143233,"NYPDID":null,"LegacyID":"0032043","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"59","LHi_Hyphen":"67","RLo_Hyphen":"56","RHi_Hyphen":"66","FromLeft":59,"ToLeft":67,"FromRight":56,"ToRight":66,"Join_ID":"1335001000000","SHAPE_Leng":128.874528},"id":0},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00529178846817,40.740023223408244],[-74.00586426261837,40.740261442858106]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04030","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0032034","SegCount":"1","LocStatus":null,"XFrom":982784,"YFrom":208887,"XTo":982625,"YTo":208974,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020335","NodeIDTo":"0020331","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79759,"GenericID":68983,"NYPDID":null,"LegacyID":"0032034","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"352","LHi_Hyphen":"398","RLo_Hyphen":"351","RHi_Hyphen":"399","FromLeft":352,"ToLeft":398,"FromRight":351,"ToRight":399,"Join_ID":"1482501000000","SHAPE_Leng":180.829967},"id":79759},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386030242889,40.73839487498835],[-74.0034464775447,40.73875606346099]]},"properties":{"Street":"8 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2370","SeqNum":"01030","StreetCode":"110810","SAFStreetC":null,"SegmentID":"0032274","SegCount":"1","LocStatus":null,"XFrom":983180,"YFrom":208294,"XTo":983295,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020460","NodeIDTo":"0020463","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1102,"GenericID":969,"NYPDID":null,"LegacyID":"0032274","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"42","RHi_Hyphen":"60","FromLeft":0,"ToLeft":0,"FromRight":42,"ToRight":60,"Join_ID":"1237002000000","SHAPE_Leng":174.550565},"id":1102},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0035273198336,40.7361785204353],[-74.00512616445451,40.73596173520952]]},"properties":{"Street":"HAMMOND STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4815","SeqNum":"04060","StreetCode":"133990","SAFStreetC":null,"SegmentID":"0032240","SegCount":"1","LocStatus":"X","XFrom":983272,"YFrom":207486,"XTo":982829,"YTo":207407,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020444","NodeIDTo":"0020321","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79940,"GenericID":69156,"NYPDID":null,"LegacyID":"0032240","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"254","LHi_Hyphen":"286","RLo_Hyphen":"255","RHi_Hyphen":"287","FromLeft":254,"ToLeft":286,"FromRight":255,"ToRight":287,"Join_ID":"1481501000000","SHAPE_Leng":450.07339},"id":79940},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0033415996922,40.735538958413066],[-74.00493121749336,40.73530368858059]]},"properties":{"Street":"PERRY STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3695","SeqNum":"00040","StreetCode":"128690","SAFStreetC":null,"SegmentID":"0032246","SegCount":"1","LocStatus":null,"XFrom":983324,"YFrom":207253,"XTo":982883,"YTo":207168,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020447","NodeIDTo":"0020320","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":809,"GenericID":686,"NYPDID":null,"LegacyID":"0032246","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"54","LHi_Hyphen":"90","RLo_Hyphen":"53","RHi_Hyphen":"87","FromLeft":54,"ToLeft":90,"FromRight":53,"ToRight":87,"Join_ID":"1369501000000","SHAPE_Leng":448.797889},"id":809},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00596018046932,40.73584500737375],[-74.00582871050361,40.7365338510506]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00470","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0031993","SegCount":"1","LocStatus":"X","XFrom":982598,"YFrom":207365,"XTo":982635,"YTo":207616,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020314","NodeIDTo":"0020315","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":625,"GenericID":509,"NYPDID":null,"LegacyID":"0031993","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"569","LHi_Hyphen":"583","RLo_Hyphen":"576","RHi_Hyphen":"588","FromLeft":569,"ToLeft":583,"FromRight":576,"ToRight":588,"Join_ID":"1286001000000","SHAPE_Leng":253.598346},"id":625},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00647053748419,40.738138725775784],[-74.0081539049562,40.73814168972074]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00050","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0032016","SegCount":"1","LocStatus":null,"XFrom":982457,"YFrom":208201,"XTo":981990,"YTo":208202,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020326","NodeIDTo":"0020171","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":690,"GenericID":570,"NYPDID":null,"LegacyID":"0032016","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"68","LHi_Hyphen":"106","RLo_Hyphen":"69","RHi_Hyphen":"95","FromLeft":68,"ToLeft":106,"FromRight":69,"ToRight":95,"Join_ID":"1292001000000","SHAPE_Leng":466.499742},"id":690},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00645011885481,40.739404029622065],[-74.00633307505748,40.73963109900155]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00010","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0032021","SegCount":"1","LocStatus":null,"XFrom":982463,"YFrom":208662,"XTo":982495,"YTo":208744,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020328","NodeIDTo":"0020329","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1445,"GenericID":1306,"NYPDID":null,"LegacyID":"0032021","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"1","LHi_Hyphen":"7","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":1,"ToLeft":7,"FromRight":0,"ToRight":0,"Join_ID":"1335001000000","SHAPE_Leng":88.859607},"id":1445},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00568704529502,40.73755187923092],[-74.00648762273886,40.73754959445074]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03070","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0031998","SegCount":"1","LocStatus":null,"XFrom":982674,"YFrom":207987,"XTo":982452,"YTo":207986,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020317","NodeIDTo":"0020312","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":851,"GenericID":726,"NYPDID":null,"LegacyID":"0031998","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"316","LHi_Hyphen":"326","RLo_Hyphen":"313","RHi_Hyphen":"331","FromLeft":316,"ToLeft":326,"FromRight":313,"ToRight":331,"Join_ID":"1482001000000","SHAPE_Leng":221.861304},"id":851},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00531381040828,40.73661143389406],[-74.00533198661,40.736663123709995],[-74.00535817232885,40.736712785118534],[-74.00539199046132,40.73675970290711],[-74.00543295427882,40.73680320139942],[-74.00548047356594,40.73684265407314],[-74.00553386396341,40.736877492733036]]},"properties":{"Street":"BLEECKER STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0710","SeqNum":"01150","StreetCode":"113310","SAFStreetC":null,"SegmentID":"0032001","SegCount":"1","LocStatus":null,"XFrom":982777,"YFrom":207644,"XTo":982716,"YTo":207741,"ArcCenterX":982618,"ArcCenterY":207612,"CurveFlag":"R","Radius":163,"NodeIDFrom":"0020318","NodeIDTo":"0020319","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1073,"GenericID":940,"NYPDID":null,"LegacyID":"0032001","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"419","RHi_Hyphen":"425","FromLeft":0,"ToLeft":0,"FromRight":419,"ToRight":425,"Join_ID":"1071001000000","SHAPE_Leng":117.035951},"id":1073},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386573442286,40.73754405756805],[-74.00482959326249,40.737547469687186]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03050","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0032238","SegCount":"1","LocStatus":null,"XFrom":983179,"YFrom":207984,"XTo":982912,"YTo":207985,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020443","NodeIDTo":"0020322","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":855,"GenericID":729,"NYPDID":null,"LegacyID":"0032238","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"284","LHi_Hyphen":"306","RLo_Hyphen":"283","RHi_Hyphen":"295","FromLeft":284,"ToLeft":306,"FromRight":283,"ToRight":295,"Join_ID":"1482001000000","SHAPE_Leng":267.111955},"id":855},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00385929330595,40.73875314202771],[-74.00386493162624,40.73941811233957]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"04020","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032276","SegCount":"1","LocStatus":null,"XFrom":983181,"YFrom":208424,"XTo":983179,"YTo":208667,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020461","NodeIDTo":"0020462","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1262,"GenericID":1127,"NYPDID":null,"LegacyID":"0032276","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"340","LHi_Hyphen":"356","RLo_Hyphen":"337","RHi_Hyphen":"357","FromLeft":340,"ToLeft":356,"FromRight":337,"ToRight":357,"Join_ID":"1479001000000","SHAPE_Leng":242.27477},"id":1262},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00387408005533,40.738138653001656],[-74.00417529780091,40.738134346937464]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00020","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0032271","SegCount":"1","LocStatus":null,"XFrom":983176,"YFrom":208200,"XTo":983093,"YTo":208199,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020459","NodeIDTo":"0020458","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":693,"GenericID":573,"NYPDID":null,"LegacyID":"0032271","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"36","LHi_Hyphen":"38","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":36,"ToLeft":38,"FromRight":0,"ToRight":0,"Join_ID":"1292001000000","SHAPE_Leng":83.488869},"id":693},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00371403987974,40.736838361400466],[-74.00531381040828,40.73661143389406]]},"properties":{"Street":"BANK STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0610","SeqNum":"00030","StreetCode":"112510","SAFStreetC":null,"SegmentID":"0032242","SegCount":"1","LocStatus":null,"XFrom":983221,"YFrom":207727,"XTo":982777,"YTo":207644,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020445","NodeIDTo":"0020318","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":96900,"GenericID":85135,"NYPDID":null,"LegacyID":"0032242","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"54","LHi_Hyphen":"88","RLo_Hyphen":"49","RHi_Hyphen":"87","FromLeft":54,"ToLeft":88,"FromRight":49,"ToRight":87,"Join_ID":"1061001000000","SHAPE_Leng":450.984484},"id":96900},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00582871050361,40.7365338510506],[-74.00578979039348,40.736595815215445],[-74.0057466086405,40.73665612373939],[-74.00569928654873,40.736714607190706],[-74.00564795721493,40.73677110135275],[-74.00559276466956,40.73682544742748],[-74.00553386396341,40.736877492733036]]},"properties":{"Street":"8 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2370","SeqNum":"00005","StreetCode":"110810","SAFStreetC":null,"SegmentID":"0104937","SegCount":"1","LocStatus":null,"XFrom":982635,"YFrom":207616,"XTo":982716,"YTo":207741,"ArcCenterX":983066,"ArcCenterY":207424,"CurveFlag":"L","Radius":472,"NodeIDFrom":"0020315","NodeIDTo":"0020319","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1150,"GenericID":1017,"NYPDID":null,"LegacyID":"0104937","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1237002000000","SHAPE_Leng":150.136139},"id":1150},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00810315475123,40.73875862191874],[-74.01128149826319,40.73874986035208]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2825","SeqNum":"00060","StreetCode":"123090","SAFStreetC":null,"SegmentID":"0164200","SegCount":"1","LocStatus":null,"XFrom":982004,"YFrom":208426,"XTo":981587,"YTo":208418,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020323","NodeIDTo":"0094816","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99496,"GenericID":87626,"NYPDID":null,"LegacyID":"0164200","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"96","LHi_Hyphen":"122","RLo_Hyphen":"91","RHi_Hyphen":"117","FromLeft":96,"ToLeft":122,"FromRight":91,"ToRight":117,"Join_ID":"1282501000000","SHAPE_Leng":417.288333},"id":99496},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00825320571238,40.736960180316515],[-74.00820601819836,40.73755381659396]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"03350","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031725","SegCount":"1","LocStatus":null,"XFrom":981963,"YFrom":207771,"XTo":981976,"YTo":207987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020159","NodeIDTo":"0020160","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":438,"GenericID":325,"NYPDID":null,"LegacyID":"0031725","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"756","LHi_Hyphen":"768","RLo_Hyphen":"755","RHi_Hyphen":"767","FromLeft":756,"ToLeft":768,"FromRight":755,"ToRight":767,"Join_ID":"1460001000000","SHAPE_Leng":216.6754},"id":438},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00810315475123,40.73875862191874],[-74.00805064043408,40.73937540100722]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"04030","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0032011","SegCount":"1","LocStatus":null,"XFrom":982004,"YFrom":208426,"XTo":982019,"YTo":208651,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020323","NodeIDTo":"0020324","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":441,"GenericID":328,"NYPDID":null,"LegacyID":"0032011","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"802","LHi_Hyphen":"816","RLo_Hyphen":"799","RHi_Hyphen":"813","FromLeft":802,"ToLeft":816,"FromRight":799,"ToRight":813,"Join_ID":"1460001000000","SHAPE_Leng":225.182876},"id":441},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00805064043408,40.73937540100722],[-74.007940089454,40.74029707762159]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"04040","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0032013","SegCount":"1","LocStatus":null,"XFrom":982019,"YFrom":208651,"XTo":982050,"YTo":208987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020324","NodeIDTo":"0020325","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":442,"GenericID":329,"NYPDID":null,"LegacyID":"0032013","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"818","LHi_Hyphen":"836","RLo_Hyphen":"815","RHi_Hyphen":"833","FromLeft":818,"ToLeft":836,"FromRight":815,"ToRight":833,"Join_ID":"1460001000000","SHAPE_Leng":337.190564},"id":442},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00633307505748,40.73963109900155],[-74.007940089454,40.74029707762159]]},"properties":{"Street":"LITTLE WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3090","SeqNum":"00020","StreetCode":"125020","SAFStreetC":null,"SegmentID":"0032022","SegCount":"1","LocStatus":null,"XFrom":982495,"YFrom":208744,"XTo":982050,"YTo":208987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020329","NodeIDTo":"0020325","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":77467,"GenericID":67140,"NYPDID":null,"LegacyID":"0032022","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"2","LHi_Hyphen":"42","RLo_Hyphen":"7","RHi_Hyphen":"39","FromLeft":2,"ToLeft":42,"FromRight":7,"ToRight":39,"Join_ID":"1309001000000","SHAPE_Leng":507.138107},"id":77467},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00606869865476,40.73513321306419],[-74.00596018046932,40.73584500737375]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00460","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0031991","SegCount":"1","LocStatus":"X","XFrom":982568,"YFrom":207106,"XTo":982598,"YTo":207365,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020313","NodeIDTo":"0020314","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":624,"GenericID":508,"NYPDID":null,"LegacyID":"0031991","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"551","LHi_Hyphen":"567","RLo_Hyphen":"552","RHi_Hyphen":"574","FromLeft":551,"ToLeft":567,"FromRight":552,"ToRight":574,"Join_ID":"1286001020000","SHAPE_Leng":261.067059},"id":624},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00662031977012,40.73643169686715],[-74.00649818405084,40.73695759133369]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"02340","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0031985","SegCount":"1","LocStatus":null,"XFrom":982415,"YFrom":207579,"XTo":982449,"YTo":207770,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020310","NodeIDTo":"0020311","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":475,"GenericID":362,"NYPDID":null,"LegacyID":"0031985","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"772","LHi_Hyphen":"784","RLo_Hyphen":"771","RHi_Hyphen":"781","FromLeft":772,"ToLeft":784,"FromRight":771,"ToRight":781,"Join_ID":"1271001000000","SHAPE_Leng":194.566625},"id":475},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00649818405084,40.73695759133369],[-74.00648762273886,40.73754959445074]]},"properties":{"Street":"GREENWICH STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2710","SeqNum":"02350","StreetCode":"121790","SAFStreetC":null,"SegmentID":"0031987","SegCount":"1","LocStatus":null,"XFrom":982449,"YFrom":207770,"XTo":982452,"YTo":207986,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020311","NodeIDTo":"0020312","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":476,"GenericID":363,"NYPDID":null,"LegacyID":"0031987","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"786","LHi_Hyphen":"798","RLo_Hyphen":"783","RHi_Hyphen":"795","FromLeft":786,"ToLeft":798,"FromRight":783,"ToRight":795,"Join_ID":"1271001000000","SHAPE_Leng":215.705275},"id":476},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00582871050361,40.7365338510506],[-74.00662031977012,40.73643169686715]]},"properties":{"Street":"BANK STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0610","SeqNum":"00050","StreetCode":"112510","SAFStreetC":null,"SegmentID":"0031994","SegCount":"1","LocStatus":"X","XFrom":982635,"YFrom":207616,"XTo":982415,"YTo":207579,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020315","NodeIDTo":"0020310","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79734,"GenericID":68959,"NYPDID":null,"LegacyID":"0031994","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"90","LHi_Hyphen":"98","RLo_Hyphen":"89","RHi_Hyphen":"99","FromLeft":90,"ToLeft":98,"FromRight":89,"ToRight":99,"Join_ID":"1061001000000","SHAPE_Leng":222.51262},"id":79734},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00539036039231,40.739411972516855],[-74.00591813951276,40.739416737294526]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00020","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0032032","SegCount":"1","LocStatus":null,"XFrom":982756,"YFrom":208664,"XTo":982610,"YTo":208666,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020334","NodeIDTo":"0020330","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72625,"GenericID":63119,"NYPDID":null,"LegacyID":"0032032","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"28","LHi_Hyphen":"32","RLo_Hyphen":"25","RHi_Hyphen":"43","FromLeft":28,"ToLeft":32,"FromRight":25,"ToRight":43,"Join_ID":"1257501000000","SHAPE_Leng":146.266814},"id":72625},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00539036039231,40.739411972516855],[-74.00529178846817,40.740023223408244]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00060","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0032033","SegCount":"1","LocStatus":"X","XFrom":982756,"YFrom":208664,"XTo":982784,"YTo":208887,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020334","NodeIDTo":"0020335","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":631,"GenericID":515,"NYPDID":null,"LegacyID":"0032033","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"651","LHi_Hyphen":"667","RLo_Hyphen":"652","RHi_Hyphen":"664","FromLeft":651,"ToLeft":667,"FromRight":652,"ToRight":664,"Join_ID":"1286001000000","SHAPE_Leng":224.367071},"id":631},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00512616445451,40.73596173520952],[-74.00596018046932,40.73584500737375]]},"properties":{"Street":"HAMMOND STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4815","SeqNum":"04070","StreetCode":"133990","SAFStreetC":null,"SegmentID":"0032006","SegCount":"1","LocStatus":"X","XFrom":982829,"YFrom":207407,"XTo":982598,"YTo":207365,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020321","NodeIDTo":"0020314","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79941,"GenericID":69157,"NYPDID":null,"LegacyID":"0032006","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"288","LHi_Hyphen":"300","RLo_Hyphen":"289","RHi_Hyphen":"299","FromLeft":288,"ToLeft":300,"FromRight":289,"ToRight":299,"Join_ID":"1481501000000","SHAPE_Leng":235.012023},"id":79941},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00474706065869,40.73465948181191],[-74.00493121749336,40.73530368858059]]},"properties":{"Street":"BLEECKER STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0710","SeqNum":"01120","StreetCode":"113310","SAFStreetC":null,"SegmentID":"0031979","SegCount":"1","LocStatus":null,"XFrom":982934,"YFrom":206933,"XTo":982883,"YTo":207168,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020307","NodeIDTo":"0020320","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1070,"GenericID":937,"NYPDID":null,"LegacyID":"0031979","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"366","LHi_Hyphen":"384","RLo_Hyphen":"367","RHi_Hyphen":"383","FromLeft":366,"ToLeft":384,"FromRight":367,"ToRight":383,"Join_ID":"1071001000000","SHAPE_Leng":240.189602},"id":1070},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00387408005533,40.738138653001656],[-74.00386030242889,40.73839487498835]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"04000","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032272","SegCount":"1","LocStatus":null,"XFrom":983176,"YFrom":208200,"XTo":983180,"YTo":208294,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020459","NodeIDTo":"0020460","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"6","PhysicalID":1260,"GenericID":1125,"NYPDID":null,"LegacyID":"0032272","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1479001000000","SHAPE_Leng":93.427817},"id":1260},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0035273198336,40.7361785204353],[-74.00371403987974,40.736838361400466]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"03120","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032241","SegCount":"1","LocStatus":null,"XFrom":983272,"YFrom":207486,"XTo":983221,"YTo":207727,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020444","NodeIDTo":"0020445","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1257,"GenericID":1122,"NYPDID":null,"LegacyID":"0032241","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"286","LHi_Hyphen":"298","RLo_Hyphen":"285","RHi_Hyphen":"299","FromLeft":286,"ToLeft":298,"FromRight":285,"ToRight":299,"Join_ID":"1479001000000","SHAPE_Leng":245.906842},"id":1257},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0017679795571,40.73767492542945],[-74.00386573442286,40.73754405756805]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03040","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0032291","SegCount":"1","LocStatus":null,"XFrom":983760,"YFrom":208031,"XTo":983179,"YTo":207984,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020469","NodeIDTo":"0020443","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":856,"GenericID":730,"NYPDID":null,"LegacyID":"0032291","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"220","LHi_Hyphen":"282","RLo_Hyphen":"231","RHi_Hyphen":"281","FromLeft":220,"ToLeft":282,"FromRight":231,"ToRight":281,"Join_ID":"1482001000000","SHAPE_Leng":583.29103},"id":856},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00820601819836,40.73755381659396],[-74.01138568661801,40.73757350143085]]},"properties":{"Street":"WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4820","SeqNum":"03085","StreetCode":"134010","SAFStreetC":null,"SegmentID":"0164181","SegCount":"1","LocStatus":null,"XFrom":981976,"YFrom":207987,"XTo":981530,"YTo":207992,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020160","NodeIDTo":"0094587","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":852,"GenericID":727,"NYPDID":null,"LegacyID":"0164181","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"372","LHi_Hyphen":"400","RLo_Hyphen":"373","RHi_Hyphen":"403","FromLeft":372,"ToLeft":400,"FromRight":373,"ToRight":403,"Join_ID":"1482001000000","SHAPE_Leng":445.75137},"id":852},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00984371597214,40.73696752985803],[-74.00952037573522,40.740354656339825]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"30070","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143266","SegCount":"1","LocStatus":null,"XFrom":981576,"YFrom":208203,"XTo":981587,"YTo":208418,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094815","NodeIDTo":"0094816","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99502,"GenericID":87632,"NYPDID":null,"LegacyID":"0143266","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"503","LHi_Hyphen":"519","RLo_Hyphen":"504","RHi_Hyphen":"518","FromLeft":503,"ToLeft":519,"FromRight":504,"ToRight":518,"Join_ID":"1467004000000","SHAPE_Leng":214.888184},"id":99502},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0096799582759,40.73937954367389],[-74.0098436227589,40.739379962374116]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00045","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0164204","SegCount":"1","LocStatus":null,"XFrom":981568,"YFrom":208653,"XTo":981522,"YTo":208653,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094866","NodeIDTo":"0094853","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72621,"GenericID":63115,"NYPDID":null,"LegacyID":"0164204","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1257501000000","SHAPE_Leng":45.354474},"id":72621},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0084358984073,40.734791168155425],[-74.00837037995568,40.73550554607348]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"03320","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031711","SegCount":"1","LocStatus":null,"XFrom":981912,"YFrom":206981,"XTo":981930,"YTo":207241,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020148","NodeIDTo":"0020157","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":435,"GenericID":322,"NYPDID":null,"LegacyID":"0031711","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"702","LHi_Hyphen":"718","RLo_Hyphen":"703","RHi_Hyphen":"717","FromLeft":702,"ToLeft":718,"FromRight":703,"ToRight":717,"Join_ID":"1460001000000","SHAPE_Leng":260.902939},"id":435},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00820601819836,40.73755381659396],[-74.0081539049562,40.73814168972074]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"04010","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031727","SegCount":"1","LocStatus":null,"XFrom":981976,"YFrom":207987,"XTo":981990,"YTo":208202,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020160","NodeIDTo":"0020171","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":439,"GenericID":326,"NYPDID":null,"LegacyID":"0031727","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"770","LHi_Hyphen":"782","RLo_Hyphen":"769","RHi_Hyphen":"781","FromLeft":770,"ToLeft":782,"FromRight":769,"ToRight":781,"Join_ID":"1460001000000","SHAPE_Leng":214.667089},"id":439},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0081539049562,40.73814168972074],[-74.00810315475123,40.73875862191874]]},"properties":{"Street":"WASHINGTON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4600","SeqNum":"04020","StreetCode":"133390","SAFStreetC":null,"SegmentID":"0031740","SegCount":"1","LocStatus":null,"XFrom":981990,"YFrom":208202,"XTo":982004,"YTo":208426,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020171","NodeIDTo":"0020323","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":440,"GenericID":327,"NYPDID":null,"LegacyID":"0031740","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"784","LHi_Hyphen":"800","RLo_Hyphen":"783","RHi_Hyphen":"797","FromLeft":784,"ToLeft":800,"FromRight":783,"ToRight":797,"Join_ID":"1460001000000","SHAPE_Leng":225.207473},"id":440},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0067990701103,40.73572292368411],[-74.00837037995568,40.73550554607348]]},"properties":{"Street":"HAMMOND STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4815","SeqNum":"04090","StreetCode":"133990","SAFStreetC":null,"SegmentID":"0031982","SegCount":"1","LocStatus":null,"XFrom":982366,"YFrom":207320,"XTo":981930,"YTo":207241,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020309","NodeIDTo":"0020157","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79943,"GenericID":69159,"NYPDID":null,"LegacyID":"0031982","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"316","LHi_Hyphen":"344","RLo_Hyphen":"315","RHi_Hyphen":"345","FromLeft":316,"ToLeft":344,"FromRight":315,"ToRight":345,"Join_ID":"1481501000000","SHAPE_Leng":442.604595},"id":79943},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00633307505748,40.73963109900155],[-74.00586426261837,40.740261442858106]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00020","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0032023","SegCount":"1","LocStatus":null,"XFrom":982495,"YFrom":208744,"XTo":982625,"YTo":208974,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020329","NodeIDTo":"0020331","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1444,"GenericID":1305,"NYPDID":null,"LegacyID":"0032023","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"9","LHi_Hyphen":"27","RLo_Hyphen":"2","RHi_Hyphen":"20","FromLeft":9,"ToLeft":27,"FromRight":2,"ToRight":20,"Join_ID":"1335001000000","SHAPE_Leng":263.853995},"id":1444},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00553386396341,40.736877492733036],[-74.00558996934835,40.736917164787194],[-74.00564028327766,40.73696110186998],[-74.00568424857902,40.73700881743616],[-74.0057213785147,40.737059783059394],[-74.00575126177078,40.73711343440974],[-74.00577356740948,40.73716917736509]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00010","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0032002","SegCount":"1","LocStatus":null,"XFrom":982716,"YFrom":207741,"XTo":982650,"YTo":207847,"ArcCenterX":982846,"ArcCenterY":207896,"CurveFlag":"L","Radius":202,"NodeIDFrom":"0020319","NodeIDTo":"0020316","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79638,"GenericID":68866,"NYPDID":null,"LegacyID":"0032002","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"585","LHi_Hyphen":"595","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":585,"ToLeft":595,"FromRight":0,"ToRight":0,"Join_ID":"1286001000000","SHAPE_Leng":127.43175},"id":79638},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00417529780091,40.738134346937464],[-74.00386030242889,40.73839487498835]]},"properties":{"Street":"8 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2370","SeqNum":"01020","StreetCode":"110810","SAFStreetC":null,"SegmentID":"0032270","SegCount":"1","LocStatus":null,"XFrom":983093,"YFrom":208199,"XTo":983180,"YTo":208294,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020458","NodeIDTo":"0020460","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1101,"GenericID":968,"NYPDID":null,"LegacyID":"0032270","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"31","LHi_Hyphen":"43","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":31,"ToLeft":43,"FromRight":0,"ToRight":0,"Join_ID":"1237002000000","SHAPE_Leng":128.955197},"id":1101},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00371403987974,40.736838361400466],[-74.00386573442286,40.73754405756805]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"03130","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032243","SegCount":"1","LocStatus":null,"XFrom":983221,"YFrom":207727,"XTo":983179,"YTo":207984,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020445","NodeIDTo":"0020443","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1258,"GenericID":1123,"NYPDID":null,"LegacyID":"0032243","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"300","LHi_Hyphen":"318","RLo_Hyphen":"301","RHi_Hyphen":"319","FromLeft":300,"ToLeft":318,"FromRight":301,"ToRight":319,"Join_ID":"1479001000000","SHAPE_Leng":260.521483},"id":1258},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00308208662659,40.73907760007637],[-74.00386493162624,40.73941811233957]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04010","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0032281","SegCount":"1","LocStatus":null,"XFrom":983396,"YFrom":208543,"XTo":983179,"YTo":208667,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020464","NodeIDTo":"0020462","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79758,"GenericID":68982,"NYPDID":null,"LegacyID":"0032281","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"300","LHi_Hyphen":"314","RLo_Hyphen":"301","RHi_Hyphen":"319","FromLeft":300,"ToLeft":314,"FromRight":301,"ToRight":319,"Join_ID":"1482501000000","SHAPE_Leng":249.907482},"id":79758},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00837037995568,40.73550554607348],[-74.00998887752756,40.73529699311489]]},"properties":{"Street":"HAMMOND STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4815","SeqNum":"04095","StreetCode":"133990","SAFStreetC":null,"SegmentID":"0164175","SegCount":"1","LocStatus":null,"XFrom":981930,"YFrom":207241,"XTo":981482,"YTo":207165,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020157","NodeIDTo":"0094576","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79944,"GenericID":69160,"NYPDID":null,"LegacyID":"0164175","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"346","LHi_Hyphen":"376","RLo_Hyphen":"347","RHi_Hyphen":"381","FromLeft":346,"ToLeft":376,"FromRight":347,"ToRight":381,"Join_ID":"1481501000000","SHAPE_Leng":454.930207},"id":79944},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.01004291146569,40.73458937064379],[-74.00998887752756,40.73529699311489]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02710","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143531","SegCount":"2","LocStatus":null,"XFrom":981467,"YFrom":206907,"XTo":981482,"YTo":207165,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094570","NodeIDTo":"0094576","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":232,"GenericID":0,"NYPDID":null,"LegacyID":"0143531","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"417","RHi_Hyphen":"425","FromLeft":0,"ToLeft":0,"FromRight":417,"ToRight":425,"Join_ID":"1467004030900","SHAPE_Leng":258.243648},"id":232},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.01004291146569,40.73458937064379],[-74.00998887752756,40.73529699311489]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02710","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143531","SegCount":"2","LocStatus":null,"XFrom":981467,"YFrom":206907,"XTo":981482,"YTo":207165,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094570","NodeIDTo":"0094576","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":232,"GenericID":0,"NYPDID":null,"LegacyID":"0143531","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"418","RHi_Hyphen":"426","FromLeft":0,"ToLeft":0,"FromRight":418,"ToRight":426,"Join_ID":"1467004030900","SHAPE_Leng":258.243648},"id":232},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00832244848465,40.7361873506291],[-74.01154666471888,40.73575674857831]]},"properties":{"Street":"BANK STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0610","SeqNum":"00065","StreetCode":"112510","SAFStreetC":null,"SegmentID":"0164177","SegCount":"1","LocStatus":"X","XFrom":981944,"YFrom":207490,"XTo":981498,"YTo":207423,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020158","NodeIDTo":"0094581","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79735,"GenericID":68960,"NYPDID":null,"LegacyID":"0164177","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"140","LHi_Hyphen":"172","RLo_Hyphen":"137","RHi_Hyphen":"169","FromLeft":140,"ToLeft":172,"FromRight":137,"ToRight":169,"Join_ID":"1061001000000","SHAPE_Leng":450.471876},"id":79735},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0081539049562,40.73814168972074],[-74.01133401058203,40.73815711856125]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00060","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0164185","SegCount":"1","LocStatus":null,"XFrom":981990,"YFrom":208202,"XTo":981576,"YTo":208203,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020171","NodeIDTo":"0094815","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":689,"GenericID":569,"NYPDID":null,"LegacyID":"0164185","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"108","LHi_Hyphen":"144","RLo_Hyphen":"97","RHi_Hyphen":"123","FromLeft":108,"ToLeft":144,"FromRight":97,"ToRight":123,"Join_ID":"1292001000000","SHAPE_Leng":414.812738},"id":689},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00649818405084,40.73695759133369],[-74.00825320571238,40.736960180316515]]},"properties":{"Street":"BETHUNE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0695","SeqNum":"00030","StreetCode":"113210","SAFStreetC":null,"SegmentID":"0031986","SegCount":"1","LocStatus":null,"XFrom":982449,"YFrom":207770,"XTo":981963,"YTo":207771,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020311","NodeIDTo":"0020159","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79636,"GenericID":68864,"NYPDID":null,"LegacyID":"0031986","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"11","LHi_Hyphen":"47","RLo_Hyphen":"12","RHi_Hyphen":"50","FromLeft":11,"ToLeft":47,"FromRight":12,"ToRight":50,"Join_ID":"1069501000000","SHAPE_Leng":486.364996},"id":79636},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00577356740948,40.73716917736509],[-74.00568704529502,40.73755187923092]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00020","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0031997","SegCount":"1","LocStatus":"X","XFrom":982650,"YFrom":207847,"XTo":982674,"YTo":207987,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020316","NodeIDTo":"0020317","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":627,"GenericID":511,"NYPDID":null,"LegacyID":"0031997","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"601","LHi_Hyphen":"609","RLo_Hyphen":"600","RHi_Hyphen":"608","FromLeft":601,"ToLeft":609,"FromRight":600,"ToRight":608,"Join_ID":"1286001000000","SHAPE_Leng":141.47702},"id":627},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00568704529502,40.73755187923092],[-74.00559149564992,40.73813833923738]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00030","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0031999","SegCount":"1","LocStatus":"X","XFrom":982674,"YFrom":207987,"XTo":982700,"YTo":208200,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020317","NodeIDTo":"0020332","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":628,"GenericID":512,"NYPDID":null,"LegacyID":"0031999","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"611","LHi_Hyphen":"621","RLo_Hyphen":"610","RHi_Hyphen":"622","FromLeft":611,"ToLeft":621,"FromRight":610,"ToRight":622,"Join_ID":"1286001000000","SHAPE_Leng":215.300392},"id":628},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00441531105689,40.74228411844143],[-74.00396898976648,40.74286300752562]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00060","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0032293","SegCount":"1","LocStatus":null,"XFrom":983026,"YFrom":209711,"XTo":983150,"YTo":209922,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020470","NodeIDTo":"0020471","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1438,"GenericID":1299,"NYPDID":null,"LegacyID":"0032293","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"89","LHi_Hyphen":"103","RLo_Hyphen":"88","RHi_Hyphen":"104","FromLeft":89,"ToLeft":103,"FromRight":88,"ToRight":104,"Join_ID":"1335001000000","SHAPE_Leng":244.495689},"id":1438},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00385929330595,40.73875314202771],[-74.00549494066132,40.73875392208171]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2825","SeqNum":"00030","StreetCode":"123090","SAFStreetC":null,"SegmentID":"0032275","SegCount":"2","LocStatus":null,"XFrom":983181,"YFrom":208424,"XTo":982727,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020461","NodeIDTo":"0020333","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99499,"GenericID":87629,"NYPDID":null,"LegacyID":"0032275","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"20","LHi_Hyphen":"52","RLo_Hyphen":"7","RHi_Hyphen":"41","FromLeft":20,"ToLeft":52,"FromRight":7,"ToRight":41,"Join_ID":"1282501000000","SHAPE_Leng":453.270105},"id":99499},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00385929330595,40.73875314202771],[-74.00549494066132,40.73875392208171]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":"CORPORAL JOHN A SERAVALLI PLGD","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"N","FaceCode":"2825","SeqNum":"00030","StreetCode":"123090","SAFStreetC":"112375","SegmentID":"0032275","SegCount":"2","LocStatus":null,"XFrom":983181,"YFrom":208424,"XTo":982727,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020461","NodeIDTo":"0020333","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99499,"GenericID":87629,"NYPDID":null,"LegacyID":"0032275","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"11237501000000N","SHAPE_Leng":453.270105},"id":99499},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00213604202602,40.73706622089927],[-74.00371403987974,40.736838361400466]]},"properties":{"Street":"BANK STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"0610","SeqNum":"00020","StreetCode":"112510","SAFStreetC":null,"SegmentID":"0032248","SegCount":"1","LocStatus":null,"XFrom":983658,"YFrom":207810,"XTo":983221,"YTo":207727,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020448","NodeIDTo":"0020445","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":96901,"GenericID":85136,"NYPDID":null,"LegacyID":"0032248","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"16","LHi_Hyphen":"52","RLo_Hyphen":"9","RHi_Hyphen":"47","FromLeft":16,"ToLeft":52,"FromRight":9,"ToRight":47,"Join_ID":"1061001000000","SHAPE_Leng":445.116036},"id":96901},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00998887752756,40.73529699311489],[-74.00993003096036,40.7360043485671]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02720","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143530","SegCount":"2","LocStatus":null,"XFrom":981482,"YFrom":207165,"XTo":981498,"YTo":207423,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094576","NodeIDTo":"0094581","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":231,"GenericID":0,"NYPDID":null,"LegacyID":"0143530","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"427","RHi_Hyphen":"443","FromLeft":0,"ToLeft":0,"FromRight":427,"ToRight":443,"Join_ID":"1467004030900","SHAPE_Leng":258.227344},"id":231},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00998887752756,40.73529699311489],[-74.00993003096036,40.7360043485671]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02720","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143530","SegCount":"2","LocStatus":null,"XFrom":981482,"YFrom":207165,"XTo":981498,"YTo":207423,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094576","NodeIDTo":"0094581","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":231,"GenericID":0,"NYPDID":null,"LegacyID":"0143530","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"428","RHi_Hyphen":"442","FromLeft":0,"ToLeft":0,"FromRight":428,"ToRight":442,"Join_ID":"1467004030900","SHAPE_Leng":258.227344},"id":231},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00993003096036,40.7360043485671],[-74.00984371597214,40.73696752985803]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02730","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143529","SegCount":"2","LocStatus":null,"XFrom":981498,"YFrom":207423,"XTo":981522,"YTo":207774,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094581","NodeIDTo":"0094586","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":230,"GenericID":0,"NYPDID":null,"LegacyID":"0143529","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"445","RHi_Hyphen":"465","FromLeft":0,"ToLeft":0,"FromRight":445,"ToRight":465,"Join_ID":"1467004030900","SHAPE_Leng":351.731628},"id":230},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00993003096036,40.7360043485671],[-74.00984371597214,40.73696752985803]]},"properties":{"Street":"WEST STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"4670","SeqNum":"02730","StreetCode":"111115","SAFStreetC":null,"SegmentID":"0143529","SegCount":"2","LocStatus":null,"XFrom":981498,"YFrom":207423,"XTo":981522,"YTo":207774,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0094581","NodeIDTo":"0094586","NodeLevelF":"M","NodeLevelT":"M","ConParity":"R","Twisted":null,"RW_TYPE":"2","PhysicalID":230,"GenericID":0,"NYPDID":null,"LegacyID":"0143529","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"444","RHi_Hyphen":"466","FromLeft":0,"ToLeft":0,"FromRight":444,"ToRight":466,"Join_ID":"1467004030900","SHAPE_Leng":351.731628},"id":230},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00586426261837,40.740261442858106],[-74.00748240674119,40.74094190744846]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04040","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0032026","SegCount":"1","LocStatus":null,"XFrom":982625,"YFrom":208974,"XTo":982177,"YTo":209222,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020331","NodeIDTo":"0020336","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79760,"GenericID":68984,"NYPDID":null,"LegacyID":"0032026","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"400","LHi_Hyphen":"436","RLo_Hyphen":"401","RHi_Hyphen":"433","FromLeft":400,"ToLeft":436,"FromRight":401,"ToRight":433,"Join_ID":"1482501000000","SHAPE_Leng":512.377482},"id":79760},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00596018046932,40.73584500737375],[-74.0067990701103,40.73572292368411]]},"properties":{"Street":"HAMMOND STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4815","SeqNum":"04080","StreetCode":"133990","SAFStreetC":null,"SegmentID":"0031992","SegCount":"1","LocStatus":null,"XFrom":982598,"YFrom":207365,"XTo":982366,"YTo":207320,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020314","NodeIDTo":"0020309","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":79942,"GenericID":69158,"NYPDID":null,"LegacyID":"0031992","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"302","LHi_Hyphen":"314","RLo_Hyphen":"301","RHi_Hyphen":"313","FromLeft":302,"ToLeft":314,"FromRight":301,"ToRight":313,"Join_ID":"1481501000000","SHAPE_Leng":236.699801},"id":79942},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00591813951276,40.739416737294526],[-74.00645011885481,40.739404029622065]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00030","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0032024","SegCount":"1","LocStatus":null,"XFrom":982610,"YFrom":208666,"XTo":982463,"YTo":208662,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020330","NodeIDTo":"0020328","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72624,"GenericID":63118,"NYPDID":null,"LegacyID":"0032024","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"34","LHi_Hyphen":"44","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":34,"ToLeft":44,"FromRight":0,"ToRight":0,"Join_ID":"1257501000000","SHAPE_Leng":147.493156},"id":72624},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00591813951276,40.739416737294526],[-74.00633307505748,40.73963109900155]]},"properties":{"Street":"LITTLE WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"W","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3090","SeqNum":"00010","StreetCode":"125020","SAFStreetC":null,"SegmentID":"0032025","SegCount":"1","LocStatus":null,"XFrom":982610,"YFrom":208666,"XTo":982495,"YTo":208744,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020330","NodeIDTo":"0020329","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"6","PhysicalID":77468,"GenericID":67141,"NYPDID":null,"LegacyID":"0032025","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"1","RHi_Hyphen":"5","FromLeft":0,"ToLeft":0,"FromRight":1,"ToRight":5,"Join_ID":"1309001000000","SHAPE_Leng":139.000261},"id":77468},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00646034468079,40.73875458341208],[-74.00810315475123,40.73875862191874]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2825","SeqNum":"00050","StreetCode":"123090","SAFStreetC":null,"SegmentID":"0032018","SegCount":"1","LocStatus":null,"XFrom":982460,"YFrom":208425,"XTo":982004,"YTo":208426,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020327","NodeIDTo":"0020323","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99497,"GenericID":87627,"NYPDID":null,"LegacyID":"0032018","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"68","LHi_Hyphen":"94","RLo_Hyphen":"61","RHi_Hyphen":"89","FromLeft":68,"ToLeft":94,"FromRight":61,"ToRight":89,"Join_ID":"1282501000000","SHAPE_Leng":455.257302},"id":99497},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00645011885481,40.739404029622065],[-74.00805064043408,40.73937540100722]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00040","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0032020","SegCount":"1","LocStatus":null,"XFrom":982463,"YFrom":208662,"XTo":982019,"YTo":208651,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020328","NodeIDTo":"0020324","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":72623,"GenericID":63117,"NYPDID":null,"LegacyID":"0032020","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"46","LHi_Hyphen":"74","RLo_Hyphen":"45","RHi_Hyphen":"79","FromLeft":46,"ToLeft":74,"FromRight":45,"ToRight":79,"Join_ID":"1257501000000","SHAPE_Leng":443.654363},"id":72623},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00493121749336,40.73530368858059],[-74.00606869865476,40.73513321306419]]},"properties":{"Street":"PERRY STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3695","SeqNum":"00050","StreetCode":"128690","SAFStreetC":null,"SegmentID":"0032004","SegCount":"1","LocStatus":null,"XFrom":982883,"YFrom":207168,"XTo":982568,"YTo":207106,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020320","NodeIDTo":"0020313","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":806,"GenericID":683,"NYPDID":null,"LegacyID":"0032004","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"92","LHi_Hyphen":"108","RLo_Hyphen":"89","RHi_Hyphen":"107","FromLeft":92,"ToLeft":108,"FromRight":89,"ToRight":107,"Join_ID":"1369501000000","SHAPE_Leng":321.295457},"id":806},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00559149564992,40.73813833923738],[-74.00647053748419,40.738138725775784]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00040","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0032028","SegCount":"1","LocStatus":null,"XFrom":982700,"YFrom":208200,"XTo":982457,"YTo":208201,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020332","NodeIDTo":"0020326","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":691,"GenericID":571,"NYPDID":null,"LegacyID":"0032028","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"58","LHi_Hyphen":"66","RLo_Hyphen":"59","RHi_Hyphen":"67","FromLeft":58,"ToLeft":66,"FromRight":59,"ToRight":67,"Join_ID":"1292001000000","SHAPE_Leng":243.602051},"id":691},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00549494066132,40.73875392208171],[-74.00646034468079,40.73875458341208]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2825","SeqNum":"00040","StreetCode":"123090","SAFStreetC":null,"SegmentID":"0032030","SegCount":"1","LocStatus":null,"XFrom":982727,"YFrom":208425,"XTo":982460,"YTo":208425,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020333","NodeIDTo":"0020327","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99498,"GenericID":87628,"NYPDID":null,"LegacyID":"0032030","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"54","LHi_Hyphen":"66","RLo_Hyphen":"43","RHi_Hyphen":"59","FromLeft":54,"ToLeft":66,"FromRight":43,"ToRight":59,"Join_ID":"1282501000000","SHAPE_Leng":267.532526},"id":99498},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00553386396341,40.736877492733036],[-74.00482959326249,40.737547469687186]]},"properties":{"Street":"8 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2370","SeqNum":"00010","StreetCode":"110810","SAFStreetC":null,"SegmentID":"0032003","SegCount":"2","LocStatus":null,"XFrom":982716,"YFrom":207741,"XTo":982912,"YTo":207985,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020319","NodeIDTo":"0020322","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1100,"GenericID":967,"NYPDID":null,"LegacyID":"0032003","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"1","LHi_Hyphen":"9","RLo_Hyphen":"2","RHi_Hyphen":"20","FromLeft":1,"ToLeft":9,"FromRight":2,"ToRight":20,"Join_ID":"1237002000000","SHAPE_Leng":312.528036},"id":1100},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00553386396341,40.736877492733036],[-74.00482959326249,40.737547469687186]]},"properties":{"Street":"8 AVENUE","SAFStreetN":"ABINGDON SQUARE","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"P","FaceCode":"2370","SeqNum":"00010","StreetCode":"110810","SAFStreetC":"111210","SegmentID":"0032003","SegCount":"2","LocStatus":null,"XFrom":982716,"YFrom":207741,"XTo":982912,"YTo":207985,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020319","NodeIDTo":"0020322","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1100,"GenericID":967,"NYPDID":null,"LegacyID":"0032003","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"1","RHi_Hyphen":"27","FromLeft":0,"ToLeft":0,"FromRight":1,"ToRight":27,"Join_ID":"11121001000000P","SHAPE_Leng":312.528036},"id":1100},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386030242889,40.73839487498835],[-74.00385929330595,40.73875314202771]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4790","SeqNum":"04010","StreetCode":"133910","SAFStreetC":null,"SegmentID":"0032273","SegCount":"2","LocStatus":null,"XFrom":983180,"YFrom":208294,"XTo":983181,"YTo":208424,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020460","NodeIDTo":"0020461","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1261,"GenericID":1126,"NYPDID":null,"LegacyID":"0032273","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"334","LHi_Hyphen":"338","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":334,"ToLeft":338,"FromRight":0,"ToRight":0,"Join_ID":"1479001000000","SHAPE_Leng":130.528312},"id":1261},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00386030242889,40.73839487498835],[-74.00385929330595,40.73875314202771]]},"properties":{"Street":"WEST 4 STREET","SAFStreetN":"8 AVENUE","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"B","FaceCode":"4790","SeqNum":"04010","StreetCode":"133910","SAFStreetC":"110810","SegmentID":"0032273","SegCount":"2","LocStatus":null,"XFrom":983180,"YFrom":208294,"XTo":983181,"YTo":208424,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020460","NodeIDTo":"0020461","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1261,"GenericID":1126,"NYPDID":null,"LegacyID":"0032273","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"45","LHi_Hyphen":"51","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":45,"ToLeft":51,"FromRight":0,"ToRight":0,"Join_ID":"11081002000000B","SHAPE_Leng":130.528312},"id":1261},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.0034464775447,40.73875606346099],[-74.00385929330595,40.73875314202771]]},"properties":{"Street":"HORATIO STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2825","SeqNum":"00020","StreetCode":"123090","SAFStreetC":null,"SegmentID":"0032279","SegCount":"1","LocStatus":null,"XFrom":983295,"YFrom":208425,"XTo":983181,"YTo":208424,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020463","NodeIDTo":"0020461","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":99500,"GenericID":87630,"NYPDID":null,"LegacyID":"0032279","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"1","RHi_Hyphen":"5","FromLeft":0,"ToLeft":0,"FromRight":1,"ToRight":5,"Join_ID":"1282501000000","SHAPE_Leng":114.404307},"id":99500},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00203202314461,40.738130460489614],[-74.00387408005533,40.738138653001656]]},"properties":{"Street":"JANE STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2920","SeqNum":"00010","StreetCode":"123790","SAFStreetC":null,"SegmentID":"0032286","SegCount":"1","LocStatus":null,"XFrom":983687,"YFrom":208197,"XTo":983176,"YTo":208200,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020467","NodeIDTo":"0020459","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":694,"GenericID":574,"NYPDID":null,"LegacyID":"0032286","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"2","LHi_Hyphen":"34","RLo_Hyphen":"1","RHi_Hyphen":"31","FromLeft":2,"ToLeft":34,"FromRight":1,"ToRight":31,"Join_ID":"1292001000000","SHAPE_Leng":510.483627},"id":694},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00441531105689,40.74228411844143],[-74.00454794908065,40.74233986136231]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4840","SeqNum":"04052","StreetCode":"134090","SAFStreetC":null,"SegmentID":"9001726","SegCount":"1","LocStatus":null,"XFrom":983026,"YFrom":209711,"XTo":982990,"YTo":209731,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020470","NodeIDTo":"9000421","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1379,"GenericID":1243,"NYPDID":"0001722","LegacyID":"0032294","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"400","LHi_Hyphen":"400","RLo_Hyphen":"401","RHi_Hyphen":"401","FromLeft":400,"ToLeft":400,"FromRight":401,"ToRight":401,"Join_ID":"1484001000000","SHAPE_Leng":41.992329},"id":1379},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00454794908065,40.74233986136231],[-74.00488574224997,40.74248182249991]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4840","SeqNum":"04054","StreetCode":"134090","SAFStreetC":null,"SegmentID":"9001727","SegCount":"2","LocStatus":null,"XFrom":982990,"YFrom":209731,"XTo":982896,"YTo":209783,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9000421","NodeIDTo":"9000415","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1379,"GenericID":1243,"NYPDID":"0001723","LegacyID":"0032294","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"402","LHi_Hyphen":"410","RLo_Hyphen":"403","RHi_Hyphen":"411","FromLeft":402,"ToLeft":410,"FromRight":403,"ToRight":411,"Join_ID":"1484001000000","SHAPE_Leng":106.942806},"id":1379},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00454794908065,40.74233986136231],[-74.00488574224997,40.74248182249991]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":"FULTON HOUSES BUILDING 1","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"X","FaceCode":"4840","SeqNum":"04054","StreetCode":"134090","SAFStreetC":"130660","SegmentID":"9001727","SegCount":"2","LocStatus":null,"XFrom":982990,"YFrom":209731,"XTo":982896,"YTo":209783,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9000421","NodeIDTo":"9000415","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1379,"GenericID":1243,"NYPDID":"0001723","LegacyID":"0032294","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"13066002000000X","SHAPE_Leng":106.942806},"id":1379},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00488574224997,40.74248182249991],[-74.00500556091622,40.742532176941]]},"properties":{"Street":"WEST 16 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4840","SeqNum":"04056","StreetCode":"134090","SAFStreetC":null,"SegmentID":"9001728","SegCount":"1","LocStatus":null,"XFrom":982896,"YFrom":209783,"XTo":982863,"YTo":209801,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9000415","NodeIDTo":"9000412","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":1379,"GenericID":1243,"NYPDID":"0001724","LegacyID":"0032294","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"412","LHi_Hyphen":"412","RLo_Hyphen":"413","RHi_Hyphen":"413","FromLeft":412,"ToLeft":412,"FromRight":413,"ToRight":413,"Join_ID":"1484001000000","SHAPE_Leng":37.933549},"id":1379},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00310733897933,40.73999752051472],[-74.00512553519455,40.740850212999504]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03022","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0215773","SegCount":"1","LocStatus":"X","XFrom":983389,"YFrom":208878,"XTo":982830,"YTo":209188,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9026821","NodeIDTo":"0020341","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":114470,"GenericID":102345,"NYPDID":null,"LegacyID":"0032284","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"310","LHi_Hyphen":"398","RLo_Hyphen":"309","RHi_Hyphen":"399","FromLeft":310,"ToLeft":398,"FromRight":309,"ToRight":399,"Join_ID":"1483001000000","SHAPE_Leng":639.759268},"id":114470},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00805064043408,40.73937540100722],[-74.00825772555005,40.739375928707766]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00042","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0236854","SegCount":"1","LocStatus":null,"XFrom":982019,"YFrom":208651,"XTo":981962,"YTo":208651,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020324","NodeIDTo":"9031063","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128992,"GenericID":116487,"NYPDID":null,"LegacyID":"0164203","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"76","LHi_Hyphen":"80","RLo_Hyphen":"81","RHi_Hyphen":"83","FromLeft":76,"ToLeft":80,"FromRight":81,"ToRight":83,"Join_ID":"1257501000000","SHAPE_Leng":57.38714},"id":128992},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00825772555005,40.739375928707766],[-74.0096799582759,40.73937954367389]]},"properties":{"Street":"GANSEVOORT STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2575","SeqNum":"00043","StreetCode":"121240","SAFStreetC":null,"SegmentID":"0236855","SegCount":"1","LocStatus":null,"XFrom":981962,"YFrom":208651,"XTo":981568,"YTo":208653,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9031063","NodeIDTo":"0094866","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128993,"GenericID":116488,"NYPDID":null,"LegacyID":"0164203","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"82","LHi_Hyphen":"108","RLo_Hyphen":"85","RHi_Hyphen":"113","FromLeft":82,"ToLeft":108,"FromRight":85,"ToRight":113,"Join_ID":"1257501000000","SHAPE_Leng":394.127137},"id":128993},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.007940089454,40.74029707762159],[-74.00813454935499,40.74037422889518]]},"properties":{"Street":"LITTLE WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3090","SeqNum":"00030","StreetCode":"125020","SAFStreetC":null,"SegmentID":"0236856","SegCount":"1","LocStatus":null,"XFrom":982050,"YFrom":208987,"XTo":981996,"YTo":209015,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020325","NodeIDTo":"9031064","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128995,"GenericID":116490,"NYPDID":null,"LegacyID":"0164206","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"44","LHi_Hyphen":"46","RLo_Hyphen":"41","RHi_Hyphen":"43","FromLeft":44,"ToLeft":46,"FromRight":41,"ToRight":43,"Join_ID":"1309001000000","SHAPE_Leng":60.777843},"id":128995},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00813454935499,40.74037422889518],[-74.0113097969419,40.74172213705867]]},"properties":{"Street":"LITTLE WEST 12 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"3090","SeqNum":"00035","StreetCode":"125020","SAFStreetC":null,"SegmentID":"0236857","SegCount":"1","LocStatus":null,"XFrom":981996,"YFrom":209015,"XTo":981767,"YTo":209134,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9031064","NodeIDTo":"0094865","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128996,"GenericID":116491,"NYPDID":null,"LegacyID":"0164206","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"48","LHi_Hyphen":"60","RLo_Hyphen":"45","RHi_Hyphen":"63","FromLeft":48,"ToLeft":60,"FromRight":45,"ToRight":63,"Join_ID":"1309001000000","SHAPE_Leng":257.970271},"id":128996},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00748240674119,40.74094190744846],[-74.00797003278687,40.74113854439214]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04050","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0236862","SegCount":"1","LocStatus":null,"XFrom":982177,"YFrom":209222,"XTo":982041,"YTo":209293,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020336","NodeIDTo":"9031065","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128998,"GenericID":116493,"NYPDID":null,"LegacyID":"0164210","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"438","LHi_Hyphen":"448","RLo_Hyphen":"435","RHi_Hyphen":"445","FromLeft":438,"ToLeft":448,"FromRight":435,"ToRight":445,"Join_ID":"1482501000000","SHAPE_Leng":152.942841},"id":128998},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00797003278687,40.74113854439214],[-74.01116041293766,40.74243918027893]]},"properties":{"Street":"WEST 13 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4825","SeqNum":"04055","StreetCode":"134030","SAFStreetC":null,"SegmentID":"0236863","SegCount":"1","LocStatus":null,"XFrom":982041,"YFrom":209293,"XTo":981831,"YTo":209405,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9031065","NodeIDTo":"0094863","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":128999,"GenericID":116494,"NYPDID":null,"LegacyID":"0164210","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"450","LHi_Hyphen":"498","RLo_Hyphen":"447","RHi_Hyphen":"499","FromLeft":450,"ToLeft":498,"FromRight":447,"ToRight":499,"Join_ID":"1482501000000","SHAPE_Leng":238.135411},"id":128999},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00697077794462,40.74162712658768],[-74.00779116129648,40.74197084417916]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03040","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0236865","SegCount":"1","LocStatus":"X","XFrom":982318,"YFrom":209471,"XTo":982091,"YTo":209597,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020338","NodeIDTo":"9031066","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":129001,"GenericID":116496,"NYPDID":null,"LegacyID":"0032040","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"436","LHi_Hyphen":"454","RLo_Hyphen":"437","RHi_Hyphen":"459","FromLeft":436,"ToLeft":454,"FromRight":437,"ToRight":459,"Join_ID":"1483001000000","SHAPE_Leng":259.543039},"id":129001},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00779116129648,40.74197084417916],[-74.01096238114879,40.74326230699674]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03045","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0236866","SegCount":"1","LocStatus":"X","XFrom":982091,"YFrom":209597,"XTo":981977,"YTo":209661,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9031066","NodeIDTo":"0020183","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":129002,"GenericID":116497,"NYPDID":null,"LegacyID":"0032040","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"456","LHi_Hyphen":"498","RLo_Hyphen":"461","RHi_Hyphen":"499","FromLeft":456,"ToLeft":498,"FromRight":461,"ToRight":499,"Join_ID":"1483001000000","SHAPE_Leng":131.269955},"id":129002},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00582871050361,40.7365338510506],[-74.00577356740948,40.73716917736509]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"2860","SeqNum":"00015","StreetCode":"123190","SAFStreetC":null,"SegmentID":"0271131","SegCount":"2","LocStatus":"X","XFrom":982627,"YFrom":207759,"XTo":982650,"YTo":207847,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037781","NodeIDTo":"0020316","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155684,"GenericID":142312,"NYPDID":null,"LegacyID":"0031996","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"597","LHi_Hyphen":"599","RLo_Hyphen":"590","RHi_Hyphen":"598","FromLeft":597,"ToLeft":599,"FromRight":590,"ToRight":598,"Join_ID":"1286001000000","SHAPE_Leng":91.587831},"id":155684},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00585779717431,40.73692609287048],[-74.00577356740948,40.73716917736509]]},"properties":{"Street":"HUDSON STREET","SAFStreetN":"ABINGDON SQUARE","FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":"P","FaceCode":"2860","SeqNum":"00015","StreetCode":"123190","SAFStreetC":"111210","SegmentID":"0271131","SegCount":"2","LocStatus":"X","XFrom":982627,"YFrom":207759,"XTo":982650,"YTo":207847,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037781","NodeIDTo":"0020316","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155684,"GenericID":142312,"NYPDID":null,"LegacyID":"0031996","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"16","LHi_Hyphen":"18","RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":16,"ToLeft":18,"FromRight":0,"ToRight":0,"Join_ID":"11121001000000P","SHAPE_Leng":91.587831},"id":155684},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00536222024918,40.74094950293069],[-74.00544214842873,40.74098214031182]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03030","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0271221","SegCount":"1","LocStatus":"X","XFrom":982764,"YFrom":209225,"XTo":982742,"YTo":209236,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020339","NodeIDTo":"9037792","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155786,"GenericID":142434,"NYPDID":null,"LegacyID":"0032041","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1483001000000","SHAPE_Leng":25.138958},"id":155786},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00544214842873,40.74098214031182],[-74.00697077794462,40.74162712658768]]},"properties":{"Street":"WEST 14 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4830","SeqNum":"03035","StreetCode":"134050","SAFStreetC":null,"SegmentID":"0271222","SegCount":"1","LocStatus":"X","XFrom":982742,"YFrom":209236,"XTo":982318,"YTo":209471,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037792","NodeIDTo":"0020338","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155791,"GenericID":142434,"NYPDID":null,"LegacyID":"0032041","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"400","LHi_Hyphen":"434","RLo_Hyphen":"401","RHi_Hyphen":"435","FromLeft":400,"ToLeft":434,"FromRight":401,"ToRight":435,"Join_ID":"1483001000000","SHAPE_Leng":484.411277},"id":155791},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00201937829873,40.740444089448076],[-74.00481580393163,40.74162322622853]]},"properties":{"Street":"WEST 15 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4835","SeqNum":"04040","StreetCode":"134070","SAFStreetC":null,"SegmentID":"0271225","SegCount":"1","LocStatus":null,"XFrom":983690,"YFrom":209040,"XTo":982916,"YTo":209470,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020472","NodeIDTo":"9037793","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155787,"GenericID":142435,"NYPDID":null,"LegacyID":"0032297","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1483501000000","SHAPE_Leng":886.031264},"id":155787},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00481580393163,40.74162322622853],[-74.00485969251613,40.74164623857275]]},"properties":{"Street":"WEST 15 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4835","SeqNum":"04045","StreetCode":"134070","SAFStreetC":null,"SegmentID":"0271226","SegCount":"1","LocStatus":null,"XFrom":982916,"YFrom":209470,"XTo":982903,"YTo":209478,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037793","NodeIDTo":"0020342","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155789,"GenericID":142435,"NYPDID":null,"LegacyID":"0032297","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"300","LHi_Hyphen":"398","RLo_Hyphen":"301","RHi_Hyphen":"399","FromLeft":300,"ToLeft":398,"FromRight":301,"ToRight":399,"Join_ID":"1483501000000","SHAPE_Leng":14.771747},"id":155789},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00485969251613,40.74164623857275],[-74.00493759935398,40.741674382130945]]},"properties":{"Street":"WEST 15 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4835","SeqNum":"04050","StreetCode":"134070","SAFStreetC":null,"SegmentID":"0271227","SegCount":"1","LocStatus":null,"XFrom":982903,"YFrom":209478,"XTo":982882,"YTo":209489,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020342","NodeIDTo":"9037794","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155788,"GenericID":142436,"NYPDID":null,"LegacyID":"0032046","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1483501000000","SHAPE_Leng":23.899847},"id":155788},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00493759935398,40.741674382130945],[-74.00745883310633,40.74273083933592]]},"properties":{"Street":"WEST 15 STREET","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"U","IncExFlag":null,"RB_Layer":"B","NonPed":null,"SpecAddr":null,"FaceCode":"4835","SeqNum":"04052","StreetCode":"134070","SAFStreetC":null,"SegmentID":"0271228","SegCount":"1","LocStatus":null,"XFrom":982882,"YFrom":209489,"XTo":982183,"YTo":209874,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037794","NodeIDTo":"9031071","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155792,"GenericID":142436,"NYPDID":null,"LegacyID":"0032046","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"400","LHi_Hyphen":"458","RLo_Hyphen":"401","RHi_Hyphen":"459","FromLeft":400,"ToLeft":458,"FromRight":401,"ToRight":459,"Join_ID":"1483501000000","SHAPE_Leng":797.657016},"id":155792},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00503925727287,40.7413199524226],[-74.00481580393163,40.74162322622853]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00037","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271230","SegCount":"1","LocStatus":null,"XFrom":982854,"YFrom":209360,"XTo":982916,"YTo":209470,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037795","NodeIDTo":"9037793","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":156544,"GenericID":0,"NYPDID":null,"LegacyID":"0000000","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"56","RHi_Hyphen":"66","FromLeft":0,"ToLeft":0,"FromRight":56,"ToRight":66,"Join_ID":"1335001000000","SHAPE_Leng":126.659892},"id":156544},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00485969251613,40.74164623857275],[-74.00444723308527,40.74223829634493]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"G","IncExFlag":null,"RB_Layer":"G","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00050","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271237","SegCount":"1","LocStatus":null,"XFrom":982903,"YFrom":209478,"XTo":983018,"YTo":209694,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020342","NodeIDTo":"9037798","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":0,"GenericID":142452,"NYPDID":null,"LegacyID":"0032047","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"69","LHi_Hyphen":"87","RLo_Hyphen":"68","RHi_Hyphen":"86","FromLeft":69,"ToLeft":87,"FromRight":68,"ToRight":86,"Join_ID":"1335001000000","SHAPE_Leng":244.115198},"id":0},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00444723308527,40.74223829634493],[-74.00441531105689,40.74228411844143]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"G","IncExFlag":null,"RB_Layer":"G","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00055","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271238","SegCount":"1","LocStatus":null,"XFrom":983018,"YFrom":209694,"XTo":983026,"YTo":209711,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037798","NodeIDTo":"0020470","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":0,"GenericID":142452,"NYPDID":null,"LegacyID":"0032047","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1335001000000","SHAPE_Leng":18.893173},"id":0},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00450593873828,40.742261715020916],[-74.00441531105689,40.74228411844143]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"T","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00056","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271239","SegCount":"1","LocStatus":null,"XFrom":983001,"YFrom":209703,"XTo":983026,"YTo":209711,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037799","NodeIDTo":"0020470","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155807,"GenericID":0,"NYPDID":null,"LegacyID":"0000000","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1335001000000","SHAPE_Leng":26.406531},"id":155807},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00443225775844,40.74223069012012],[-74.00441531105689,40.74228411844143]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"T","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00057","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271240","SegCount":"1","LocStatus":null,"XFrom":983022,"YFrom":209691,"XTo":983026,"YTo":209711,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037800","NodeIDTo":"0020470","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155808,"GenericID":0,"NYPDID":null,"LegacyID":"0000000","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1335001000000","SHAPE_Leng":20.024076},"id":155808},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00481580393163,40.74162322622853],[-74.00443225775844,40.74223069012012]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00038","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271242","SegCount":"1","LocStatus":null,"XFrom":982916,"YFrom":209470,"XTo":983022,"YTo":209691,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037793","NodeIDTo":"9037800","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":155808,"GenericID":0,"NYPDID":null,"LegacyID":"0000000","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"68","RHi_Hyphen":"86","FromLeft":0,"ToLeft":0,"FromRight":68,"ToRight":86,"Join_ID":"1335001000000","SHAPE_Leng":245.515661},"id":155808},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00531045306847,40.741020587797955],[-74.00508163528107,40.741335388687425]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"G","IncExFlag":null,"RB_Layer":"G","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00042","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271932","SegCount":"1","LocStatus":null,"XFrom":982778,"YFrom":209250,"XTo":982842,"YTo":209365,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037886","NodeIDTo":"0020340","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":0,"GenericID":143233,"NYPDID":null,"LegacyID":"0032042","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":"47","LHi_Hyphen":"57","RLo_Hyphen":"44","RHi_Hyphen":"54","FromLeft":47,"ToLeft":57,"FromRight":44,"ToRight":54,"Join_ID":"1335001000000","SHAPE_Leng":131.052544},"id":0},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00512553519455,40.740850212999504],[-74.00510951340397,40.7409342925781]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00035","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271933","SegCount":"1","LocStatus":null,"XFrom":982830,"YFrom":209188,"XTo":982834,"YTo":209219,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"0020341","NodeIDTo":"9037887","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":156544,"GenericID":0,"NYPDID":null,"LegacyID":"0032045","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":0,"ToLeft":0,"FromRight":0,"ToRight":0,"Join_ID":"1335001000000","SHAPE_Leng":30.952932},"id":156544},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.00510951340397,40.7409342925781],[-74.00503925727287,40.7413199524226]]},"properties":{"Street":"9 AVENUE","SAFStreetN":null,"FeatureTyp":"0","SegmentTyp":"R","IncExFlag":null,"RB_Layer":"R","NonPed":null,"SpecAddr":null,"FaceCode":"3350","SeqNum":"00036","StreetCode":"110910","SAFStreetC":null,"SegmentID":"0271934","SegCount":"1","LocStatus":null,"XFrom":982834,"YFrom":209219,"XTo":982854,"YTo":209360,"ArcCenterX":0,"ArcCenterY":0,"CurveFlag":null,"Radius":0,"NodeIDFrom":"9037887","NodeIDTo":"9037795","NodeLevelF":"M","NodeLevelT":"M","ConParity":null,"Twisted":null,"RW_TYPE":"1","PhysicalID":156544,"GenericID":0,"NYPDID":null,"LegacyID":"0032045","Status":"2","StreetWidt":0.0,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":"44","RHi_Hyphen":"54","FromLeft":0,"ToLeft":0,"FromRight":44,"ToRight":54,"Join_ID":"1335001000000","SHAPE_Leng":141.850494},"id":156544},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.01121091039423,40.739546633009944],[-74.01154666471888,40.73575674857831]]},"properties":{"Street":"13 AVENUE","SAFStreetN":null,"FeatureTyp":null,"SegmentTyp":null,"IncExFlag":null,"RB_Layer":null,"NonPed":null,"SpecAddr":null,"FaceCode":null,"SeqNum":null,"StreetCode":null,"SAFStreetC":null,"SegmentID":null,"SegCount":null,"LocStatus":null,"XFrom":null,"YFrom":null,"XTo":null,"YTo":null,"ArcCenterX":null,"ArcCenterY":null,"CurveFlag":null,"Radius":null,"NodeIDFrom":null,"NodeIDTo":null,"NodeLevelF":null,"NodeLevelT":null,"ConParity":null,"Twisted":null,"RW_TYPE":null,"PhysicalID":null,"GenericID":null,"NYPDID":null,"LegacyID":null,"Status":null,"StreetWidt":null,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":null,"ToLeft":null,"FromRight":null,"ToRight":null,"Join_ID":null,"SHAPE_Leng":null}},{"type":"Feature","geometry":{"type":"LineString","coordinates":[[-74.01102233604747,40.74310194935173],[-74.0113097969419,40.74172213705867]]},"properties":{"Street":"13 AVENUE","SAFStreetN":null,"FeatureTyp":null,"SegmentTyp":null,"IncExFlag":null,"RB_Layer":null,"NonPed":null,"SpecAddr":null,"FaceCode":null,"SeqNum":null,"StreetCode":null,"SAFStreetC":null,"SegmentID":null,"SegCount":null,"LocStatus":null,"XFrom":null,"YFrom":null,"XTo":null,"YTo":null,"ArcCenterX":null,"ArcCenterY":null,"CurveFlag":null,"Radius":null,"NodeIDFrom":null,"NodeIDTo":null,"NodeLevelF":null,"NodeLevelT":null,"ConParity":null,"Twisted":null,"RW_TYPE":null,"PhysicalID":null,"GenericID":null,"NYPDID":null,"LegacyID":null,"Status":null,"StreetWidt":null,"FCC":null,"LLo_Hyphen":null,"LHi_Hyphen":null,"RLo_Hyphen":null,"RHi_Hyphen":null,"FromLeft":null,"ToLeft":null,"FromRight":null,"ToRight":null,"Join_ID":null,"SHAPE_Leng":null}}]}
<!DOCTYPE html>
<html>
<head>
<title>Verification</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6/leaflet.css" />
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.6/leaflet.js"></script>
<script>
function init() {
var bounds = new L.LatLngBounds(
new L.LatLng(40.735298, -74.011990),
new L.LatLng(40.741829, -74.004839));
var map = L.map('map').fitBounds(bounds);
L.tileLayer('http://api.tiles.mapbox.com/v3/examples.map-zr0njcqy/{z}/{x}/{y}.png').addTo(map);
var options = {
minZoom: 15,
maxZoom: 19,
opacity: 1.0,
tms: false
};
L.tileLayer('{z}/{x}/{y}.png', options).addTo(map);
var west_village = new L.geoJson();
west_village.addTo(map);
var streets = [];
$.ajax({
dataType: "json",
url: "conflated.geojson",
success: function(data) {
$(data.features).each(function(key, data) {
if (data.geometry.type == 'LineString') {
west_village.addData(data);
} else {
// lat/lng vs. lng/lat, why can't we just agree one one!
L.marker([data.geometry.coordinates[1], data.geometry.coordinates[0]], {
title: data.properties.address
}).addTo(map);
}
});
}
}).error(function() {
console.error('Error loading geojson');
});
}
</script>
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body onload="init()">
<div id="map"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment