Skip to content

Instantly share code, notes, and snippets.

@eric-pommereau
Created July 4, 2014 05:35
Show Gist options
  • Save eric-pommereau/aa2f121e952c75db16a9 to your computer and use it in GitHub Desktop.
Save eric-pommereau/aa2f121e952c75db16a9 to your computer and use it in GitHub Desktop.
Overpass Searches
<!-- Les PEI de l'emprise courante-->
<osm-script output="json" timeout="25">
<query type="node">
<has-kv k="emergency" v="fire_hydrant"/>
<bbox-query {{bbox}}/>
</query>
<print mode="meta"/>
</osm-script>
<!-- Arrondissements en France -->
<osm-script output="xml" timeout="25">
<!-- gather results -->
<union>
<query type="relation">
<has-kv k="boundary" v="administrative"/>
<has-kv k="admin_level" v="9"/>
<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