We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For a given lat/lon, find out the BIN.
The current workaround is to find an address on that block, and browse that block.
The text was updated successfully, but these errors were encountered:
https://data.cityofnewyork.us/Housing-Development/Building-Footprints/nqwf-w8eh shows BINs and links to open data for buildings. From there, we find out we can reverse geocode a BIN like https://data.cityofnewyork.us/api/geospatial/7w4b-tj9d?lat=40.73438696737975&lng=-73.9594219014033&zoom=17 , documented at https://dev.socrata.com/foundry/data.cityofnewyork.us/7w4b-tj9d
https://www.nyc.gov/site/planning/data-maps/open-data/dwn-pluto-mappluto.page has the open data we'd need for BBLs. A BBL can be reverse geocoded from https://planninglabs.carto.com/api/v2/sql?q=SELECT%20bbl%20FROM%20dcp_mappluto%20where%20ST_intersects(ST_MakePoint(-73.958434%2C40.740195)%3A%3Ageography%2C%20the_geom)%20LIMIT%2010%3B&format=json . Other available formats include geojson and csv - try https://planninglabs.carto.com/api/v2/sql?q=SELECT%20*%20FROM%20dcp_mappluto%20where%20ST_intersects(ST_MakePoint(-73.958434%2C40.740195)%3A%3Ageography%2C%20the_geom)%20LIMIT%2010%3B&format=geojson
Sorry, something went wrong.
No branches or pull requests
For a given lat/lon, find out the BIN.
The current workaround is to find an address on that block, and browse that block.
The text was updated successfully, but these errors were encountered: