Hi,
is it possible to find via Overpass turbo a list of all tags for certain elements in a certain area?
f.e. all tags of amenity=school (node, way) in city Breda using xml output.
See the documentation:
area[name="Breda"];
nw[amenity=school](area);
out geom;
Use
area[name="Breda"];
out tags;
and then pick a specific unique tag if you want e.g. Breda in the Netherlands:
area["ref:gemeentecode"="0758"];
nw[amenity=school](area);
out geom;
Thanks, works well.