Skip to content

Commit 2da7ca5

Browse files
authored
Route pedestrians over highway=platform (#6993)
1 parent 8ae9aba commit 2da7ca5

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Unreleased
22
- Changes from 5.27.1
33
- Features
4+
- ADDED: Route pedestrians over highway=platform [#6993](https://github.com/Project-OSRM/osrm-backend/pull/6993)
45
- REMOVED: Remove all core-CH left-overs [#6920](https://github.com/Project-OSRM/osrm-backend/pull/6920)
56
- ADDED: Add support for a keepalive_timeout flag. [#6674](https://github.com/Project-OSRM/osrm-backend/pull/6674)
67
- ADDED: Add support for a default_radius flag. [#6575](https://github.com/Project-OSRM/osrm-backend/pull/6575)

features/foot/access.feature

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,15 @@ Feature: Foot - Access tags on ways
2626
| motorway | no | | |
2727
| motorway | no | yes | x |
2828
| 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 | |
3038

3139
Scenario: Foot - Overwriting implied acccess on ways
3240
Then routability should be

profiles/foot.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ function setup()
9090
path = walking_speed,
9191
steps = walking_speed,
9292
pedestrian = walking_speed,
93+
platform = walking_speed,
9394
footway = walking_speed,
9495
pier = walking_speed,
9596
},

0 commit comments

Comments
 (0)