I’m trying to obtain a list of ways with the tourism=guest_house
tag in a specific region.
This query returns results as expected:
[out:json][timeout:25];
{{geocodeArea:"Les Preses"}}->.searchArea;
nwr["tourism"="guest_house"](area.searchArea);
out geom;
{{style:
node,way,relation {
text:name;
}
}}
This query, which searches in a bigger area encompassing that of the previous query, is missing one result: this way.
[out:json][timeout:25];
{{geocodeArea:"La Garrotxa"}}->.searchArea;
nwr["tourism"="guest_house"](area.searchArea);
out geom;
{{style:
node,way,relation {
text:name;
}
}}
I feel I must be missing something obvious, as the second query should only be a superset of the first one. And whose results would include also all results from the first one. Any insight will be appreciated. Thanks!