Skip to content

Instantly share code, notes, and snippets.

@joeyklee
Created January 10, 2017 16:04
Show Gist options
  • Save joeyklee/ff2df0fed926ccc5126fc4e350bc1708 to your computer and use it in GitHub Desktop.
Save joeyklee/ff2df0fed926ccc5126fc4e350bc1708 to your computer and use it in GitHub Desktop.
Query: Overpass-turbo Buildings
<!--
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