File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
- Changes from 5.27.1
3
3
- Features
4
+ - ADDED: Route pedestrians over highway=platform [ #6993 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6993 )
4
5
- REMOVED: Remove all core-CH left-overs [ #6920 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6920 )
5
6
- ADDED: Add support for a keepalive_timeout flag. [ #6674 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6674 )
6
7
- ADDED: Add support for a default_radius flag. [ #6575 ] ( https://github.com/Project-OSRM/osrm-backend/pull/6575 )
Original file line number Diff line number Diff line change @@ -26,7 +26,15 @@ Feature: Foot - Access tags on ways
26
26
| motorway | no | | |
27
27
| motorway | no | yes | x |
28
28
| motorway | no | no | |
29
-
29
+ | platform | | | x |
30
+ | platform | | yes | x |
31
+ | platform | | no | |
32
+ | platform | yes | | x |
33
+ | platform | yes | yes | x |
34
+ | platform | yes | no | |
35
+ | platform | no | | |
36
+ | platform | no | yes | x |
37
+ | platform | no | no | |
30
38
31
39
Scenario : Foot - Overwriting implied acccess on ways
32
40
Then routability should be
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ function setup()
90
90
path = walking_speed ,
91
91
steps = walking_speed ,
92
92
pedestrian = walking_speed ,
93
+ platform = walking_speed ,
93
94
footway = walking_speed ,
94
95
pier = walking_speed ,
95
96
},
You can’t perform that action at this time.
0 commit comments