Changeset 17410 in josm for trunk/resources/data/validator


Ignore:
Timestamp:
2020-12-14T18:34:04+01:00 (4 years ago)
Author:
Klumbumbus
Message:

fix #20241 - Don't warn about icao and iata tags on aerodrome=heliport

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/resources/data/validator/combinations.mapcss

    r17324 r17410  
    109109}
    110110
    111 /* {0.key} without {1.tag} or {2.tag}, #15107 */
    112 *[iata                         ][aeroway!=aerodrome][aeroway!=helipad],
    113 *[icao                         ][aeroway!=aerodrome][aeroway!=helipad],
     111/* {0.key} without {1.tag} or {2.tag} */
    114112*[bridge:movable               ][bridge!=movable][man_made!=bridge],
    115113*[substation                   ][power!=substation][pipeline!=substation],
     
    117115way[waterway=pressurised       ][tunnel!=flooded][man_made!=pipeline] {
    118116  throwWarning: tr("{0} without {1} or {2}", "{0.key}", "{1.tag}", "{2.tag}");
     117  group: tr("missing tag");
     118}
     119
     120/* {0.key} without {1.tag}, {2.tag} or {3.tag}, #15107, #20241 */
     121*[iata                         ][aeroway!=aerodrome][aeroway!=heliport][aeroway!=helipad],
     122*[icao                         ][aeroway!=aerodrome][aeroway!=heliport][aeroway!=helipad] {
     123  throwWarning: tr("{0} without {1}, {2} or {3}", "{0.key}", "{1.tag}", "{2.tag}", "{3.tag}");
    119124  group: tr("missing tag");
    120125}
Note: See TracChangeset for help on using the changeset viewer.