Changeset 16646 in josm for trunk/resources


Ignore:
Timestamp:
2020-06-15T13:45:43+02:00 (4 years ago)
Author:
Klumbumbus
Message:

fix #19389 - Add footway=access_aisle

Location:
trunk/resources/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/resources/data/defaultpresets.xml

    r16610 r16646  
    10551055            <key key="highway" value="footway" />
    10561056            <optional>
    1057                 <combo key="footway" text="Type" values="sidewalk,crossing" values_context="footway" />
     1057                <combo key="footway" text="Type" values="access_aisle,crossing,sidewalk" values_context="footway" />
    10581058                <reference ref="name_layer" />
    10591059                <reference ref="surface_smoothness" />
  • trunk/resources/data/validator/highway.mapcss

    r15648 r16646  
    103103}
    104104
    105 /* footway, see #10851, #10976, #15439 */
     105/* footway, see #10851, #10976, #15439, #19389 */
    106106way[footway=left][/^footway:/],
    107107way[footway=right][/^footway:/],
     
    136136  set fixable_footway;
    137137}
    138 way[footway][footway!=sidewalk][footway!=crossing]!.fixable_footway!.not_fixable_footway { /* do not trigger this rule if already one of the 4 previous rules applied */
    139   throwWarning: tr("Value of ''{0}'' should either be ''{1}'' or ''{2}''. For sidewalks use ''{3}'' instead.", "{0.key}", "{1.value}", "{2.value}", "sidewalk=left|right|both|no");
     138way[footway][footway!=access_aisle][footway!=crossing][footway!=sidewalk]!.fixable_footway!.not_fixable_footway { /* do not trigger this rule if already one of the 4 previous rules applied */
     139  throwWarning: tr("Value of {0} should either be {1}, {2} or {3}. For sidewalks use {4} instead.", "{0.key}", "{1.value}", "{2.value}", "{3.value}", "sidewalk=left|right|both|no");
    140140  assertNoMatch: "way footway=left";
    141141  assertNoMatch: "way footway=none";
Note: See TracChangeset for help on using the changeset viewer.