/srv/osrm/osrm-backend/features/guidance
NameSizeModeActions
advanced-lanes.feature125330644editdlrm
anticipate-lanes.feature503520644editdlrm
bicycle-sliproads.feature10430644editdlrm
bike-staggered-intersections.feature56420644editdlrm
bridges_and_tunnels.feature66380644editdlrm
bugs.feature34710644editdlrm
circular.feature18940644editdlrm
collapse-detail.feature67180644editdlrm
collapse-ferry.feature63970644editdlrm
collapse.feature494430644editdlrm
continue.feature62400644editdlrm
dedicated-turn-roads.feature444350644editdlrm
destination-signs.feature34970644editdlrm
directional-destination-signs.feature37390644editdlrm
directional-ref-destination-signs.feature34660644editdlrm
divided-highways.feature45760644editdlrm
driveway.feature20670644editdlrm
end-of-road.feature76840644editdlrm
exit-numbers-names.feature41540644editdlrm
fork.feature119070644editdlrm
internal-intersections.feature30800644editdlrm
intersections.feature54620644editdlrm
low-priority.feature33820644editdlrm
maneuver-tag.feature137840644editdlrm
merge-segregated-roads.feature333730644editdlrm
merge.feature40550644editdlrm
motorway.feature122090644editdlrm
new-name.feature128190644editdlrm
notification.feature23410644editdlrm
obvious-turn-discovery.feature413050644editdlrm
perception.feature44920644editdlrm
post-processing.feature8280644editdlrm
ramp.feature84840644editdlrm
rotary.feature112660644editdlrm
roundabout-bike.feature39540644editdlrm
roundabout-left-sided.feature20660644editdlrm
roundabout-turn-bike.feature21570644editdlrm
roundabout-turn.feature256960644editdlrm
roundabout.feature443950644editdlrm
staggered-intersections.feature54300644editdlrm
suffix-changes.feature34200644editdlrm
suppressed.feature22090644editdlrm
trimming.feature6750644editdlrm
turn-angles.feature651400644editdlrm
turn-lanes.feature648250644editdlrm
turn-location.feature6230644editdlrm
turn.feature481820644editdlrm
Edit: /srv/osrm/osrm-backend/features/guidance/ramp.feature (8484B)
@routing @guidance Feature: Ramp Guidance Background: Given the profile "car" Given a grid size of 10 meters Scenario: Ramp On Through Street Right Given the node map """ a b c d """ And the ways | nodes | highway | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp right,arrive | Scenario: Ramp On Through Street Left Given the node map """ d a b c """ And the ways | nodes | highway | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp left,arrive | Scenario: Ramp On Through Street Left and Right Given the node map """ e a b c d """ And the ways | nodes | highway | | be | motorway_link | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp right,arrive | | a,e | abc,be,be | depart,on ramp left,arrive | Scenario: Ramp On Three Way Intersection Right Given the node map """ a b c d """ And the ways | nodes | highway | | ab | tertiary | | bc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | ab,bd,bd | depart,on ramp right,arrive | Scenario: Ramp On Three Way Intersection Right Given the node map """ c a b d """ And the ways | nodes | highway | | ab | tertiary | | bc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | ab,bd,bd | depart,on ramp right,arrive | Scenario: Ramp Off Though Street Given the node map """ c a b d """ And the ways | nodes | highway | oneway | | abc | tertiary | yes | | bd | motorway_link | yes | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp right,arrive | | a,c | abc,abc | depart,arrive | Scenario: Straight Ramp Off Turning Though Street Given the node map """ c a b d """ And the ways | nodes | highway | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp straight,arrive | | a,c | abc,abc | depart,arrive | Scenario: Fork Ramp Off Turning Though Street Given the node map """ c a b d """ And the ways | nodes | highway | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp right,arrive | | a,c | abc,abc | depart,arrive | Scenario: Fork Ramp Given the node map """ c a b d """ And the ways | nodes | highway | | ab | tertiary | | bc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | ab,bd,bd | depart,on ramp right,arrive | | a,c | ab,bc | depart,arrive | Scenario: Fork Slight Ramp Given the node map """ c a b d """ And the ways | nodes | highway | | ab | tertiary | | bc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | ab,bd,bd | depart,on ramp slight right,arrive | | a,c | ab,bc | depart,arrive | Scenario: Fork Slight Ramp on Through Street Given the node map """ c a b d """ And the ways | nodes | highway | | abc | tertiary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp slight right,arrive | | a,c | abc,abc | depart,arrive | Scenario: Fork Slight Ramp on Obvious Through Street Given the node map """ c a b d """ And the ways | nodes | highway | | abc | primary | | bd | motorway_link | When I route I should get | waypoints | route | turns | | a,d | abc,bd,bd | depart,on ramp slight right,arrive | | a,c | abc,abc | depart,arrive | Scenario: Two Ramps Joining into common Motorway Given the node map """ a c d b """ And the ways | nodes | highway | | ac | motorway_link | | bc | motorway_link | | cd | motorway | When I route I should get | waypoints | route | turns | | a,d | ac,cd | depart,arrive | | b,d | bc,cd | depart,arrive | Scenario: Two Ramps Joining into common Motorway Unnamed Given the node map """ a c d b """ And the ways | nodes | highway | name | | ac | motorway_link | | | bc | motorway_link | | | cd | motorway | | When I route I should get | waypoints | route | turns | | a,d | , | depart,arrive | | b,d | , | depart,arrive | Scenario: Ferry Onto A Ramp Given the node map """ d - e - g | a - b ~ ~ ~ ~ ~ ~ ~ c ` f """ And the ways | nodes | highway | route | name | ref | | ab | primary | | boarding | | | bc | | ferry | boaty mc boatface | m2 | | cf | | ferry | boaty mc boatface | | | cd | | ferry | boaty mc boatface's cousin | | | de | motorway_link | | | | When I route I should get | waypoints | route | | a,e | boarding,boaty mc boatface,, |