source: josm/trunk/data/validator/combinations.mapcss@ 14986

Last change on this file since 14986 was 14986, checked in by Klumbumbus, 5 years ago

fix #17592 - warn about tracktype=grade1 with surface which does not fit with grade1

  • Property svn:eol-style set to native
File size: 27.5 KB
RevLine 
[6548]1/* Rules partially derived from Taginfo statistics - see ticket #5017
2 * 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;
3 */
4
[7229]5/* {0.key} without {1.key} (warning level) */
[7906]6way[junction ][!highway][junction!=yes],
[11407]7way[lanes ][!highway][leisure!=track][leisure!=swimming_pool],
[11305]8way[living_street ][!highway],
9way[maintenance ][!highway],
10way[median ][!highway],
11way[motorroad ][!highway],
12node[ntd_id ][!highway],
13way[sac_scale ][!highway],
14way[sidewalk ][!highway],
[13566]15way[step_count ][!highway][man_made!=tower],
[11305]16way[tracktype ][!highway],
[13092]17way[trail_visibility ][!highway], /* #15029 */
[11305]18way[trolley_wire ][!highway],
19way[zip_left ][!highway],
20way[zip_right ][!highway],
21way[detail ][!railway][route!=railway],
22way[eddy_current_brake ][!railway][route!=railway],
[13452]23way[electrified ][!railway][route!=railway][!highway], /* #16007 */
[11305]24way[etcs ][!railway][route!=railway],
25way[gauge ][!railway][route!=railway],
26way[grade_of_track ][!railway][route!=railway],
27way[kursbuchstrecke ][!railway][route!=railway],
28way[lzb ][!railway][route!=railway],
29way[old_railway_operator ][!railway][route!=railway],
30way[operating_procedure ][!railway][route!=railway],
31way[pzb ][!railway][route!=railway],
32way[structure_gauge ][!railway][route!=railway],
33way[tilting_technology ][!railway][route!=railway],
34way[track_class ][!railway][route!=railway],
35way[tracks ][!railway][route!=railway],
36way[traffic_mode ][!railway][route!=railway],
37way[workrules ][!railway][route!=railway],
38way[stream ][!waterway],
39way[length_unit ][!waterway],
40way[canal ][!waterway],
41way[have_riverbank ][!waterway],
[6548]42*[border_type ][!boundary],
[8121]43*[piste:difficulty ][!piste:type],
[14799]44*[place ][!name][place!=islet],
[6548]45*[source:date ][!source],
46*[source:name ][!name],
[13032]47*[source:maxspeed:forward ][!maxspeed:forward][!maxspeed],
48*[source:maxspeed:backward ][!maxspeed:backward][!maxspeed],
[6548]49*[source:building ][!building],
50*[source:ref ][!ref],
51*[source:population ][!population],
52*[source:postal_code ][!postal_code],
53*[source:ele ][!ele],
54*[source:ref:INSEE ][!ref:INSEE],
55*[source:lit ][!lit],
56*[source:hgv ][!hgv],
57*[source:highway ][!highway],
58*[source:maxaxleload ][!maxaxleload],
59*[source:surface ][!surface],
60*[source:bridge ][!bridge],
61*[source:old_name ][!old_name],
62*[source:bicycle ][!bicycle],
63*[source:designation ][!designation],
64*[source:height ][!height],
65*[source:lanes ][!lanes],
[6645]66*[source:postcode ][!addr:postcode],
67*[source:housenumber ][!addr:housenumber],
68*[source:addr:postcode ][!addr:postcode],
69*[source:addr:housenumber ][!addr:housenumber],
[6548]70*[source:addr ][!/^addr:/],
71*[source:maxspeed ][!/^maxspeed:?/] {
72 throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
[11146]73 group: tr("missing tag");
[6548]74 assertMatch: "way lanes=42";
75 assertNoMatch: "way lanes=42 highway=unclassified";
76 assertMatch: "node source:addr:postcode=postman";
77 assertMatch: "node source:addr=postman";
78 assertNoMatch: "node source:addr=postman addr:housenumber=42";
79}
80
[7229]81/* {0.key} without {1.key} (info level) */
[11305]82way[lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1],
83way[lanes:backward][!lanes:forward][oneway!=yes][oneway!=-1],
[7229]84*[leaf_type ][!leaf_cycle],
85*[leaf_cycle][!leaf_type] {
86 throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
[11146]87 group: tr("missing tag");
[7229]88}
89
[6548]90/* {0.key} without {1.tag} */
[14593]91node[fire_hydrant:type ][emergency!=fire_hydrant][disused:emergency!=fire_hydrant],
[9500]92*[transformer ][!power],
[11305]93way[fence_type ][barrier!=fence],
[6548]94*[recycling_type ][amenity!=recycling],
[7996]95*[information ][tourism!=information],
[11305]96node[board_type ][information!=board],
[6548]97*[shelter_type ][amenity!=shelter],
[11305]98node[lamp_type ][highway!=street_lamp],
99node[map_type ][information!=map],
[6548]100*[site_type ][historic!=archaeological_site],
[13508]101*[artwork_type ][tourism!=artwork][exhibit!=artwork],
[6548]102*[castle_type ][historic!=castle],
[8147]103*[parking ][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking)$/],
[11305]104way[cutline ][man_made!=cutline],
[6548]105*[bunker_type ][military!=bunker] {
106 throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
[11146]107 group: tr("missing tag");
[6548]108}
109
[9903]110/* {0.key} without {1.tag} or {2.tag} */
[12677]111*[bridge:movable ][bridge!=movable][man_made!=bridge],
[9903]112*[substation ][power!=substation][pipeline!=substation],
[13972]113*[reservoir_type ][landuse!=reservoir][water!=reservoir],
114way[waterway=pressurised ][tunnel!=flooded][man_made!=pipeline] {
[9903]115 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
[11146]116 group: tr("missing tag");
[9903]117}
118
[8080]119/* {0.tag} without {1.key} (warning level) */
[14593]120node[emergency=fire_hydrant][!fire_hydrant:type],
[14800]121way[ boundary=administrative][!admin_level],
[13084]122relation[boundary=administrative][!admin_level],
[14798]123relation[route=bicycle ][!network][type=route],
124relation[route=hiking ][!network][type=route],
125relation[route=foot ][!network][type=route],
126relation[route=horse ][!network][type=route],
[10320]127relation[route=piste][!piste:type][type=route],
[14798]128relation[route=ski ][!piste:type][type=route],
[7996]129*[tourism=information][!information],
[11153]130*[leisure=pitch][!sport],
[7929]131*[aeroway=terminal][!building],
[7967]132*[power=generator][!generator:source],
[11398]133*[amenity=social_facility][!social_facility],
[7929]134*[amenity=place_of_worship][!religion] {
[7923]135 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
[11146]136 group: tr("missing tag");
[7923]137}
138
[8080]139/* {0.tag} without {1.key} (info level) */
[11428]140way[highway=track ][!tracktype],
[9495]141way[power=cable ][!location],
[13814]142node[power=transformer ][!voltage:primary],
143node[power=transformer ][!voltage:secondary],
144node[transformer=distribution ][!voltage:primary][power=pole],
145node[transformer=distribution ][!voltage:secondary][power=pole],
[9500]146way[power=line ][!voltage],
147way[power=minor_line ][!voltage],
148way[power=cable ][!voltage],
149*[power=generator ][!voltage][generator:output:electricity],
150*[power=plant ][!voltage][plant:output:electricity],
151*[power=substation ][!substation],
[12997]152*[power=switch ][!switch],
[9500]153*[power=transformer ][!transformer],
[14799]154*[amenity=bank ][!operator],
155*[amenity=cinema ][!operator],
156*[amenity=fast_food ][!operator],
157*[amenity=fuel ][!operator],
158*[mountain_pass=yes ][!ele],
159*[natural=peak ][!ele],
[14818]160*[amenity=place_of_worship ][!denomination],
[8080]161*[amenity=parking ][!parking],
162*[amenity=parking_entrance ][!parking] {
163 throwOther: tr("{0} without {1}", "{0.tag}", "{1.key}");
[11146]164 group: tr("missing tag");
[9500]165 assertMatch: "way power=line";
166 assertNoMatch: "way power=line voltage=1";
[12997]167 assertMatch: "way power=switch";
[9500]168 assertMatch: "way power=substation";
169 assertMatch: "way power=substation transformer=foobar";
170 assertNoMatch: "way power=substation substation=foobar";
171 assertMatch: "way power=generator generator:output:electricity=yes";
172 assertNoMatch: "way power=generator";
173 assertNoMatch: "way power=generator generator:output:electricity=yes voltage=1";
[8080]174}
175
[6548]176/* {0.key} without {1.key} or {2.tag} */
[13026]177way[bridge:structure ][!bridge][man_made!=bridge],
[10068]178*[smoothness ][!highway][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking)$/],
[9003]179*[segregated ][!highway][railway!=crossing] {
[6548]180 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
[11146]181 group: tr("missing tag");
[6548]182}
183
[8746]184/* {0.tag} without {1.tag} (info level) see #11600 #11393 #11850 */
[11305]185way[highway=motorway][!oneway][junction!=roundabout],
186way[highway=motorway_link][!oneway][junction!=roundabout] {
[8591]187 throwOther: tr("{0} without {1}", "{0.tag}", "{1.tag}");
[11146]188 group: tr("missing tag");
[8545]189}
190
[13972]191/* {0.tag} without {1.tag} */
192way[usage=penstock][man_made!=pipeline],
193way[usage=penstock][waterway!=pressurised] {
194 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.tag}");
195 group: tr("missing tag");
196}
197
[8411]198/* {0.tag} without {1.tag} or {2.tag} */
199*[amenity=recycling][recycling_type!=container][recycling_type!=centre] {
200 throwWarning: tr("{0} without {1} or {2}", "{0.tag}", "{1.tag}", "{2.tag}");
[11146]201 group: tr("missing tag");
[8411]202}
203
[8057]204/* {0.key} without {1.key}, {2.tag} or {3.tag} */
[14127]205*[intermittent ][!waterway][natural!~/^(water|spring)$/][landuse!~/^(basin|reservoir)$/][ford!=yes],
206*[boat ][!waterway][natural!=water ][landuse!~/^(basin|reservoir)$/][ford!=yes] {
207 throwWarning: tr("{0} without {1}, {2}, {3} or {4}", "{0.key}", "{1.key}", "{2.tag}", "{3.tag}", "{4.tag}");
[11146]208 group: tr("missing tag");
[7767]209}
210
[14735]211/* {0.key} without {1.key}, {2.key} or {3.key}, #17253 */
212way[oneway ][!highway][!railway][!aerialway][attraction!=summer_toboggan],
213*[snowplowing][!highway][!amenity][!leisure] {
[6880]214 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
[11146]215 group: tr("missing tag");
[6880]216}
217
[14735]218/* {0.key} without {1.key}, {2.key} or {3.tag}, #17255 */
219way[incline ][!highway][!railway][aeroway!~/^(runway|taxiway)$/][attraction!=summer_toboggan],
[7250]220*[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
221 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
[11146]222 group: tr("missing tag");
[7250]223}
224
[14364]225/* {0.tag} together with {1.key}, see #16464, #10837, #14034, #9389, #11977, #13156, #16888 */
[14042]226*[internet_access=no][internet_access:fee],
[13814]227node[power=transformer][voltage],
228node[transformer=distribution][voltage][power=pole],
[11346]229*[amenity=vending_machine][shop],
[13401]230*[noname?][name],
[14364]231way[oneway=yes][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
232way[oneway=yes][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no],
233way[oneway=-1 ][/:backward/][!traffic_sign:backward][bicycle:backward!=use_sidepath][oneway:bicycle!=no][oneway:psv!=no],
234way[oneway=-1 ][/:forward/ ][!traffic_sign:forward ][bicycle:forward!=use_sidepath ][oneway:bicycle!=no][oneway:psv!=no] {
[8077]235 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
[11146]236 group: tr("suspicious tag combination");
[8077]237}
238
[8044]239/* {0.tag} together with {1.tag} (info level), see #9696 */
[11305]240way[highway=footway][oneway=no] {
[8044]241 throwOther: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]242 group: tr("suspicious tag combination");
[8044]243}
244
[14986]245/* {0.tag} together with {1.tag}, see #17592, #17542, #16861, #16147, #10186 */
246way[tracktype=grade1][surface][surface=~/^(unpaved|compacted|gravel|fine_gravel|pebblestone|ground|earth|dirt|grass|sand|mud|ice|salt|snow|woodchips)$/]
[14356]247way[segregated][bicycle=no],
248way[segregated][foot=no],
[14041]249way[man_made=pipeline][tunnel=flooded],
[14943]250way[waterway=canal][tunnel=yes] {
[8117]251 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]252 group: tr("suspicious tag combination");
[8117]253}
254
[14943]255way[highway=footway][bicycle=designated],
256way[highway=cycleway][foot=designated] {
257 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
258 group: tr("suspicious tag combination");
259 suggestAlternative: "highway=path";
260}
261
[14808]262/* {0.tag} together with {1.tag} (error level) */
263relation[type=multipolygon][area=no] {
264 throwError: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
265 group: tr("suspicious tag combination");
266}
267
[13401]268/* {0.key} together with {1.key} (info level) */
269*[addr:street][addr:place] {
270 throwOther: tr("{0} together with {1}", "{0.key}", "{1.key}");
271 group: tr("suspicious tag combination");
272}
273
[11074]274/* #11127, #13727 */
275way[waterway][bridge=yes][waterway!=weir] {
[8089]276 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
277 suggestAlternative: "bridge=aqueduct";
[11146]278 group: tr("suspicious tag combination");
[8089]279 fixAdd: "bridge=aqueduct";
280}
[11074]281way[waterway=weir][bridge=yes][highway] {
282 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
283 suggestAlternative: "waterway=weir + ford=yes";
284 suggestAlternative: "waterway=dam";
285 suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
[11146]286 group: tr("suspicious tag combination");
[11074]287}
[8089]288
[13787]289/* #16214 */
290relation[type=multipolygon] >[role="inner"] way[area][eval(number_of_tags()) = 1] {
291 throwWarning: tr("{0} on an inner multipolygon ring without further tags", "{0.tag}");
292 fixRemove: "area";
293 set area_yes_autofix;
294 group: tr("suspicious tag combination");
295}
296
[12416]297/* only {0.key}, see #11104 #12422 #14950 */
298*[access][eval(number_of_tags()) = 1],
[13787]299*[area][eval(number_of_tags()) = 1]!.area_yes_autofix,
[8054]300*[name][eval(number_of_tags()) = 1],
[9837]301*[ref][eval(number_of_tags()) = 1],
302*[lit][eval(number_of_tags()) = 1] {
[8054]303 throwWarning: tr("incomplete object: only {0}", "{0.key}");
[11146]304 group: tr("missing tag");
[8054]305}
[13086]306/* only {0.key} and {1.key} */
[8054]307*[name][area][eval(number_of_tags()) = 2],
308*[name][ref][eval(number_of_tags()) = 2] {
309 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
[11146]310 group: tr("missing tag");
[8054]311}
[13086]312/* only {0.tag}, #15269 */
313*[tourism=attraction][eval(number_of_tags()) = 1] {
314 throwWarning: tr("incomplete object: only {0}", "{0.tag}");
315 group: tr("missing tag");
316}
317/* only {0.key} and {1.tag} */
318*[name][tourism=attraction][eval(number_of_tags()) = 2] {
319 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
320 group: tr("missing tag");
321}
[8054]322
[11548]323/* #9811, #11491, #12865, #14310 */
324*[place][place!=farm][/^(addr:housenumber|addr:housename|addr:flats|addr:conscriptionnumber|addr:street|addr:place|addr:city|addr:country|addr:full|addr:hamlet|addr:suburb|addr:subdistrict|addr:district|addr:province|addr:state|addr:interpolation|addr:interpolation|addr:inclusion)$/],
325/* addr:postcode is used together with place in some countries */
[8043]326*[boundary][/^addr:/],
[8730]327*[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
[8043]328 throwWarning: tr("{0} together with addr:*", "{0.key}");
[11146]329 group: tr("suspicious tag combination");
[11548]330 assertMatch: "node place=foo addr:housenumber=5";
331 assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
332 assertNoMatch: "node place=foo addr:postcode=12345";
[8043]333}
[8730]334*[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
335 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
[11146]336 group: tr("suspicious tag combination");
[8730]337}
338*[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
339 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
[11146]340 group: tr("suspicious tag combination");
[8730]341}
342way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
343 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
[11146]344 group: tr("suspicious tag combination");
[8730]345 fixRemove: "addr:postcode";
346}
347way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
348 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
[11146]349 group: tr("suspicious tag combination");
[8730]350}
[10272]351way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
[11052]352 throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
[8730]353 suggestAlternative: "postal_code";
[11146]354 group: tr("suspicious tag combination");
[8730]355 fixChangeKey: "addr:postcode=>postal_code";
356}
[8043]357
[10350]358/* #9195 */
[11305]359way[highway=footway][cycleway=lane] {
[8042]360 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[8046]361 suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
[11146]362 group: tr("suspicious tag combination");
[8042]363}
364
[6548]365/* {0} on suspicious object */
[14972]366*[tunnel ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing],
367*[bridge ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing][man_made!=bridge][building!=bridge],
[14975]368*[psv ][!highway][!railway][!waterway][barrier!=bollard][amenity !~ /^parking.*/],
[14915]369*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone][leisure!=track],
[12473]370*[maxspeed][!highway][!railway][traffic_sign !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][type != enforcement][waterway !~ /^(river|canal|lock)$/][!traffic_calming][aerialway!=zip_line] {
[6548]371 throwWarning: tr("{0} on suspicious object", "{0.key}");
[11146]372 group: tr("suspicious tag combination");
[6548]373}
374
[14798]375*[amenity][amenity =~ /^(restaurant|cafe|fast_food|pub|place_of_worship|school|university|hospital|library|theatre|courthouse|bank|cinema|pharmacy|fuel)$/][!name][noname!=yes] {
[11146]376 throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
377 group: tr("missing tag");
[6548]378 assertMatch: "node amenity=restaurant";
[7932]379 assertNoMatch: "node amenity=restaurant noname=yes";
[6548]380 assertNoMatch: "node amenity=restaurant name=Foobar";
381}
382
[13645]383/* #10193, #16157 */
[6550]384way[highway][barrier],
[8559]385*[highway][waterway][waterway!=dam][waterway!=weir],
[11429]386way[highway][natural][natural!=ridge],
[14275]387*[landuse][building][landuse!=retail] {
[11146]388 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
389 group: tr("suspicious tag combination");
[13645]390 assertNoMatch: "node highway=street_lamp natural=birds_nest";
[6548]391}
392
[10350]393/* #6932 */
[10798]394*[natural=water][leisure=swimming_pool] {
[6548]395 throwWarning: tr("natural water used for swimming pool");
[11146]396 group: tr("suspicious tag combination");
[7274]397 fixRemove: "natural";
[6548]398}
[6860]399
[14735]400/* #9593, #11183, #12418, #12761, #17254 */
401*[sport][sport!=skiing][!building][!club][tourism != hotel][highway != raceway][!leisure][natural !~ /^(beach|bare_rock|cliff|peak|water)$/][amenity !~ /^(pub|restaurant|swimming_pool)$/][landuse !~ /^(recreation_ground|piste|farm|farmland)$/][barrier !~ /^(wall|retaining_wall)$/][!"piste:type"][shop!=sports][attraction!=summer_toboggan] {
[6860]402 throwWarning: tr("sport without physical feature");
[11146]403 group: tr("missing tag");
[6860]404 assertMatch: "node sport=tennis";
405 assertNoMatch: "node sport=tennis leisure=pitch";
406 assertNoMatch: "node sport=beachvolleyball natural=beach";
[11159]407 assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
[6860]408 assertNoMatch: "node sport=swimming tourism=hotel";
409 assertNoMatch: "node sport=10pin amenity=restaurant";
[7243]410}
411
[13972]412/* {0.key} without {1.key} or {2.key} see #10140 */
413*[building:levels][!building][!building:part],
414way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] {
[7243]415 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
[11146]416 group: tr("missing tag");
[7243]417}
[7488]418
[13981]419/* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 #16437 */
420*[/_name$/][!name][!old_name][!loc_name][!uic_name][!artist_name][!lock_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
[7818]421 throwWarning: tr("alternative name without {0}", "{1.key}");
[11146]422 group: tr("missing tag");
[7818]423}
424
[10350]425/* #10837 */
[9386]426way[destination][!oneway?][junction!=roundabout][highway] {
[7818]427 throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
428 suggestAlternative: "destination:forward";
429 suggestAlternative: "destination:backward";
[8700]430}
431
[10350]432/* #11389 */
[8700]433way["maxspeed:forward"=*"maxspeed:backward"][!maxspeed] {
434 throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
435 suggestAlternative: "maxspeed";
[11146]436 group: tr("suspicious tag combination");
[8700]437 fixChangeKey: "maxspeed:forward=>maxspeed";
438 fixRemove: "maxspeed:backward";
439}
440way["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed][maxspeed] {
441 throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
442 set AllSameMaxspeed;
443 suggestAlternative: "maxspeed";
[11146]444 group: tr("suspicious tag combination");
[8700]445 fixRemove: "maxspeed:forward";
446 fixRemove: "maxspeed:backward";
447}
448way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed {
449 throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
[11146]450 group: tr("suspicious tag combination");
[8700]451}
452way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
453way["maxspeed:backward"][maxspeed][!"maxspeed:forward"] {
454 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
[11146]455 group: tr("suspicious tag combination");
[8754]456}
457
[10350]458/* #11837 */
[8754]459way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
460way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
[11146]461 throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
462 group: tr("suspicious tag combination");
[10350]463}
464
465/* #12942 */
466relation[oneway][type!=route] {
467 throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
[10388]468}
469
470/* #9182 */
[10419]471way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
472 throwWarning: tr("Long waterway with {0} but without a tag which defines it as tunnel or underground. Remove {1} or add a tunnel tag if applicable. Also check crossing bridges and their {1} tags.", "{1.tag}", "{1.key}");
[11146]473 group: tr("suspicious tag combination");
[10388]474}
[10419]475way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
476 throwOther: tr("Short waterway with {0} but without a tag which defines it as tunnel or underground. Remove {1} or add a tunnel tag if applicable. Also check crossing bridges and their {1} tags.", "{1.tag}", "{1.key}");
[11146]477 group: tr("suspicious tag combination");
[10537]478}
479
[13102]480/* #13144, #15536 */
481*[unisex=yes][female=yes][male!=yes][shop=hairdresser],
482*[unisex=yes][male=yes][female!=yes][shop=hairdresser] {
[10537]483 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
[11146]484 group: tr("suspicious tag combination");
[10537]485}
[13102]486*[unisex=yes][female=yes][male=yes][shop=hairdresser] {
[10537]487 throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
[11146]488 group: tr("suspicious tag combination");
[10537]489 fixRemove: "female";
490 fixRemove: "male";
491}
[13102]492*[female=yes][male=yes][!unisex][shop=hairdresser] {
[10537]493 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
494 suggestAlternative: "unisex=yes";
[11146]495 group: tr("suspicious tag combination");
[10537]496 fixRemove: "female";
497 fixRemove: "male";
498 fixAdd: "unisex=yes";
[10538]499}
500
[14883]501/* {1.key} without {2.tag} see #13138, #14468 */
502way!:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir], /* water=intermittent is deprecated and has an own warning */
503area:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir] {
[10538]504 throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
[11146]505 group: tr("missing tag");
[10538]506}
[10995]507
508/* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
509way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
510way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
511way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
512way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
513way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
514way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
515way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
516 throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
[11146]517 group: tr("suspicious tag combination");
[11047]518}
519
520/* #13680 */
521area[golf=bunker][natural=beach] {
522 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
523 suggestAlternative: "natural=sand";
524 suggestAlternative: "surface=sand";
[11146]525 group: tr("suspicious tag combination");
[11080]526}
527
528/* #13705 */
529relation[type=multipolygon][building] > way {
530 set part_of_building_MP;
531}
532way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
533 /* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
[11146]534 throwOther: tr("possibly missing {0} tag", "{1.key}");
535 group: tr("missing tag");
[11371]536}
537
[11529]538/* #14125, #14323 */
539way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
[11406]540 throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
[11371]541 group: tr("missing tag");
542 assertNoMatch: "way highway=primary lanes=2";
543 assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
544 assertNoMatch: "way highway=primary lanes=3 oneway=-1";
[11406]545 assertNoMatch: "way highway=primary lanes=4";
[11371]546 assertMatch: "way highway=primary lanes=3";
[14593]547}
548
549/* #15774 */
550node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
551 throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
[14798]552}
[14830]553
554/* #12502 */
555node[leisure=park][natural=tree] {
556 throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
557 group: tr("suspicious tag combination");
558 fixRemove: "leisure";
[14831]559}
560
561/* #17305 */
562area[boundary=administrative][landuse=residential] {
563 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
564 group: tr("suspicious tag combination");
565}
566
567/* #17391 */
[14910]568way[highway=pedestrian][width][width<3] {
[14831]569 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
570 suggestAlternative: "highway=footway";
571 group: tr("suspicious tag combination");
572 fixAdd: "highway=footway";
573 assertMatch: "way highway=pedestrian width=0.8";
574 assertMatch: "way highway=pedestrian width=1";
[14910]575 assertNoMatch: "way highway=pedestrian width=3";
[14831]576 assertNoMatch: "way highway=pedestrian width=5.5";
[14830]577}
Note: See TracBrowser for help on using the repository browser.