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

Last change on this file since 15359 was 15325, checked in by Klumbumbus, 6 years ago

fix #15107 - add various airport validator rules (based on patches by maxerickson and naoliv)

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