Skip to content

Commit 4c97bac

Browse files
authored
Exclude highway=road from foot and bicycle profiles (#7424)
1 parent 5086fb3 commit 4c97bac

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- ADDED: Emit warning when ways reference nodes not present in input data [#1596](https://github.com/Project-OSRM/osrm-backend/issues/1596)
88
- FIXED: Compilation error in raster_source [#7422](https://github.com/Project-OSRM/osrm-backend/issues/7422)
99
- Profiles:
10+
- FIXED: Exclude `highway=road` from foot and bicycle profiles since it is an OSM error marker with unknown classification [#7039](https://github.com/Project-OSRM/osrm-backend/issues/7039)
1011
- FIXED: Roads with a real `highway=*` type and an additional `proposed=*` tag (e.g. a planned upgrade) are now routed correctly instead of being silently pruned [#7413](https://github.com/Project-OSRM/osrm-backend/issues/7413)
1112
- ADDED: Vehicle-specific maximum speed profiles with configurable upper bounds (e.g., 87 km/h for trucks) [#6979](https://github.com/Project-OSRM/osrm-backend/issues/6979)
1213
- ADDED: Make `max_collapse_distance` configurable via Lua profiles to preserve short road crossings in pedestrian routing [#6171](https://github.com/Project-OSRM/osrm-backend/issues/6171)

features/bicycle/way.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Feature: Bike - Accessability of different way types
2525
| service | x |
2626
| unclassified | x |
2727
| living_street | x |
28-
| road | x |
28+
| road | |
2929
| track | x |
3030
| path | x |
3131
| footway | x |

features/foot/way.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Feature: Foot - Accessability of different way types
2121
| service | x |
2222
| unclassified | x |
2323
| living_street | x |
24-
| road | x |
24+
| road | |
2525
| track | x |
2626
| path | x |
2727
| footway | x |

profiles/bicycle.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ function setup()
137137
residential = default_speed,
138138
unclassified = default_speed,
139139
living_street = default_speed,
140-
road = default_speed,
141140
service = default_speed,
142141
track = 12,
143142
path = 13

profiles/foot.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ function setup()
8686
tertiary_link = walking_speed,
8787
unclassified = walking_speed,
8888
residential = walking_speed,
89-
road = walking_speed,
9089
living_street = walking_speed,
9190
service = walking_speed,
9291
track = walking_speed,

0 commit comments

Comments
 (0)