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

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

fix #17572 - don't warn about psv=* on barrier=bollard

  • Property svn:eol-style set to native
File size: 27.4 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 #17542, #16861, #16147, #10186 */
246way[segregated][bicycle=no],
247way[segregated][foot=no],
248way[man_made=pipeline][tunnel=flooded],
249way[waterway=canal][tunnel=yes] {
250 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
251 group: tr("suspicious tag combination");
252}
253
254way[highway=footway][bicycle=designated],
255way[highway=cycleway][foot=designated] {
256 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
257 group: tr("suspicious tag combination");
258 suggestAlternative: "highway=path";
259}
260
261/* {0.tag} together with {1.tag} (error level) */
262relation[type=multipolygon][area=no] {
263 throwError: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
264 group: tr("suspicious tag combination");
265}
266
267/* {0.key} together with {1.key} (info level) */
268*[addr:street][addr:place] {
269 throwOther: tr("{0} together with {1}", "{0.key}", "{1.key}");
270 group: tr("suspicious tag combination");
271}
272
273/* #11127, #13727 */
274way[waterway][bridge=yes][waterway!=weir] {
275 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.tag}");
276 suggestAlternative: "bridge=aqueduct";
277 group: tr("suspicious tag combination");
278 fixAdd: "bridge=aqueduct";
279}
280way[waterway=weir][bridge=yes][highway] {
281 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
282 suggestAlternative: "waterway=weir + ford=yes";
283 suggestAlternative: "waterway=dam";
284 suggestAlternative: tr("two objects, one with {0} and one with {1} + {2} + {3}", "{0.tag}", "{2.key}", "{1.tag}", "layer");
285 group: tr("suspicious tag combination");
286}
287
288/* #16214 */
289relation[type=multipolygon] >[role="inner"] way[area][eval(number_of_tags()) = 1] {
290 throwWarning: tr("{0} on an inner multipolygon ring without further tags", "{0.tag}");
291 fixRemove: "area";
292 set area_yes_autofix;
293 group: tr("suspicious tag combination");
294}
295
296/* only {0.key}, see #11104 #12422 #14950 */
297*[access][eval(number_of_tags()) = 1],
298*[area][eval(number_of_tags()) = 1]!.area_yes_autofix,
299*[name][eval(number_of_tags()) = 1],
300*[ref][eval(number_of_tags()) = 1],
301*[lit][eval(number_of_tags()) = 1] {
302 throwWarning: tr("incomplete object: only {0}", "{0.key}");
303 group: tr("missing tag");
304}
305/* only {0.key} and {1.key} */
306*[name][area][eval(number_of_tags()) = 2],
307*[name][ref][eval(number_of_tags()) = 2] {
308 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.key}");
309 group: tr("missing tag");
310}
311/* only {0.tag}, #15269 */
312*[tourism=attraction][eval(number_of_tags()) = 1] {
313 throwWarning: tr("incomplete object: only {0}", "{0.tag}");
314 group: tr("missing tag");
315}
316/* only {0.key} and {1.tag} */
317*[name][tourism=attraction][eval(number_of_tags()) = 2] {
318 throwWarning: tr("incomplete object: only {0} and {1}", "{0.key}", "{1.tag}");
319 group: tr("missing tag");
320}
321
322/* #9811, #11491, #12865, #14310 */
323*[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)$/],
324/* addr:postcode is used together with place in some countries */
325*[boundary][/^addr:/],
326*[highway][/^addr:/][highway!=services][highway!=rest_area][!"addr:postcode"] {
327 throwWarning: tr("{0} together with addr:*", "{0.key}");
328 group: tr("suspicious tag combination");
329 assertMatch: "node place=foo addr:housenumber=5";
330 assertMatch: "node place=foo addr:housenumber=5 addr:postcode=12345";
331 assertNoMatch: "node place=foo addr:postcode=12345";
332}
333*[!highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
334 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
335 group: tr("suspicious tag combination");
336}
337*[!highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
338 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
339 group: tr("suspicious tag combination");
340}
341way[highway][postal_code]["addr:postcode"][postal_code=*"addr:postcode"] {
342 throwWarning: tr("{0} together with {1}", "{1.key}", "{2.key}");
343 group: tr("suspicious tag combination");
344 fixRemove: "addr:postcode";
345}
346way[highway][postal_code]["addr:postcode"][postal_code!=*"addr:postcode"] {
347 throwWarning: tr("{0} together with {1} and conflicting values", "{1.key}", "{2.key}");
348 group: tr("suspicious tag combination");
349}
350way[highway][highway!=services][highway!=rest_area][!postal_code]["addr:postcode"] {
351 throwWarning: tr("{0} together with {1}", "{0.key}", "{4.key}");
352 suggestAlternative: "postal_code";
353 group: tr("suspicious tag combination");
354 fixChangeKey: "addr:postcode=>postal_code";
355}
356
357/* #9195 */
358way[highway=footway][cycleway=lane] {
359 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
360 suggestAlternative: "highway=path + foot=designated + bicycle=designated + segregated=yes";
361 group: tr("suspicious tag combination");
362}
363
364/* {0} on suspicious object */
365*[tunnel ][!highway][!railway][!waterway][!piste:type][public_transport!=platform][route!=ferry][man_made!=pipeline][man_made!=goods_conveyor][man_made!=wildlife_crossing],
366*[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],
367*[psv ][!highway][!railway][!waterway][barrier!=bollard][amenity !~ /^parking.*/],
368*[width ][!highway][!railway][!waterway][!aeroway][!cycleway][!footway][!barrier][!man_made][!entrance][natural!=stone][leisure!=track],
369*[maxspeed][!highway][!railway][traffic_sign !~ /^((.*;)?maxspeed(;.*)?|[A-Z][A-Z]:.+)$/][type != enforcement][waterway !~ /^(river|canal|lock)$/][!traffic_calming][aerialway!=zip_line] {
370 throwWarning: tr("{0} on suspicious object", "{0.key}");
371 group: tr("suspicious tag combination");
372}
373
374*[amenity][amenity =~ /^(restaurant|cafe|fast_food|pub|place_of_worship|school|university|hospital|library|theatre|courthouse|bank|cinema|pharmacy|fuel)$/][!name][noname!=yes] {
375 throwOther: tr("{0} without {1}", "{0.tag}", "{2.key}");
376 group: tr("missing tag");
377 assertMatch: "node amenity=restaurant";
378 assertNoMatch: "node amenity=restaurant noname=yes";
379 assertNoMatch: "node amenity=restaurant name=Foobar";
380}
381
382/* #10193, #16157 */
383way[highway][barrier],
384*[highway][waterway][waterway!=dam][waterway!=weir],
385way[highway][natural][natural!=ridge],
386*[landuse][building][landuse!=retail] {
387 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
388 group: tr("suspicious tag combination");
389 assertNoMatch: "node highway=street_lamp natural=birds_nest";
390}
391
392/* #6932 */
393*[natural=water][leisure=swimming_pool] {
394 throwWarning: tr("natural water used for swimming pool");
395 group: tr("suspicious tag combination");
396 fixRemove: "natural";
397}
398
399/* #9593, #11183, #12418, #12761, #17254 */
400*[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] {
401 throwWarning: tr("sport without physical feature");
402 group: tr("missing tag");
403 assertMatch: "node sport=tennis";
404 assertNoMatch: "node sport=tennis leisure=pitch";
405 assertNoMatch: "node sport=beachvolleyball natural=beach";
406 assertNoMatch: "node sport=skiing"; /* skiing has deprecated warning */
407 assertNoMatch: "node sport=swimming tourism=hotel";
408 assertNoMatch: "node sport=10pin amenity=restaurant";
409}
410
411/* {0.key} without {1.key} or {2.key} see #10140 */
412*[building:levels][!building][!building:part],
413way[usage][!railway][!waterway][route!=railway][man_made!=pipeline] {
414 throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.key}", "{2.key}");
415 group: tr("missing tag");
416}
417
418/* any other *_name tag (with some exceptions) but not a name , see #10837 #11297 #11539 #16437 */
419*[/_name$/][!name][!old_name][!loc_name][!uic_name][!artist_name][!lock_name][!"osak:municipality_name"][!"osak:street_name"][noname!=yes] {
420 throwWarning: tr("alternative name without {0}", "{1.key}");
421 group: tr("missing tag");
422}
423
424/* #10837 */
425way[destination][!oneway?][junction!=roundabout][highway] {
426 throwWarning: tr("incomplete usage of {0} on a way without {1}", "{0.key}", "{1.key}");
427 suggestAlternative: "destination:forward";
428 suggestAlternative: "destination:backward";
429}
430
431/* #11389 */
432way["maxspeed:forward"=*"maxspeed:backward"][!maxspeed] {
433 throwWarning: tr("Same value of {0} and {1}", "{0.key}", "{1.key}");
434 suggestAlternative: "maxspeed";
435 group: tr("suspicious tag combination");
436 fixChangeKey: "maxspeed:forward=>maxspeed";
437 fixRemove: "maxspeed:backward";
438}
439way["maxspeed:forward"=*maxspeed]["maxspeed:backward"=*maxspeed][maxspeed] {
440 throwWarning: tr("Same value of {0}, {1} and {2}", "{0.key}", "{1.key}", "{2.key}");
441 set AllSameMaxspeed;
442 suggestAlternative: "maxspeed";
443 group: tr("suspicious tag combination");
444 fixRemove: "maxspeed:forward";
445 fixRemove: "maxspeed:backward";
446}
447way["maxspeed:forward"]["maxspeed:backward"][maxspeed]!.AllSameMaxspeed {
448 throwWarning: tr("{0} and {1} together with {2} and conflicting values", "{0.key}", "{1.key}", "{2.key}");
449 group: tr("suspicious tag combination");
450}
451way["maxspeed:forward"][maxspeed][!"maxspeed:backward"],
452way["maxspeed:backward"][maxspeed][!"maxspeed:forward"] {
453 throwWarning: tr("{0} together with {1}", "{0.key}", "{1.key}");
454 group: tr("suspicious tag combination");
455}
456
457/* #11837 */
458way[layer][layer<0][bridge][bridge!=no][location!=underground][indoor!=yes][!tunnel],
459way[layer][layer>0][tunnel][tunnel!=no][location!=overground][indoor!=yes][!bridge] {
460 throwWarning: tr("{0} together with {1}", "{2.tag}", "{0.tag}");
461 group: tr("suspicious tag combination");
462}
463
464/* #12942 */
465relation[oneway][type!=route] {
466 throwWarning: tr("{0} on a relation without {1}", "{0.key}", "{1.tag}");
467}
468
469/* #9182 */
470way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) > 400] {
471 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}");
472 group: tr("suspicious tag combination");
473}
474way[waterway][layer][layer=~/^(-1|-2|-3|-4|-5)$/][!tunnel][culvert!=yes][covered!=yes][pipeline!=yes][location!=underground][eval(waylength()) <= 400] {
475 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}");
476 group: tr("suspicious tag combination");
477}
478
479/* #13144, #15536 */
480*[unisex=yes][female=yes][male!=yes][shop=hairdresser],
481*[unisex=yes][male=yes][female!=yes][shop=hairdresser] {
482 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
483 group: tr("suspicious tag combination");
484}
485*[unisex=yes][female=yes][male=yes][shop=hairdresser] {
486 throwWarning: tr("{0} together with {1} and {2}. Remove {1} and {2}", "{0.tag}", "{1.tag}", "{2.tag}");
487 group: tr("suspicious tag combination");
488 fixRemove: "female";
489 fixRemove: "male";
490}
491*[female=yes][male=yes][!unisex][shop=hairdresser] {
492 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
493 suggestAlternative: "unisex=yes";
494 group: tr("suspicious tag combination");
495 fixRemove: "female";
496 fixRemove: "male";
497 fixAdd: "unisex=yes";
498}
499
500/* {1.key} without {2.tag} see #13138, #14468 */
501way!:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir], /* water=intermittent is deprecated and has an own warning */
502area:closed[water][natural!~/water|bay|strait/][water!=intermittent][amenity!=lavoir] {
503 throwWarning: tr("{0} without {1}", "{1.key}", "{2.tag}");
504 group: tr("missing tag");
505}
506
507/* see #8519, #11529, limited to motorways and trunks to avoid false positives for streets with lanes for non motorized traffic */
508way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][turn:lanes ][tag(lanes)!=eval(count(split("|", tag("turn:lanes"))))],
509way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][change:lanes ][tag(lanes)!=eval(count(split("|", tag("change:lanes"))))],
510way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][maxspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("maxspeed:lanes"))))],
511way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][minspeed:lanes ][tag(lanes)!=eval(count(split("|", tag("minspeed:lanes"))))],
512way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:lanes"))))],
513way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:ref:lanes ][tag(lanes)!=eval(count(split("|", tag("destination:ref:lanes"))))],
514way[highway =~ /^(motorway|motorway_link|trunk|trunk_link)$/][lanes][destination:symbol:lanes][tag(lanes)!=eval(count(split("|", tag("destination:symbol:lanes"))))] {
515 throwWarning: tr("Different number of lanes in the keys {0} and {1}", "{1.key}", "{2.key}");
516 group: tr("suspicious tag combination");
517}
518
519/* #13680 */
520area[golf=bunker][natural=beach] {
521 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
522 suggestAlternative: "natural=sand";
523 suggestAlternative: "surface=sand";
524 group: tr("suspicious tag combination");
525}
526
527/* #13705 */
528relation[type=multipolygon][building] > way {
529 set part_of_building_MP;
530}
531way["addr:housenumber"][!building][!"building:part"][!"demolished:building"][!note][!amenity][!leisure][!landuse][!man_made][!tourism][!barrier]!.part_of_building_MP {
532 /* don't exclude shop because a lot of real missing bulding tag cases have a shop tag. */
533 throwOther: tr("possibly missing {0} tag", "{1.key}");
534 group: tr("missing tag");
535}
536
537/* #14125, #14323 */
538way[highway][lanes][!lanes:forward][!lanes:backward][oneway!=yes][oneway!=-1][junction!=roundabout][lanes>2][get(split(".", tag(lanes)/2), 1)=5] {
539 throwWarning: tr("street with odd number of {0}, but without {1} and {2} or {3}", "{1.key}", "{2.key}", "{3.key}", "{4.key}");
540 group: tr("missing tag");
541 assertNoMatch: "way highway=primary lanes=2";
542 assertNoMatch: "way highway=primary lanes=3 lanes:backward=2";
543 assertNoMatch: "way highway=primary lanes=3 oneway=-1";
544 assertNoMatch: "way highway=primary lanes=4";
545 assertMatch: "way highway=primary lanes=3";
546}
547
548/* #15774 */
549node[emergency=fire_hydrant][fire_hydrant:count][fire_hydrant:count!=1] {
550 throwOther: tr("{0} together with {1}. Tag each hydrant separately.", "{0.tag}", "{1.tag}");
551}
552
553/* #12502 */
554node[leisure=park][natural=tree] {
555 throwWarning: tr("{0} together with {1} on a node. Remove {0}.", "{0.tag}", "{1.tag}");
556 group: tr("suspicious tag combination");
557 fixRemove: "leisure";
558}
559
560/* #17305 */
561area[boundary=administrative][landuse=residential] {
562 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
563 group: tr("suspicious tag combination");
564}
565
566/* #17391 */
567way[highway=pedestrian][width][width<3] {
568 throwWarning: tr("{0} together with {1}", "{0.tag}", "{1.tag}");
569 suggestAlternative: "highway=footway";
570 group: tr("suspicious tag combination");
571 fixAdd: "highway=footway";
572 assertMatch: "way highway=pedestrian width=0.8";
573 assertMatch: "way highway=pedestrian width=1";
574 assertNoMatch: "way highway=pedestrian width=3";
575 assertNoMatch: "way highway=pedestrian width=5.5";
576}
Note: See TracBrowser for help on using the repository browser.