Can someone help me by building a query that finds objects with long names (say >30 characters) in the name= tag that don’t also have a short_name= tag. I’d like to use it to find names that are likely to be descriptions instead of true names. Such a query might be used to create a quality control tool to find suspiciously long names for objects.
2 Likes
Something like this?
[out:xml][timeout:60][bbox:{{bbox}}];
nwr[name~".{31,}"][!short_name];
out geom;
2 Likes
Why not using osm inspector?