Last active
August 29, 2015 14:13
-
-
Save ajzeigert/e4cf5805f46553ce0b02 to your computer and use it in GitHub Desktop.
Overpass query for QGIS demo
This file contains 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
<osm-script output="json" timeout="25"> | |
<!-- bike routes --> | |
<query type="way"> | |
<has-kv k="bicycle" regv="^(yes)$"/> | |
<has-kv k="highway" regv="^(path)$"/> | |
<bbox-query {{bbox}}/> | |
</query> | |
<!-- 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