Bicycle surface speeds (#6212)
This commit is contained in:
parent
be353630d5
commit
660cea8fcc
@ -59,6 +59,9 @@
|
|||||||
- ADDED: Support snapping to multiple ways at an input location. [#5953](https://github.com/Project-OSRM/osrm-backend/pull/5953)
|
- ADDED: Support snapping to multiple ways at an input location. [#5953](https://github.com/Project-OSRM/osrm-backend/pull/5953)
|
||||||
- FIXED: Fix snapping target locations to ways used in turn restrictions. [#6339](https://github.com/Project-OSRM/osrm-backend/pull/6339)
|
- FIXED: Fix snapping target locations to ways used in turn restrictions. [#6339](https://github.com/Project-OSRM/osrm-backend/pull/6339)
|
||||||
- ADDED: Support OSM traffic signal directions. [#6153](https://github.com/Project-OSRM/osrm-backend/pull/6153)
|
- ADDED: Support OSM traffic signal directions. [#6153](https://github.com/Project-OSRM/osrm-backend/pull/6153)
|
||||||
|
- Profile:
|
||||||
|
- CHANGED: Bicycle surface speeds [#6212](https://github.com/Project-OSRM/osrm-backend/pull/6212)
|
||||||
|
|
||||||
|
|
||||||
# 5.26.0
|
# 5.26.0
|
||||||
- Changes from 5.25.0
|
- Changes from 5.25.0
|
||||||
|
@ -9,28 +9,34 @@ Feature: Bike - Surfaces
|
|||||||
| highway | surface | bothw |
|
| highway | surface | bothw |
|
||||||
| cycleway | | 48 s |
|
| cycleway | | 48 s |
|
||||||
| cycleway | asphalt | 47.9 s |
|
| cycleway | asphalt | 47.9 s |
|
||||||
|
| cycleway | chipseal | 48 s |
|
||||||
|
| cycleway | concrete | 48 s |
|
||||||
|
| cycleway | concrete_lanes | 48 s |
|
||||||
| cycleway | cobblestone:flattened | 72 s |
|
| cycleway | cobblestone:flattened | 72 s |
|
||||||
| cycleway | paving_stones | 72 s |
|
| cycleway | paving_stones | 72 s |
|
||||||
|
| cycleway | wood | 72 s |
|
||||||
| cycleway | compacted | 72 s |
|
| cycleway | compacted | 72 s |
|
||||||
| cycleway | cobblestone | 120 s |
|
| cycleway | fine_gravel | 72 s |
|
||||||
| cycleway | fine_gravel | 120 s |
|
| cycleway | ground | 72 s |
|
||||||
|
| cycleway | dirt | 90 s |
|
||||||
|
| cycleway | cobblestone | 102.9 s |
|
||||||
| cycleway | gravel | 120 s |
|
| cycleway | gravel | 120 s |
|
||||||
| cycleway | pebblestone | 120 s |
|
| cycleway | pebblestone | 120 s |
|
||||||
| cycleway | dirt | 120 s |
|
| cycleway | dirt | 90 s |
|
||||||
| cycleway | earth | 120 s |
|
| cycleway | earth | 120 s |
|
||||||
| cycleway | grass | 120 s |
|
| cycleway | grass | 120 s |
|
||||||
| cycleway | mud | 240 s |
|
| cycleway | mud | 240 s |
|
||||||
| cycleway | sand | 240 s |
|
| cycleway | sand | 240 s |
|
||||||
| cycleway | sett | 72 s |
|
| cycleway | sett | 80 s |
|
||||||
|
|
||||||
Scenario: Bicycle - Good surfaces on small paths
|
Scenario: Bicycle - Good surfaces on small paths
|
||||||
Then routability should be
|
Then routability should be
|
||||||
| highway | surface | bothw |
|
| highway | surface | bothw |
|
||||||
| cycleway | | 48 s |
|
| cycleway | | 48 s |
|
||||||
| path | | 59.9 s |
|
| path | | 55.3 s |
|
||||||
| track | | 60 s |
|
| track | | 60 s |
|
||||||
| track | asphalt | 60 s |
|
| track | asphalt | 60 s |
|
||||||
| path | asphalt | 60 s |
|
| path | asphalt | 55.4 s |
|
||||||
|
|
||||||
Scenario: Bicycle - Surfaces should not make unknown ways routable
|
Scenario: Bicycle - Surfaces should not make unknown ways routable
|
||||||
Then routability should be
|
Then routability should be
|
||||||
|
@ -133,7 +133,7 @@ function setup()
|
|||||||
road = default_speed,
|
road = default_speed,
|
||||||
service = default_speed,
|
service = default_speed,
|
||||||
track = 12,
|
track = 12,
|
||||||
path = 12
|
path = 13
|
||||||
},
|
},
|
||||||
|
|
||||||
pedestrian_speeds = {
|
pedestrian_speeds = {
|
||||||
@ -174,21 +174,25 @@ function setup()
|
|||||||
|
|
||||||
surface_speeds = {
|
surface_speeds = {
|
||||||
asphalt = default_speed,
|
asphalt = default_speed,
|
||||||
|
chipseal = default_speed,
|
||||||
|
concrete = default_speed,
|
||||||
|
concrete_lanes = default_speed,
|
||||||
|
wood = 10,
|
||||||
["cobblestone:flattened"] = 10,
|
["cobblestone:flattened"] = 10,
|
||||||
paving_stones = 10,
|
paving_stones = 10,
|
||||||
compacted = 10,
|
compacted = 10,
|
||||||
cobblestone = 6,
|
cobblestone = 7,
|
||||||
unpaved = 6,
|
unpaved = 6,
|
||||||
fine_gravel = 6,
|
fine_gravel = 10,
|
||||||
gravel = 6,
|
gravel = 6,
|
||||||
pebblestone = 6,
|
pebblestone = 6,
|
||||||
ground = 6,
|
ground = 10,
|
||||||
dirt = 6,
|
dirt = 8,
|
||||||
earth = 6,
|
earth = 6,
|
||||||
grass = 6,
|
grass = 6,
|
||||||
mud = 3,
|
mud = 3,
|
||||||
sand = 3,
|
sand = 3,
|
||||||
sett = 10
|
sett = 9
|
||||||
},
|
},
|
||||||
|
|
||||||
classes = Sequence {
|
classes = Sequence {
|
||||||
|
Loading…
Reference in New Issue
Block a user