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

Last change on this file since 6418 was 6418, checked in by Don-vip, 10 years ago

fix #9369 - tagchecker: rework basic checks on highways

  • Property svn:eol-style set to native
File size: 19.6 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 == /motorway*|trunk*|primary*|secondary*|tertiary*|unclassified|residential|service|living_street|pedestrian|track|path|footway/ # wrong highway tag on a node
44way : W : /highway|railway/ == crossing # wrong crossing tag on a way
45way : I : highway == unclassified && name != * # Unnamed unclassified highway
46way : I : highway == /motorway|trunk|primary|secondary/ && ref != * # highway without a reference
47* : W : highway == road # temporary highway type
48* : W : / *name */i == * && name != * # misspelled key name
49
50# The following could replace unnamed way check. Still at the moment we keep it as it is
51#way : W : junction == roundabout && highway == /motorway|trunk|primary|secondary|tertiary|residential|pedestrian/ && /name|ref|(name:.*)|(.*_name)|(.*_ref)/ != * # Unnamed junction
52#way : W : highway == /motorway|trunk|primary|secondary|tertiary|residential|pedestrian/ && /name|ref|(name:.*)|(.*_name)|(.*_ref)/ != * # Unnamed
53
54way : W : highway == cycleway && bicycle == BOOLEAN_FALSE # cycleway with tag bicycle
55way : W : highway == footway && foot == BOOLEAN_FALSE # footway with tag foot
56#way : I : highway == cycleway && bicycle == * # cycleway with tag bicycle
57#way : I : highway == footway && foot == * # footway with tag foot
58way : W : highway == cycleway && cycleway == lane # separate cycleway as lane on a cycleway
59way : W : highway == * && barrier == * # barrier used on a way
60
61#way : I : waterway == * && layer != * # waterway without layer tag
62way : I : highway == footway && maxspeed == * # maxspeed used for footway
63way : I : highway == steps && maxspeed == * # maxspeed used for footway
64
65# see #5844, #6760
66#way : W : oneway != BOOLEAN_FALSE && /.*:(backward|forward)/ == * # oneway combined with *:backward/forward
67
68* : W : layer == /\+.*/ # layer tag with + sign
69
70* : I : name == /.*Strasse.*/i # street name contains ss
71
72relation : E : type != * # relation without type
73
74node : I : amenity == /restaurant|cafe|fast_food/ && name != * # restaurant without name
75#way : I : highway != * && railway != * && waterway != * && name == * # unusual named way type
76#* : W : natural == water && waterway == * # unusual tag combination (natural=water & waterway)
77* : W : highway == * && waterway == * && waterway != dam # unusual tag combination (highway & waterway)
78* : W : highway == * && natural == * # unusual tag combination (highway & natural)
79
80* : W : natural == water && leisure == swimming_pool # natural water used for swimming pool
81* : W : natural == water && amenity == swimming_pool # natural water used for swimming pool
82
83* : W : /\d+/ == * # numerical key
84
85# see #9071
86relation : W : type == route_master && route_master != * # route_master relation without route_master=*
87
88# power related stuff (incomplete)
89* : W : power == /line|minor_line|cable/ && voltage != * # power line without voltage
90* : W : substation == * && power != substation # substation key without power=substation
91* : W : transformer == * && power != * # transformer key without power
92* : I : power == substation && substation != * # missing substation=*
93* : I : power == transformer && transformer != * # missing transformer=*
94
95########################################
96# Rules derived from Taginfo statistics
97########################################
98
99# see ticket #5017
100# 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;
101* : W : incline == * && highway != * && railway != * # incline without highway or railway
102way : W : junction == * && highway != * # junction without highway
103* : W : lanes == * && highway != * # lanes without highway
104* : W : lcn == * && highway != * # lcn without highway
105* : W : lit == * && highway != * && railway != * && piste:type != * && amenity != /parking.*/ && public_transport != platform # lit without highway/railway/piste/parking/platform
106* : W : living_street == * && highway != * # living_street without highway
107* : W : maintenance == * && highway != * # maintenance without highway
108* : W : median == * && highway != * # median without highway
109* : W : motorroad == * && highway != * # motorroad without highway
110* : W : ntd_id == * && highway != * # ntd_id without highway
111* : W : oneway == * && highway != * && railway != * # oneway without highway or railway
112* : W : sac_scale == * && highway != * # sac_scale without highway
113* : W : segregated == * && highway != * # segregated without highway
114* : W : sidewalk == * && highway != * # sidewalk without highway
115* : W : smoothness == * && highway != * # smoothness without highway
116* : W : snowplowing == * && highway != * # snowplowing without highway
117* : W : step_count == * && highway != * # step_count without highway
118* : W : toll == * && highway != * && route != ferry # toll without highway
119* : W : tracktype == * && highway != * # tracktype without highway
120* : W : trail_visibility == * && highway != * # trail_visibility without highway
121* : W : trolley_wire == * && highway != * # trolley_wire without highway
122* : W : zip_left == * && highway != * # zip_left without highway
123* : W : zip_right == * && highway != * # zip_right without highway
124* : W : detail == * && railway != * # detail without railway
125* : W : eddy_current_brake == * && railway != * # eddy_current_brake without railway
126* : W : electrified == * && railway != * # electrified without railway
127* : W : etcs == * && railway != * # etcs without railway
128* : W : gauge == * && railway != * # gauge without railway
129* : W : grade_of_track == * && railway != * # grade_of_track without railway
130* : W : kursbuchstrecke == * && railway != * # kursbuchstrecke without railway
131* : W : lzb == * && railway != * # lzb without railway
132* : W : old_railway_operator == * && railway != * # old_railway_operator without railway
133* : W : operating_procedure == * && railway != * # operating_procedure without railway
134* : W : pzb == * && railway != * # pzb without railway
135* : W : radio == * && railway != * # radio without railway
136* : W : structure_gauge == * && railway != * # structure_gauge without railway
137* : W : tilting_technology == * && railway != * # tilting_technologie without railway
138* : W : track_class == * && railway != * # track_class without railway
139* : W : tracks == * && railway != * # tracks without railway
140* : W : traffic_mode == * && railway != * # traffic_mode without railway
141* : W : usage == * && railway != * # usage without railway
142* : W : workrules == * && railway != * # workrules without railway
143* : W : stream == * && waterway != * # stream without waterway
144* : W : intermittent == * && waterway != * # intermittent without waterway
145* : W : boat == * && waterway != * && natural != water # boat without waterway / natural=water
146* : W : length_unit == * && waterway != * # length_unit without waterway
147* : W : llid == * && waterway != * # llid without waterway
148* : W : canal == * && waterway != * # canal without waterway
149* : W : have_riverbank == * && waterway != * # have_riverbank without waterway
150* : W : tunnel == * && highway != * && railway != * && waterway != * && public_transport != platform && man_made != pipeline # tunnel without highway/railway/waterway/platform/pipeline
151* : W : bridge == * && highway != * && railway != * && waterway != * && piste:type != * && public_transport != platform && man_made != /bridge|pipeline/ && building != bridge # bridge without highway/railway/waterway/platform/piste/pipeline
152* : W : psv == * && highway != * && railway != * && waterway != * && amenity != /parking.*/ # psv without highway/railway/waterway/parking
153* : W : width == * && highway != * && railway != * && waterway != * && aeroway != * && cycleway != * && footway != * && barrier != * && man_made != * && entrance != * # width without physical linear feature
154* : W : maxspeed == * && highway != * && railway != * && traffic_sign != /(.*;)?maxspeed(;.*)?/ && type != enforcement # maxspeed without highway/railway/traffic_sign/enforcement
155* : W : fence_type == * && barrier != fence # fence_type without barrier=fence
156* : W : border_type == * && boundary != * # border_type without boundary
157* : W : recycling_type == * && amenity != recycling # recycling_type without amenity=recycling
158* : W : board_type == * && information != board # board_type without information=board
159* : W : shelter_type == * && amenity != shelter # shelter_type without amenity=shelter
160* : W : lamp_type == * && highway != street_lamp # lamp_type without highway=street_lamp
161* : W : map_type == * && information != map # map_type without information=map
162* : W : site_type == * && historic != archaeological_site # site_type without historic=archaeological_site
163* : W : artwork_type == * && tourism != artwork # artwork_type without tourism=artwork
164* : W : castle_type == * && historic != castle # castle_type without historic=castle
165* : W : reservoir_type == * && landuse != reservoir && water != reservoir # reservoir_type without landuse/water=reservoir
166* : W : bunker_type == * && military != bunker # bunker_type without military=bunker
167
168################################
169# Religion / Denomination tests
170################################
171
172* : I : religion == /christian|jewish|muslim/ && denomination != * # religion without denomination
173* : 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
174* : I : religion == muslim && denomination == * && denomination != /alaouite|druze|ibadi|ismaili|nondenominational|shia|sunni/ # unknown muslim denomination
175* : 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
176
177#####################################
178# validation for the wikipedia=* tag
179#####################################
180
181# see ticket #8383
182# If there is no language at all, this is broken. Also catches 'wikipedia' used as 'email', 'website', 'ele' [sic!] ...
183* : E : wikipedia == * && wikipedia != /[a-zA-Z_-]{2,12}:.*/ # no wikipedia-language given, use ''wikipedia''=''language:page title''
184# 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.
185* : 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
186
187# measurement values and units warnings (ticket #8687)
188way : W : layer == * && layer != /^0$|^-?[1-5]$/ # layer should be between -5 and 5
189* : 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
190* : W : height == * && height != /^(([0-9]+\.?[0-9]*( m)?)|([1-9][0-9]*\'((10|11|[0-9])((\.[0-9]+)?)\")?))$/ # height: meters is default; period is separator; if units, put space then unit
191
192* : W : maxheight == * && maxheight != /^(([1-9][0-9]*(\.[0-9]+)?( m)?)|([0-9]+\'([0-9]|10|11)(\.[0-9]*)?\"))$/ # maxheight: meters is default; period is separator; if units, put space then unit
193way : W : width == * && width != /^(([0-9]+\.?[0-9]*( [a-z]+)?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/ # width: meters is default; period is separator; if units, put space then unit
194* : W : maxwidth == * && maxwidth != /^(([0-9]+\.?[0-9]*( m)?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/ # maxwidth: meters is default; period is separator; if units, put space then unit
195way : 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
196way : W : voltage == * && voltage == /(.*[A-Za-z].*)|.*,.*|.*( ).*/ # voltage should be in volts with no units/delimiter/spaces
197# 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
198way : W : frequency == * && frequency != /^(0|[1-9][0-9]*(\.[0-9]+)?)( (kHz|MHz|GHz|THz))?$/ # unusual frequency specification
199way : 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
200# the numbers for percentage and degrees include could probably be bracketed a bit more precisely
201way : 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.