Overpass Turbo don't give me the correct results

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?

My query:
https://overpass-turbo.eu/s/1i8B

Try this:

[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;

But are you sure there are any?

Actually I am finding where this photo took
https://pbs.twimg.com/media/FRogR0CacAE03GN?format=jpg&name=large

I found it has a Thai Buddhist temple and a beach volleyball pitch in the photo so that I want to geolocate it using overpass turbo

So I am pretty sure I can filter and find the location using overpass turbo as he told me that this is took in Melbourne

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;

I have check the temples one by one and found the location, thank you!

Great! Was the beach volleyball court mapped? :slight_smile: