For the purpose of quality checks I would like to find objects that are close to each other that use the same tag, in this example amenity=fire_station. So I basically need the overpass-turbo translation for:
Show me every object that is tagged amenity=fire_station if there is another object tagged amenity=fire_station within a 100 meter radius.
How can I do this? I think the solution will probably include nwr["amenity"="fire_station"](around:100); but I can’t get it working.
Disclaimer
I read somewhere that the practice of tagging every building of a fire station with amenity=fire_station is normal in some areas but I do not remember where I found that. The question whether that is good practice or not is not the topic here. I just want to investigate the situation for now.
Unfortunatly the code still does not work. I tried creating a MapRoulette-Challenge containing all possible dublicats of amenity=fire_station in South Australia (AU-SA). I used this code:
The overpass-querry seems to show every relevant way but also every node of the way. So for 2 buidlings tagged amenity=fire_station I get 10 challenges. Additionally there is one node with amenity=fire_station in one of the buidlings. I would have expected three challenges, one for each occurance of amenity=fire_station.