Advertisement
CristianCantoro

Overpass_turbo_query_parkings

Sep 24th, 2013
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.76 KB | None | 0 0
  1. <!--
  2. This query find all parking (nodes or ways, i.e. areas) without a fee in the current bounding box
  3. -->
  4. <union>
  5. <query type="node">
  6.   <has-kv k="amenity" v="parking"/>
  7.   <bbox-query {{bbox}}/><!--this is auto-completed with the
  8.                   current map view coordinates.-->
  9. </query>
  10. <query type="way">
  11.   <has-kv k="amenity" v="parking"/>
  12.   <has-kv k="fee" modv="not" v="yes"/>
  13.   <bbox-query {{bbox}}/><!--this is auto-completed with the
  14.                   current map view coordinates.-->
  15. </query>
  16. <query type="way">
  17.   <has-kv k="parking" />
  18.   <has-kv k="fee" modv="not" v="yes"/>
  19.   <bbox-query {{bbox}}/><!--this is auto-completed with the
  20.                   current map view coordinates.-->
  21. </query>
  22. <recurse type="down"/>
  23. </union>
  24.  
  25. <print/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement