User:Ff5722/Finding errors

From OpenStreetMap Wiki
Jump to navigation Jump to search

Overpass scripts to find common (or hopefully less common) tagging errors or just to find specific features.

Misspelled keys

Use this as the search criterion, replace 'WRONG_KEY' by the key you're looking for. It finds all ways with this key, regardless of the tag value.


way[~"^WRONG_KEY"~"."];

Wrong access tags

http://overpass-turbo.eu/s/jRe

Nodes without tags, not part of a way

(WIP) [bbox:(bbox={{{minlon}}},{{{minlat}}},{{{maxlon}}},{{{maxlat}}})];
node; - way<;->.n1;
out meta;

Alternative version (also doesn't seem to work) https://gist.github.com/ianlopez1115/ff66ed24ba2287dc606741ffa32d9a40

Residential landuse tagged as village

http://overpass-turbo.eu/s/kjg

步行街 without highway=pedestrian

http://overpass-turbo.eu/s/klI

Nodes part of way, with specific tag

http://overpass-turbo.eu/s/6P7[1]

Fixme notes

http://overpass-turbo.eu/s/koS[2]

Mixture of Latin and other alphabet in name

http://overpass-turbo.eu/s/l6s [3]

Objects last edited by particular user

http://overpass-turbo.eu/s/mWj

Sources