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
I found that there is a landuse=landfill tag, from https://wiki.openstreetmap.org/wiki/Map_Features
landuse=landfill
Using that, I made a query on this page: http://harrywood.co.uk/maps/uixapi/xapi.html
http://www.overpass-api.de/api/xapi?*[landuse=landfill][bbox=-118.66693,34.41951,-118.57801,34.46906]
Note this can only be used for very zoomed-in areas, so not for a view of a whole continent or country.
It shows this output in XML: https://gist.github.com/jywarren/5c0251c0ea3e4c38933bbf0a0d12fc7f
Including:
<tag k="name" v="Chiquita Canyon Landfill"/> <tag k="operator" v="Waste Connections Inc"/>
Looking for how this could be gotten in JSON; docs here: http://www.overpass-api.de/output_formats.html#json
And it works! See:
https://www.overpass-api.de/api/interpreter?data=[out:json];way[landuse=landfill](34.41951,-118.66693,34.46906,-118.57801);out%20meta;
It's a polygon, the outline of the landfill.
@sagarpreet-chadha, could we use this as an additional layer?
The text was updated successfully, but these errors were encountered:
For mines/quarries: http://www.overpass-api.de/api/xapi?*[landuse=quarry][bbox=-91,44,-90,45]
That helped me find one here: https://www.openstreetmap.org/#map=16/44.6346/-90.1409
Sorry, something went wrong.
Solved in #94 !
No branches or pull requests
I found that there is a
landuse=landfill
tag, from https://wiki.openstreetmap.org/wiki/Map_FeaturesUsing that, I made a query on this page: http://harrywood.co.uk/maps/uixapi/xapi.html
http://www.overpass-api.de/api/xapi?*[landuse=landfill][bbox=-118.66693,34.41951,-118.57801,34.46906]
Note this can only be used for very zoomed-in areas, so not for a view of a whole continent or country.
It shows this output in XML: https://gist.github.com/jywarren/5c0251c0ea3e4c38933bbf0a0d12fc7f
Including:
Looking for how this could be gotten in JSON; docs here: http://www.overpass-api.de/output_formats.html#json
And it works! See:
https://www.overpass-api.de/api/interpreter?data=[out:json];way[landuse=landfill](34.41951,-118.66693,34.46906,-118.57801);out%20meta;
It's a polygon, the outline of the landfill.
@sagarpreet-chadha, could we use this as an additional layer?
The text was updated successfully, but these errors were encountered: