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

Last change on this file since 15005 was 15004, checked in by Klumbumbus, 6 years ago
  • see #17567 - make validator warnings more comprehensible
  • fix #17630 - warn about building:part=* together with building=*
  • fix #17593 - warn about sport=football
  • Property svn:eol-style set to native
File size: 27.6 KB
Line 
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
5/* {0.key} without {1.key} (warning level) */
6way[junction ][!highway][junction!=yes],
7way[lanes ][!highway][leisure!=track][leisure!=swimming_pool],
8way[living_street ][!highway],
9way[maintenance ][!highway],
10way[median ][!highway],
11way[motorroad ][!highway],
12node[ntd_id ][!highway],
13way[sac_scale ][!highway],
14way[sidewalk ][!highway],
15way[step_count ][!highway][man_made!=tower],
16way[tracktype ][!highway],
17way[trail_visibility ][!highway], /* #15029 */
18way[trolley_wire ][!highway],
19way[zip_left ][!highway],
20way[zip_right ][!highway],
21way[detail ][!railway][route!=railway],
22way[eddy_current_brake ][!railway][route!=railway],
23way[electrified ][!railway][route!=railway][!highway], /* #16007 */
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],
42*[border_type ][!boundary],
43*[piste:difficulty ][!piste:type],
44*[place ][!name][place!=islet],
45*[source:date ][!source],
46*[source:name ][!name],
47*[source:maxspeed:forward ][!maxspeed:forward][!maxspeed],
48*[source:maxspeed:backward ][!maxspeed:backward][!maxspeed],
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],
66*[source:postcode ][!addr:postcode],
67*[source:housenumber ][!addr:housenumber],
68*[source:addr:postcode ][!addr:postcode],
69*[source:addr:housenumber ][!addr:housenumber],
70*[source:addr ][!/^addr:/],
71*[source:maxspeed ][!/^maxspeed:?/] {
72 throwWarning: tr("{0} without {1}", "{0.key}", "{1.key}");
73 group: tr("missing tag");
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
81/* {0.key} without {1.key} (info level) */
82way[lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1],
83way[lanes:backward][!lanes:forward][oneway!=yes][oneway!=-1],
84*[leaf_type ][!leaf_cycle],
85*[leaf_cycle][!leaf_type] {
86 throwOther: tr("{0} without {1}", "{0.key}", "{1.key}");
87 group: tr("missing tag");
88}
89
90/* {0.key} without {1.tag} */
91node[fire_hydrant:type ][emergency!=fire_hydrant][disused:emergency!=fire_hydrant],
92*[transformer ][!power],
93way[fence_type ][barrier!=fence],
94*[recycling_type ][amenity!=recycling],
95*[information ][tourism!=information],
96node[board_type ][information!=board],
97*[shelter_type ][amenity!=shelter],
98node[lamp_type ][highway!=street_lamp],
99node[map_type ][information!=map],
100*[site_type ][historic!=archaeological_site],
101*[artwork_type ][tourism!=artwork][exhibit!=artwork],
102*[castle_type ][historic!=castle],
103*[parking ][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking)$/],
104way[cutline ][man_made!=cutline],
105*[bunker_type ][military!=bunker] {
106 throwWarning: tr("{0} without {1}", "{0.key}", "{1.tag}");
107 group: tr("missing tag");
108}
109
110/* {0.key} without {1.tag} or {2.tag} */
111*[bridge:movable ][bridge!=movable][man_made!=bridge],
112*[substation ][power!=substation][pipeline!=substation],
113*[reservoir_type ][landuse!=reservoir][water!=reservoir],
114way[waterway=pressurised ][tunnel!=flooded][man_made!=pipeline] {
115 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
116 group: tr("missing tag");
117}
118
119/* {0.tag} without {1.key} (warning level) */
120node[emergency=fire_hydrant][!fire_hydrant:type],
121way[ boundary=administrative][!admin_level],
122relation[boundary=administrative][!admin_level],
123relation[route=bicycle ][!network][type=route],
124relation[route=hiking ][!network][type=route],
125relation[route=foot ][!network][type=route],
126relation[route=horse ][!network][type=route],
127relation[route=piste][!piste:type][type=route],
128relation[route=ski ][!piste:type][type=route],
129*[tourism=information][!information],
130*[leisure=pitch][!sport],
131*[aeroway=terminal][!building],
132*[power=generator][!generator:source],
133*[amenity=social_facility][!social_facility],
134*[amenity=place_of_worship][!religion] {
135 throwWarning: tr("{0} without {1}", "{0.tag}", "{1.key}");
136 group: tr("missing tag");
137}
138
139/* {0.tag} without {1.key} (info level) */
140way[highway=track ][!tracktype],
141way[power=cable ][!location],
142node[power=transformer ][!voltage:primary],
143node[power=transformer ][!voltage:secondary],
144node[transformer=distribution ][!voltage:primary][power=pole],
145node[transformer=distribution ][!voltage:secondary][power=pole],
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],
152*[power=switch ][!switch],
153*[power=transformer ][!transformer],
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],
160*[amenity=place_of_worship ][!denomination],
161*[amenity=parking ][!parking],
162*[amenity=parking_entrance ][!parking] {
163 throwOther: tr("{0} without {1}", "{0.tag}", "{1.key}");
164 group: tr("missing tag");
165 assertMatch: "way power=line";
166 assertNoMatch: "way power=line voltage=1";
167 assertMatch: "way power=switch";
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";
174}
175
176/* {0.key} without {1.key} or {2.tag} */
177way[bridge:structure ][!bridge][man_made!=bridge],
178*[smoothness ][!highway][amenity!~/^(parking|parking_space|parking_entrance|motorcycle_parking|bicycle_parking)$/],
179*[segregated ][!highway][railway!=crossing] {
180 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.tag}");
181 group: tr("missing tag");
182}
183
184/* {0.tag} without {1.tag} (info level) see #11600 #11393 #11850 */
185way[highway=motorway][!oneway][junction!=roundabout],
186way[highway=motorway_link][!oneway][junction!=roundabout] {
187 throwOther: tr("{0} without {1}", "{0.tag}", "{1.tag}");
188 group: tr("missing tag");
189}
190
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
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}");
201 group: tr("missing tag");
202}
203
204/* {0.key} without {1.key}, {2.tag} or {3.tag} */
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}");
208 group: tr("missing tag");
209}
210
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] {
214 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.key}");
215 group: tr("missing tag");
216}
217
218/* {0.key} without {1.key}, {2.key} or {3.tag}, #17255 */
219way[incline ][!highway][!railway][aeroway!~/^(runway|taxiway)$/][attraction!=summer_toboggan],
220*[toll ][!highway][!barrier][route!~/^(ferry|road)$/] {
221 throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.key}", "{2.key}", "{3.tag}");
222 group: tr("missing tag");
223}
224
225/* {0.tag} together with {1.key}, see #16464, #10837, #14034, #9389, #11977, #13156, #16888 */
226*[internet_access=no][internet_access:fee],
227node[power=transformer][voltage],
228node[transformer=distribution][voltage][power=pole],
229*[amenity=vending_machine][shop],
230*[noname?][name],
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] {
235 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.key}");
236 group: tr("suspicious tag combination");
237}
238
239/* {0.tag} together with {1.tag} (info level), see #9696 */
240way[highway=footway][oneway=no] {
241 throwOther: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
242 group: tr("suspicious tag combination");
243}
244
245/* {0.tag} together with {1.tag}, see #17592, #17594, #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)$/],
247way[tracktype=grade2][surface][surface=~/^(sand|mud)$/],
248way[segregated][bicycle=no],
249way[segregated][foot=no],
250way[man_made=pipeline][tunnel=flooded],
251way[waterway=canal][tunnel=yes] {
252 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
253 group: tr("suspicious tag combination");
254}
255
256way[highway=footway][bicycle=designated],
257way[highway=cycleway][foot=designated] {
258 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
259 group: tr("suspicious tag combination");
260 suggestAlternative: "highway=path";
261}
262
263/* {0.tag} together with {1.tag} (error level) */
264relation[type=multipolygon][area=no] {
265 throwError: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
266 group: tr("suspicious tag combination");
267}
268
269/* {0.key} together with {1.key}, #17630, #17604 */
270*[building:part][building],
271*[addr:street][addr:place] {
272 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
273 group: tr("suspicious tag combination");
274}
275
276/* #11127, #13727 */
277way[waterway][bridge=yes][waterway!=weir] {
278 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
279 suggestAlternative: "bridge=aqueduct";
280 group: tr("suspicious tag combination");
281 fixAdd: "bridge=aqueduct";
282}
283way[waterway=weir][bridge=yes][highway] {
284 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
285 suggestAlternative: "waterway=weir + ford=yes";
286 suggestAlternative: "waterway=dam";
287 suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
288 group: tr("suspicious tag combination");
289}
290
291/* #16214 */
292relation[type=multipolygon] >[role="inner"] way[area][eval(number_of_tags()) = 1] {
293 throwWarning: tr("{0} on an inner multipolygon ring without further tags", "{0.tag}");
294 fixRemove: "area";
295 set area_yes_autofix;
296 group: tr("suspicious tag combination");
297}
298
299/* only {0.key}, see #11104 #12422 #14950 */
300*[access][eval(number_of_tags()) = 1],
301*[area][eval(number_of_tags()) = 1]!.area_yes_autofix,
302*[name][eval(number_of_tags()) = 1],
303*[ref][eval(number_of_tags()) = 1],
304*[lit][eval(number_of_tags()) = 1] {
305 throwWarning: tr("incomplete object: only {0}", "{0.key}");
306 group: tr("missing tag");
307}
308/* only {0.key} and {1.key} */
309*[name][area][eval(number_of_tags()) = 2],
310*[name][ref][eval(number_of_tags()) = 2] {
311 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
312 group: tr("missing tag");
313}
314/* only {0.tag}, #15269 */
315*[tourism=attraction][eval(number_of_tags()) = 1] {
316 throwWarning: tr("incomplete object: only {0}", "{0.tag}");
317 group: tr("missing tag");
318}
319/* only {0.key} and {1.tag} */
320*[name][tourism=attraction][eval(number_of_tags()) = 2] {
321 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
322 group: tr("missing tag");
323}
324
325/* #9811, #11491, #12865, #14310 */
326*[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)$/],
327/* addr:postcode is used together with place in some countries */
328*[boundary][/^addr:/],
329*[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
330 throwWarning: tr("{0} together with addr:*", "{0.key}");
331 group: tr("suspicious tag combination");
332 assertMatch: "node place=foo addr:housenumber=5";
333 assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
334 assertNoMatch: "node place=foo addr:postcode=12345";
335}
336*[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
337 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
338 group: tr("suspicious tag combination");
339}
340*[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
341 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
342 group: tr("suspicious tag combination");
343}
344way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
345 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
346 group: tr("suspicious tag combination");
347 fixRemove: "addr:postcode";
348}
349way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
350 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
351 group: tr("suspicious tag combination");
352}
353way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
354 throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
355 suggestAlternative: "postal_code";
356 group: tr("suspicious tag combination");
357 fixChangeKey: "addr:postcode=>postal_code";
358}
359
360/* #9195 */
361way[highway=footway][cycleway=lane] {
362 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
363 suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
364 group: tr("suspicious tag combination");
365}
366
367/* {0} on suspicious object */
368*[tunnel ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing],
369*[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],
370*[psv ][!highway][!railway][!waterway][barrier!=bollard][amenity !~ /^parking.*/],
371*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone][leisure!=track],
372*[maxspeed][!highway][!railway][traffic_sign !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][type != enforcement][waterway !~ /^(river|canal|lock)$/][!traffic_calming][aerialway!=zip_line] {
373 throwWarning: tr("{0} on suspicious object", "{0.key}");
374 group: tr("suspicious tag combination");
375}
376
377*[amenity][amenity =~ /^(restaurant|cafe|fast_food|pub|place_of_worship|school|university|hospital|library|theatre|courthouse|bank|cinema|pharmacy|fuel)$/][!name][noname!=yes] {
378 throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
379 group: tr("missing tag");
380 assertMatch: "node amenity=restaurant";
381 assertNoMatch: "node amenity=restaurant noname=yes";
382 assertNoMatch: "node amenity=restaurant name=Foobar";
383}
384
385/* #10193, #16157 */
386way[highway][barrier],
387*[highway][waterway][waterway!=dam][waterway!=weir],
388way[highway][natural][natural!=ridge],
389*[landuse][building][landuse!=retail] {
390 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
391 group: tr("suspicious tag combination");
392 assertNoMatch: "node highway=street_lamp natural=birds_nest";
393}
394
395/* #6932 */
396*[natural=water][leisure=swimming_pool] {
397 throwWarning: tr("natural water used for swimming pool");
398 group: tr("suspicious tag combination");
399 fixRemove: "natural";
400}
401
402/* #9593, #11183, #12418, #12761, #17254 */
403*[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] {
404 throwWarning: tr("sport without physical feature");
405 group: tr("missing tag");
406 assertMatch: "node sport=tennis";
407 assertNoMatch: "node sport=tennis leisure=pitch";
408 assertNoMatch: "node sport=beachvolleyball natural=beach";
409 assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
410 assertNoMatch: "node sport=swimming tourism=hotel";
411 assertNoMatch: "node sport=10pin amenity=restaurant";
412}
413
414/* {0.key} without {1.key} or {2.key} see #10140 */
415*[building:levels][!building][!building:part],
416way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] {
417 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
418 group: tr("missing tag");
419}
420
421/* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 #16437 */
422*[/_name$/][!name][!old_name][!loc_name][!uic_name][!artist_name][!lock_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
423 throwWarning: tr("alternative name without {0}", "{1.key}");
424 group: tr("missing tag");
425}
426
427/* #10837 */
428way[destination][!oneway?][junction!=roundabout][highway] {
429 throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
430 suggestAlternative: "destination:forward";
431 suggestAlternative: "destination:backward";
432}
433
434/* #11389 */
435way["maxspeed:forward"=*"maxspeed:backward"][!maxspeed] {
436 throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
437 suggestAlternative: "maxspeed";
438 group: tr("suspicious tag combination");
439 fixChangeKey: "maxspeed:forward=>maxspeed";
440 fixRemove: "maxspeed:backward";
441}
442way["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed][maxspeed] {
443 throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
444 set AllSameMaxspeed;
445 suggestAlternative: "maxspeed";
446 group: tr("suspicious tag combination");
447 fixRemove: "maxspeed:forward";
448 fixRemove: "maxspeed:backward";
449}
450way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed {
451 throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
452 group: tr("suspicious tag combination");
453}
454way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
455way["maxspeed:backward"][maxspeed][!"maxspeed:forward"] {
456 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
457 group: tr("suspicious tag combination");
458}
459
460/* #11837 */
461way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
462way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
463 throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
464 group: tr("suspicious tag combination");
465}
466
467/* #12942 */
468relation[oneway][type!=route] {
469 throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
470}
471
472/* #9182 */
473way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
474 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}");
475 group: tr("suspicious tag combination");
476}
477way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
478 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}");
479 group: tr("suspicious tag combination");
480}
481
482/* #13144, #15536 */
483*[unisex=yes][female=yes][male!=yes][shop=hairdresser],
484*[unisex=yes][male=yes][female!=yes][shop=hairdresser] {
485 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
486 group: tr("suspicious tag combination");
487}
488*[unisex=yes][female=yes][male=yes][shop=hairdresser] {
489 throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
490 group: tr("suspicious tag combination");
491 fixRemove: "female";
492 fixRemove: "male";
493}
494*[female=yes][male=yes][!unisex][shop=hairdresser] {
495 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
496 suggestAlternative: "unisex=yes";
497 group: tr("suspicious tag combination");
498 fixRemove: "female";
499 fixRemove: "male";
500 fixAdd: "unisex=yes";
501}
502
503/* {1.key} without {2.tag} see #13138, #14468 */
504way!:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir], /* water=intermittent is deprecated and has an own warning */
505area:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir] {
506 throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
507 group: tr("missing tag");
508}
509
510/* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
511way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
512way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
513way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
514way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
515way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
516way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
517way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
518 throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
519 group: tr("suspicious tag combination");
520}
521
522/* #13680 */
523area[golf=bunker][natural=beach] {
524 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
525 suggestAlternative: "natural=sand";
526 suggestAlternative: "surface=sand";
527 group: tr("suspicious tag combination");
528}
529
530/* #13705 */
531relation[type=multipolygon][building] > way {
532 set part_of_building_MP;
533}
534way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
535 /* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
536 throwOther: tr("possibly missing {0} tag", "{1.key}");
537 group: tr("missing tag");
538}
539
540/* #14125, #14323 */
541way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
542 throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
543 group: tr("missing tag");
544 assertNoMatch: "way highway=primary lanes=2";
545 assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
546 assertNoMatch: "way highway=primary lanes=3 oneway=-1";
547 assertNoMatch: "way highway=primary lanes=4";
548 assertMatch: "way highway=primary lanes=3";
549}
550
551/* #15774 */
552node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
553 throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
554}
555
556/* #12502 */
557node[leisure=park][natural=tree] {
558 throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
559 group: tr("suspicious tag combination");
560 fixRemove: "leisure";
561}
562
563/* #17305 */
564area[boundary=administrative][landuse=residential] {
565 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
566 group: tr("suspicious tag combination");
567}
568
569/* #17391 */
570way[highway=pedestrian][width][width<3] {
571 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
572 suggestAlternative: "highway=footway";
573 group: tr("suspicious tag combination");
574 fixAdd: "highway=footway";
575 assertMatch: "way highway=pedestrian width=0.8";
576 assertMatch: "way highway=pedestrian width=1";
577 assertNoMatch: "way highway=pedestrian width=3";
578 assertNoMatch: "way highway=pedestrian width=5.5";
579}
Note: See TracBrowser for help on using the repository browser.