Ticket #20742: 20742_v9.patch

File 20742_v9.patch, 2.0 KB (added by reichg, 5 years ago)

Everything except the usage of parent tags. Not sure how to get the proper parent tag if there are multiple parents.

  • resources/data/validator/combinations.mapcss

     
    109109  group: tr("missing tag");
    110110}
    111111
     112/* #20742 - No warning about barrier with inappropriate access tags on highway */
     113 way[highway=~/^(motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link)$/][!access][!vehicle] > node[barrier][barrier!~/entrance|border_control|height_restrictor|toll_booth/][!access][!motor_vehicle][!vehicle] {
     114    throwWarning: tr("{0} without access tags such as {1}, {2}, or {3}.", "{0.tag}", "{2.key}", "{3.key}", "{4.key}");
     115    group: tr("suspicious barrier");
     116}
     117
     118way[highway=~/^(footway|path|bridleway|cycleway|service)$/] > node[barrier]:connection {
     119        set barrierSmallRoadConnection;
     120}
     121
     122way[highway=~/^(unclassified|residential)$/] >[index = 1] node.barrierSmallRoadConnection,
     123way[highway=~/^(unclassified|residential)$/] >[index = -1] node.barrierSmallRoadConnection {
     124        set barrierAllowedAtConnection;
     125}
     126
     127/* 20742; warnings for major roads set by other rule, also issue 20742 */
     128way[highway=~/^(unclassified|residential)$/] > node[barrier][barrier!=bollard][!access][!access:conditional][!vehicle][!vehicle:conditional][!motor_vehicle][!motor_vehicle:conditional].barrierSmallRoadConnection!.barrierAllowedAtConnection {
     129        throwWarning: tr("Suspicious {0} on a connection of a small highway with a larger highway", "{0.tag}");
     130        set hasWarningForBarrierOnWay;
     131}
     132
     133way[highway=~/^(unclassified|residential)$/] > node[barrier].barrierSmallRoadConnection!.hasWarningForBarrierOnWay {
     134        throwOther: tr("Suspicious {0} on a connection of a small highway with a larger highway", "{0.tag}");
     135}
     136
    112137/* {0.key} without {1.tag} or {2.tag} */
    113138*[bridge:movable               ][bridge!=movable][man_made!=bridge],
    114139*[substation                   ][power!=substation][pipeline!=substation],