Last active
February 10, 2025 17:35
-
-
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
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
( | |
// 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