Created
August 20, 2024 22:37
-
-
Save gquittet/7dc542deba1d7486bd7f55aaa3b8d66b to your computer and use it in GitHub Desktop.
Overpass API - Find near location recycling center
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This has been generated by the overpass-turbo wizard. | |
The original search was: | |
“aminity=*” | |
*/ | |
[out:json]; | |
// gather results | |
( | |
// query part for: “aminity=*” | |
node["amenity"="recycling"]["recycling_type"="centre"]["ownership"!="private"](around:10000,lat,lon); | |
node["amenity"="recycling"]["recycling_type"="container"]["recycling:wood"="yes"]["recycling:green_waste"="yes"]["ownership"!="private"](around:10000,lat,lon); | |
); | |
// print results | |
out qt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment