Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jnsprnw/54955a22114a9a195e922a73b4857fa2 to your computer and use it in GitHub Desktop.
Save jnsprnw/54955a22114a9a195e922a73b4857fa2 to your computer and use it in GitHub Desktop.

Go to https://www.openstreetmap.org/ and make a right-click on the object and select »object request«. See if it’s an node, way, relation or area and copy the id in the parentheses.

Open https://overpass-turbo.eu/ and type:

Node (Single Point)

(node(265576692);>;);
out skel;

Way (Could be a outline of a building as well)

(way(24448328);>;);
out skel;

Relation (A relation is a group of elements. Could be administrative boundaries)

(rel(4773565);>;);
out skel;

Find more information here: https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_QL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment