I want to find beach volleyball courts which has buddhist temple within 100m in Melbourne, and I have build my query but IDK why overpass turbo will give me results which doesn’t related to what I want to find. How can I let overpass turbo can give me results that I want?
[out:json][timeout:250];
(nwr["amenity"="place_of_worship"]["religion"="buddhist"]({{bbox}});)->.temple;
(nwr["leisure"="pitch"]["sport"="beachvolleyball"]({{bbox}});)->.pitch;
nwr.pitch(around.temple:100);
out body;
>;
out skel qt;
You can’t be sure if this pitch is mapped. Or it can be mapped without “sport” tag. But I assume that such large obejcts as templates are all mapped.
Let’s check:
[out:json][timeout:250];
nwr["leisure"="pitch"]["sport"="beachvolleyball"]({{bbox}});
out body;
>;
out skel qt;
There are only two beach volleyball courts mapped in Melbourne. So you can visually check these areas. If none of them then check all of the buddist temples:
[out:json][timeout:250];
nwr["amenity"="place_of_worship"]["religion"="buddhist"]({{bbox}});
out body;
>;
out skel qt;