Skip to content

Instantly share code, notes, and snippets.

@stephanbogner
Last active June 18, 2017 20:39
Show Gist options
  • Save stephanbogner/8762024c5bcfa06d6c84571a8dcfaa86 to your computer and use it in GitHub Desktop.
Save stephanbogner/8762024c5bcfa06d6c84571a8dcfaa86 to your computer and use it in GitHub Desktop.
Overpass Turbo Query Notes
// Query for a certain OSM ID in Overpass Turbo (https://overpass-turbo.eu/)
// e.g. for http://www.openstreetmap.org/way/329871559
// Replace the number below with the OSM ID
[out:json][timeout:25];
(
node(329871559);
way(329871559);
relation(329871559);
);
out body;
>;
out skel qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment