Created
January 10, 2017 16:04
-
-
Save joeyklee/ff2df0fed926ccc5126fc4e350bc1708 to your computer and use it in GitHub Desktop.
Query: Overpass-turbo Buildings
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
<!-- | |
This has been generated by the overpass-turbo wizard. | |
Gets back buildings | |
--> | |
<osm-script output="json" timeout="25"> | |
<!-- gather results --> | |
<union> | |
<!-- query part for: “building” --> | |
<query type="way"> | |
<has-kv k="building"/> | |
<bbox-query {{bbox}}/> | |
</query> | |
<query type="relation"> | |
<has-kv k="building"/> | |
<bbox-query {{bbox}}/> | |
</query> | |
</union> | |
<!-- print results --> | |
<print mode="body"/> | |
<recurse type="down"/> | |
<print mode="skeleton" order="quadtile"/> | |
</osm-script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment