-
Notifications
You must be signed in to change notification settings - Fork 103
Closed
Labels
Description
I have found an interesting in <area> problem, but I don't know, how I can fix.
- // the original issue : github.com/tyrasd/overpass-turbo/issues/335 was redirected here //
Test example:
- Wizard:
"amenity"="atm" in 'Antarctica'- no result - URL: https://overpass-turbo.eu/?w=%22amenity%22%3D%22atm%22+in+%27Antarctica%27&R
Expected behavior :
1 result:
- https://www.openstreetmap.org/node/3611155242
- this is inside in the overpass database http://overpass-turbo.eu/s/r2L
<node id="3611155242" visible="true" version="2" changeset="47272585" timestamp="2017-03-29T20:01:07Z" user="herried" uid="5580970" lat="-77.8461465" lon="166.6679804">
<tag k="amenity" v="atm"/>
<tag k="drive_through" v="no"/>
<tag k="name" v="Wells Fargo ATM"/>
<tag k="note" v="Only ATM on Antarctica"/>
<tag k="operator" v="Wells Fargo"/>
<tag k="source" v="Wikipedia"/>
</node>Actual behavior:
0 result
Generated OVERPASS QL:
[out:json]
[timeout:25]
;
area(3602186646)->.searchArea;
(
node
["amenity"="atm"]
(area.searchArea);
way
["amenity"="atm"]
(area.searchArea);
relation
["amenity"="atm"]
(area.searchArea);
);
out;
>;
out skel qt;
Probably find this area r2186646 name=Antarctica
OSM Relation Analyzer: r2186646 => Great! This relation seems ok.
CONTEXT:
I am customizing Taginfo for Antarctica ( Geofabrik extract ),
and this basic setting is not working for Antarctica.
"turbo": {
"max_auto": 1000,
"url_prefix": "https://overpass-turbo.eu/?",
"wizard_area": "in 'Antarctica'"
},
with the above config, Taginfo generates this query:
https://overpass-turbo.eu/?w=%22amenity%22%3D%22atm%22+in+%27Antarctica%27&R
but in this case, it is not working.