Last active
June 9, 2019 19:36
-
-
Save xkr47/fec3e3625b8aa422c340cbdb67527e83 to your computer and use it in GitHub Desktop.
Handy queries for Overpass Turbo - https://overpass-turbo.eu
This file contains hidden or 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
// Handy search for POI objects - just swap `shop=kiosk` out for any `key=value` osm tag | |
( | |
node[shop=kiosk]({{bbox}}); | |
way[shop=kiosk]({{bbox}}); | |
rel[shop=kiosk]({{bbox}}); | |
); | |
(._;>;); | |
out; |
This file contains hidden or 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
// if you know a relation id, show it as a way | |
[out:json][timeout:25]; | |
relation(xxx); // put relation id instead of xxx | |
>; | |
out skel qt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment