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

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

see #17989 - warn about emergency_ward_entrance=* without emergency=emergency_ward_entrance

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