Skip to content

Instantly share code, notes, and snippets.

@d3netxer
Last active January 30, 2022 06:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save d3netxer/9873d33c28ec10739384 to your computer and use it in GitHub Desktop.
Save d3netxer/9873d33c28ec10739384 to your computer and use it in GitHub Desktop.
overpass-turbo query to get all buildings, highways, and major points of interest from bounding box
(
// get all buildings
way[building]({{bbox}});
// get all roads
way[highway]({{bbox}});
// get important POIs
node[leisure]({{bbox}});
node[sport]({{bbox}});
node[man_made]({{bbox}});
node[historic]({{bbox}});
node[tunnel]({{bbox}});
);
out meta;
>;
out meta qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment