source: josm/trunk/data/tagchecker.cfg@ 6340

Last change on this file since 6340 was 6277, checked in by Don-vip, 11 years ago

fix #9124 - do not consider lit=yes + amenity=parking* as suspicious

  • Property svn:eol-style set to native
File size: 19.0 KB
Line 
1# JOSM TagChecker validator file
2
3# Format:
4# Each line specifies a certain error to be reported
5# <data type> : messagetype : <key><expression><value>
6# Lines starting with a # are considered as comments.
7#
8# Data type can be:
9# node - a node point
10# way - a way
11# relation - a relation
12# * - all data types
13#
14# Message type can be:
15# E - an error
16# W - a warning
17# I - an low priority informational warning
18#
19# Key and value are expressions describing certain keys and values of these keys.
20# Regular expressions are supported. In this case the expressions starts and
21# ends with a / sign. If an 'i' is appended, the regular expression is
22# case insensitive. For instance, /foo|bar/i
23#
24# The * sign indicates any string.
25# The texts BOOLEAN_TRUE and BOOLEAN_FALSE in the value part indicate a special
26# handling for boolean values (yes, true, 0, false, no, ...).
27#
28# Expression can be:
29# != - the key/value combination does not match
30# == - the key/value combination does match
31#
32# To have more complicated expressions, multiple elements can be grouped together
33# with an logical and (&&).
34#
35# The comment at the end of a rule is displayed in validator description
36#
37# Empty lines and space signs are ignored
38
39way : W : highway == * && name == /.* (Ave|Blvd|Cct|Cir|Cl|Cr|Crct|Cres|Crt|Ct|Dr|Drv|Esp|Espl|Hwy|Ln|Mw|Mwy|Pl|Rd|Qy|Qys|Sq|St|Str|Ter|Tce|Tr|Wy)\.?$/i # abbreviated street name
40
41node : W : oneway == * # oneway tag on a node
42node : W : bridge == BOOLEAN_TRUE # bridge tag on a node
43node : W : highway == tertiary # wrong highway tag on a node
44node : W : highway == secondary # wrong highway tag on a node
45node : W : highway == residential # wrong highway tag on a node
46node : W : highway == unclassified # wrong highway tag on a node
47node : W : highway == track # wrong highway tag on a node
48way : I : highway == unclassified && name != * # Unnamed unclassified highway
49way : I : highway == secondary && ref != * # highway without a reference
50way : I : highway == tertiary && ref != * # highway without a reference
51way : I : highway == motorway && nat_ref != * # highway without a reference
52* : W : highway == road # temporary highway type
53* : W : / *name */i == * && name != * # misspelled key name
54
55# The following could replace unnamed way check. Still at the moment we keep it as it is
56#way : W : junction == roundabout && highway == /motorway|trunk|primary|secondary|tertiary|residential|pedestrian/ && /name|ref|(name:.*)|(.*_name)|(.*_ref)/ != * # Unnamed junction
57#way : W : highway == /motorway|trunk|primary|secondary|tertiary|residential|pedestrian/ && /name|ref|(name:.*)|(.*_name)|(.*_ref)/ != * # Unnamed
58
59way : W : highway == cycleway && bicycle == BOOLEAN_FALSE # cycleway with tag bicycle
60way : W : highway == footway && foot == BOOLEAN_FALSE # footway with tag foot
61#way : I : highway == cycleway && bicycle == * # cycleway with tag bicycle
62#way : I : highway == footway && foot == * # footway with tag foot
63way : W : highway == cycleway && cycleway == lane # separate cycleway as lane on a cycleway
64way : W : highway == * && barrier == * # barrier used on a way
65
66#way : I : waterway == * && layer != * # waterway without layer tag
67way : I : highway == footway && maxspeed == * # maxspeed used for footway
68way : I : highway == steps && maxspeed == * # maxspeed used for footway
69
70# see #5844, #6760
71#way : W : oneway != BOOLEAN_FALSE && /.*:(backward|forward)/ == * # oneway combined with *:backward/forward
72
73* : W : layer == /\+.*/ # layer tag with + sign
74
75* : I : name == /.*Strasse.*/i # street name contains ss
76
77relation : E : type != * # relation without type
78
79node : I : amenity == /restaurant|cafe|fast_food/ && name != * # restaurant without name
80#way : I : highway != * && railway != * && waterway != * && name == * # unusual named way type
81#* : W : natural == water && waterway == * # unusual tag combination (natural=water & waterway)
82* : W : highway == * && waterway == * && waterway != dam # unusual tag combination (highway & waterway)
83* : W : highway == * && natural == * # unusual tag combination (highway & natural)
84
85* : W : natural == water && leisure == swimming_pool # natural water used for swimming pool
86* : W : natural == water && amenity == swimming_pool # natural water used for swimming pool
87
88* : W : /\d+/ == * # numerical key
89
90# see #9071
91relation : W : type == route_master && route_master != * # route_master relation without route_master=*
92
93########################################
94# Rules derived from Taginfo statistics
95########################################
96
97# see ticket #5017
98# Taginfo query: select keypairs.key1, keypairs.key2, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key1='waterway' and keys.key=keypairs.key2 and (key1<>'highway' or keypairs.count_all>12000) and (key1<>'railway' or keypairs.count_all>3000) and (key1<>'waterway' or keypairs.count_all>800) and key2 not like '%:%' and from_fraction_all>0.97 and 1 union select keypairs.key2, keypairs.key1, keypairs.count_all, keys.count_all, cast(keypairs.count_all as real)/keys.count_all as from_fraction_all from keys, keypairs where key2='waterway' and keys.key=keypairs.key1 and (key2<>'highway' or keypairs.count_all>12000) and (key2<>'railway' or keypairs.count_all>3000) and (key2<>'waterway' or keypairs.count_all>800) and key1 not like '%:%' and from_fraction_all>0.97 and 1 order by keypairs.count_all desc limit 1000;
99* : W : incline == * && highway != * && railway != * # incline without highway or railway
100way : W : junction == * && highway != * # junction without highway
101* : W : lanes == * && highway != * # lanes without highway
102* : W : lcn == * && highway != * # lcn without highway
103* : W : lit == * && highway != * && amenity != /parking.*/ && public_transport != platform # lit without highway/parking/platform
104* : W : living_street == * && highway != * # living_street without highway
105* : W : maintenance == * && highway != * # maintenance without highway
106* : W : median == * && highway != * # median without highway
107* : W : motorroad == * && highway != * # motorroad without highway
108* : W : ntd_id == * && highway != * # ntd_id without highway
109* : W : oneway == * && highway != * && railway != * # oneway without highway or railway
110* : W : sac_scale == * && highway != * # sac_scale without highway
111* : W : segregated == * && highway != * # segregated without highway
112* : W : sidewalk == * && highway != * # sidewalk without highway
113* : W : smoothness == * && highway != * # smoothness without highway
114* : W : snowplowing == * && highway != * # snowplowing without highway
115* : W : step_count == * && highway != * # step_count without highway
116* : W : toll == * && highway != * && route != ferry # toll without highway
117* : W : tracktype == * && highway != * # tracktype without highway
118* : W : trail_visibility == * && highway != * # trail_visibility without highway
119* : W : trolley_wire == * && highway != * # trolley_wire without highway
120* : W : zip_left == * && highway != * # zip_left without highway
121* : W : zip_right == * && highway != * # zip_right without highway
122* : W : detail == * && railway != * # detail without railway
123* : W : eddy_current_brake == * && railway != * # eddy_current_brake without railway
124* : W : electrified == * && railway != * # electrified without railway
125* : W : etcs == * && railway != * # etcs without railway
126* : W : gauge == * && railway != * # gauge without railway
127* : W : grade_of_track == * && railway != * # grade_of_track without railway
128* : W : kursbuchstrecke == * && railway != * # kursbuchstrecke without railway
129* : W : lzb == * && railway != * # lzb without railway
130* : W : old_railway_operator == * && railway != * # old_railway_operator without railway
131* : W : operating_procedure == * && railway != * # operating_procedure without railway
132* : W : pzb == * && railway != * # pzb without railway
133* : W : radio == * && railway != * # radio without railway
134* : W : structure_gauge == * && railway != * # structure_gauge without railway
135* : W : tilting_technology == * && railway != * # tilting_technologie without railway
136* : W : track_class == * && railway != * # track_class without railway
137* : W : tracks == * && railway != * # tracks without railway
138* : W : traffic_mode == * && railway != * # traffic_mode without railway
139* : W : usage == * && railway != * # usage without railway
140* : W : workrules == * && railway != * # workrules without railway
141* : W : stream == * && waterway != * # stream without waterway
142* : W : intermittent == * && waterway != * # intermittent without waterway
143* : W : boat == * && waterway != * && natural != water # boat without waterway / natural=water
144* : W : length_unit == * && waterway != * # length_unit without waterway
145* : W : llid == * && waterway != * # llid without waterway
146* : W : canal == * && waterway != * # canal without waterway
147* : W : have_riverbank == * && waterway != * # have_riverbank without waterway
148* : W : tunnel == * && highway != * && railway != * && waterway != * # tunnel without highway/railway/waterway
149* : W : bridge == * && highway != * && railway != * && waterway != * && piste:type != * # bridge without highway/railway/waterway/piste
150* : W : psv == * && highway != * && railway != * && waterway != * # psv without highway/railway/waterway
151* : W : width == * && highway != * && railway != * && waterway != * && aeroway != * && cycleway != * && footway != * && barrier != * && man_made != * # width without physical linear feature
152* : W : maxspeed == * && highway != * && railway != * && traffic_sign != /(.*;)?maxspeed(;.*)?/ && type != enforcement # maxspeed without highway/railway/traffic_sign
153* : W : fence_type == * && barrier != fence # fence_type without barrier=fence
154* : W : border_type == * && boundary != * # border_type without boundary
155* : W : recycling_type == * && amenity != recycling # recycling_type without amenity=recycling
156* : W : board_type == * && information != board # board_type without information=board
157* : W : shelter_type == * && amenity != shelter # shelter_type without amenity=shelter
158* : W : lamp_type == * && highway != street_lamp # lamp_type without highway=street_lamp
159* : W : building_type == * && building != * # building_type without building
160* : W : map_type == * && information != map # map_type without information=map
161* : W : site_type == * && historic != archaeological_site # site_type without historic=archaeological_site
162* : W : artwork_type == * && tourism != artwork # artwork_type without tourism=artwork
163* : W : castle_type == * && historic != castle # castle_type without historic=castle
164* : W : reservoir_type == * && landuse != reservoir && water != reservoir # reservoir_type without landuse/water=reservoir
165* : W : bunker_type == * && military != bunker # bunker_type without military=bunker
166
167################################
168# Religion / Denomination tests
169################################
170
171* : I : religion == /christian|jewish|muslim/ && denomination != * # religion without denomination
172* : I : religion == christian && denomination == * && denomination != /anglican|apostolic|baptist|catholic|christian_community|christian_scientist|coptic_orthodox|czechoslovak_hussite|dutch_reformed|evangelical|foursquare|greek_orthodox|jehovahs_witness|kabbalah|karaite|living_waters_church|lutheran|maronite|mennonite|methodist|mormon|new_apostolic|nondenominational|old_catholic|orthodox|pentecostal|presbyterian|protestant|quaker|roman_catholic|russian_orthodox|salvation_army|serbian_orthodox|seventh_day_adventist|united|united_reformed|uniting/ # unknown christian denomination
173* : I : religion == muslim && denomination == * && denomination != /alaouite|druze|ibadi|ismaili|nondenominational|shia|sunni/ # unknown muslim denomination
174* : I : religion == jewish && denomination == * && denomination != /alternative|ashkenazi|conservative|hasidic|humanistic|liberal|modern_orthodox|neo_orthodox|nondenominational|orthodox|progressive|reconstructionist|reform|renewal|samaritan|ultra_orthodox/ # unknown jewish denomination
175
176#####################################
177# validation for the wikipedia=* tag
178#####################################
179
180# see ticket #8383
181# If there is no language at all, this is broken. Also catches 'wikipedia' used as 'email', 'website', 'ele' [sic!] ...
182* : E : wikipedia == * && wikipedia != /[a-zA-Z_-]{2,12}:.*/ # no wikipedia-language given, use ''wikipedia''=''language:page title''
183# Valid languages are extracted from <http://de.wikipedia.org/w/api.php?action=sitematrix&format=xml>, which may change, so this is a warning only.
184* : W : wikipedia == /[a-zA-Z_-]{2,12}:.*/ && wikipedia != /(aa|ab|ace|af|ak|als|am|an|ang|ar|arc|arz|as|ast|av|ay|az|ba|bar|bat-smg|bcl|be|be-x-old|bg|bh|bi|bjn|bm|bn|bo|bpy|br|bs|bug|bxr|ca|cbk-zam|cdo|ce|ceb|ch|cho|chr|chy|ckb|co|cr|crh|cs|csb|cu|cv|cy|cz|da|de|diq|dk|dsb|dv|dz|ee|el|eml|en|eo|epo|es|et|eu|ext|fa|ff|fi|fiu-vro|fj|fo|fr|frp|frr|fur|fy|ga|gag|gan|gd|gl|glk|gn|got|gu|gv|ha|hak|haw|he|hi|hif|ho|hr|hsb|ht|hu|hy|hz|ia|id|ie|ig|ii|ik|ilo|io|is|it|iu|ja|jbo|jp|jv|ka|kaa|kab|kbd|kg|ki|kj|kk|kl|km|kn|ko|koi|kr|krc|ks|ksh|ku|kv|kw|ky|la|lad|lb|lbe|lez|lg|li|lij|lmo|ln|lo|lt|ltg|lv|map-bms|mdf|mg|mh|mhr|mi|minnan|mk|ml|mn|mo|mr|mrj|ms|mt|mus|mwl|my|myv|mzn|na|nah|nan|nap|nb|nds|nds-nl|ne|new|ng|nl|nn|no|nov|nrm|nso|nv|ny|oc|om|or|os|pa|pag|pam|pap|pcd|pdc|pfl|pi|pih|pl|pms|pnb|pnt|ps|pt|qu|rm|rmy|rn|ro|roa-rup|roa-tara|ru|rue|rw|sa|sah|sc|scn|sco|sd|se|sg|sh|si|simple|sk|sl|sm|sn|so|sq|sr|srn|ss|st|stq|su|sv|sw|szl|ta|te|tet|tg|th|ti|tk|tl|tn|to|tpi|tr|ts|tt|tum|tw|ty|udm|ug|uk|ur|uz|ve|vec|vep|vi|vls|vo|wa|war|wo|wuu|xal|xh|xmf|yi|yo|za|zea|zh|zh-cfr|zh-classical|zh-min-nan|zh-yue|zu):.*/ # unknown language prefix in wikipedia tag
185
186# measurement values and units warnings (ticket #8687)
187way : W : layer == * && layer != /^0$|^-?[1-5]$/ # layer should be between -5 and 5
188* : W : level == * && level != /^((([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)(;(([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)*$|^-0\.5$/ # level should be numbers with optional .5 increments
189* : W : height == * && height != /^(([0-9]+\.?[0-9]*( m)?)|([1-9][0-9]*\'((10|11|[0-9])((\.[0-9]+)?)\")?))$/ # meters is default; period is separator; if units, put space then unit
190
191* : W : maxheight == * && maxheight != /^(([1-9][0-9]*(\.[0-9]+)?( m)?)|([0-9]+\'([0-9]|10|11)(\.[0-9]*)?\"))$/ # meters is default; period is separator; if units, put space then unit
192way : W : width == * && width != /^(([0-9]+\.?[0-9]*( [a-z]+)?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/ # meters is default; period is separator; if units, put space then unit
193* : W : maxwidth == * && maxwidth != /^(([0-9]+\.?[0-9]*( m)?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/ # meters is default; period is separator; if units, put space then unit
194way : W : maxspeed == * && maxspeed != /^(signals|none|unposted|unknown|variable|walk|[1-9][0-9]*( [a-z]+)?|[A-Z][A-Z]:(urban|rural|living_street|motorway))$/ # unusual maxspeed format
195way : W : voltage == * && voltage == /(.*[A-Za-z].*)|.*,.*|.*( ).*/ # voltage should be in volts with no units/delimiter/spaces
196# some users are using frequency for other purposes (not electromagnetic) with the values 'perennial' and 'intermittent'; the vast majority are 0, 16.7, 50 and 60
197way : W : frequency == * && frequency != /^(0|[1-9][0-9]*(\.[0-9]+)?)( (kHz|MHz|GHz|THz))?$/ # unusual frequency specification
198way : W : gauge == * && gauge != /^([1-9][0-9]{1,3}(;[1-9][0-9]{1,3})*|broad|standard|narrow)$/ # unusual train track gauge; use mm with no separator
199# the numbers for percentage and degrees include could probably be bracketed a bit more precisely
200way : W : incline == * && incline != /^(up|down|-?([0-9]+?(\.[1-9]%)?|100)[%°]?)$/ # unusual incline; use percentages/degrees or up/down
Note: See TracBrowser for help on using the repository browser.