Skip to content

Instantly share code, notes, and snippets.

@xkr47
Last active June 9, 2019 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xkr47/fec3e3625b8aa422c340cbdb67527e83 to your computer and use it in GitHub Desktop.
Save xkr47/fec3e3625b8aa422c340cbdb67527e83 to your computer and use it in GitHub Desktop.
Handy queries for Overpass Turbo - https://overpass-turbo.eu
// 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;
// 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