SHOW:
|
|
- or go back to the newest paste.
1 | <!-- | |
2 | This is a test from Overpass_turbo_query_parkings <http://pastebin.com/t8cewrKN> | |
3 | This query find all parking (nodes or ways, i.e. areas) without a fee in the current bounding box | |
4 | --> | |
5 | <union> | |
6 | <query type="node"> | |
7 | <has-kv k="amenity" v="parking"/> | |
8 | <bbox-query {{bbox}}/><!--this is auto-completed with the | |
9 | current map view coordinates.--> | |
10 | </query> | |
11 | <query type="way"> | |
12 | <has-kv k="amenity" v="parking"/> | |
13 | <has-kv k="fee" modv="not" v="yes"/> | |
14 | <bbox-query {{bbox}}/><!--this is auto-completed with the | |
15 | current map view coordinates.--> | |
16 | </query> | |
17 | <query type="way"> | |
18 | <has-kv k="parking" /> | |
19 | <has-kv k="fee" modv="not" v="yes"/> | |
20 | <bbox-query {{bbox}}/><!--this is auto-completed with the | |
21 | current map view coordinates.--> | |
22 | </query> | |
23 | <recurse type="down"/> | |
24 | </union> | |
25 | ||
26 | <print/> |