File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1515 - CHANGED: allow routing past ` barrier=arch ` [ #5352 ] ( https://github.com/Project-OSRM/osrm-backend/pull/5352 )
1616 - CHANGED: default car weight was reduced to 2000 kg. [ #5371 ] ( https://github.com/Project-OSRM/osrm-backend/pull/5371 )
1717 - CHANGED: default car height was reduced to 2 meters. [ #5389 ] ( https://github.com/Project-OSRM/osrm-backend/pull/5389 )
18+ - FIXED: treat ` bicycle=use_sidepath ` as no access on the tagged way. [ #5622 ] ( https://github.com/Project-OSRM/osrm-backend/pull/5622 )
1819 - Misc:
1920 - CHANGED: Reduce memory usage for raster source handling. [ #5572 ] ( https://github.com/Project-OSRM/osrm-backend/pull/5572 )
2021
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ Feature: Bike - Access tags on ways
127127 | | | agricultural | |
128128 | | | forestry | |
129129 | | | delivery | |
130+ | | | use_sidepath | |
130131
131132 Scenario : Bike - Access tags on both node and way
132133 Then routability should be
Original file line number Diff line number Diff line change @@ -56,7 +56,13 @@ function setup()
5656 ' private' ,
5757 ' agricultural' ,
5858 ' forestry' ,
59- ' delivery'
59+ ' delivery' ,
60+ -- When a way is tagged with `use_sidepath` a parallel way suitable for
61+ -- cyclists is mapped and must be used instead (by law). This tag is
62+ -- used on ways that normally may be used by cyclists, but not when
63+ -- a signposted parallel cycleway is available. For purposes of routing
64+ -- cyclists, this value should be treated as 'no access for bicycles'.
65+ ' use_sidepath'
6066 },
6167
6268 restricted_access_tag_list = Set { },
You can’t perform that action at this time.
0 commit comments