Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gquittet/7dc542deba1d7486bd7f55aaa3b8d66b to your computer and use it in GitHub Desktop.
Save gquittet/7dc542deba1d7486bd7f55aaa3b8d66b to your computer and use it in GitHub Desktop.
Overpass API - Find near location recycling center
/*
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