Overpass Queries

Ways with incorrect name format

(See UT Naming Conventions)

[out:json][timeout:25]; (
  way["name"~"^(North|East|South|West)"]({{bbox}});
); out body; >; out skel qt;Run it

Todo: Roads with names beginning with digit but no prefix tag

Roads with no bike lane info

[out:json][timeout:25]; (
  way["highway"="residential"]["cycleway"!~".*"]({{bbox}});
  way["highway"="unclassified"]["cycleway"!~".*"]({{bbox}});
  way["highway"="tertiary"]["cycleway"!~".*"]({{bbox}});
  way["highway"="secondary"]["cycleway"!~".*"]({{bbox}});
  way["highway"="primary"]["cycleway"!~".*"]({{bbox}});
  way["highway"="trunk"]["cycleway"!~".*"]({{bbox}});
); out body; >; out skel qt;Run it

Ways with TIGER Tags

[out:json][timeout:25]; (
  way[~"^tiger:.*$"~"."]({{bbox}});
); out body; >; out skel qt;Run it

Ways with name_1 etc.

[out:json][timeout:25]; (
  node["name_1"]({{bbox}});
  way["name_1"]({{bbox}});
  relation["name_1"]({{bbox}});
  node["name_2"]({{bbox}});
  way["name_2"]({{bbox}});
  relation["name_2"]({{bbox}});
  node["name_3"]({{bbox}});
  way["name_3"]({{bbox}});
  relation["name_3"]({{bbox}});
); out body; >; out skel qt;Run it

Todo: Ways with no name or ref tag (FS roads)