Created
August 23, 2014 11:02
-
-
Save gasp/9f3362e653cd2471d6ae to your computer and use it in GitHub Desktop.
OSM query for operator=RAPT, is this a singularity ?
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
<!-- | |
RATP or RAPT ? | |
--> | |
<osm-script output="json" timeout="25"> | |
<!-- gather results --> | |
<union> | |
<!-- query part for: “operator=rapt” --> | |
<query type="node"> | |
<has-kv k="operator" v="RAPT"/> | |
<bbox-query s="48.8326901185081" w="2.325925827026367" n="48.86477122456225" e="2.379741668701172"/> | |
</query> | |
<query type="way"> | |
<has-kv k="operator" v="RAPT"/> | |
<bbox-query s="48.8326901185081" w="2.325925827026367" n="48.86477122456225" e="2.379741668701172"/> | |
</query> | |
<query type="relation"> | |
<has-kv k="operator" v="RAPT"/> | |
<bbox-query s="48.8326901185081" w="2.325925827026367" n="48.86477122456225" e="2.379741668701172"/> | |
</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