/
srv
/
osrm
/
osrm-backend
/
features
/
guidance
/
/srv/osrm/osrm-backend/features/guidance
mkdir
upload
Name
Size
Mode
Actions
advanced-lanes.feature
12533
0644
edit
dl
rm
anticipate-lanes.feature
50352
0644
edit
dl
rm
bicycle-sliproads.feature
1043
0644
edit
dl
rm
bike-staggered-intersections.feature
5642
0644
edit
dl
rm
bridges_and_tunnels.feature
6638
0644
edit
dl
rm
bugs.feature
3471
0644
edit
dl
rm
circular.feature
1894
0644
edit
dl
rm
collapse-detail.feature
6718
0644
edit
dl
rm
collapse-ferry.feature
6397
0644
edit
dl
rm
collapse.feature
49443
0644
edit
dl
rm
continue.feature
6240
0644
edit
dl
rm
dedicated-turn-roads.feature
44435
0644
edit
dl
rm
destination-signs.feature
3497
0644
edit
dl
rm
directional-destination-signs.feature
3739
0644
edit
dl
rm
directional-ref-destination-signs.feature
3466
0644
edit
dl
rm
divided-highways.feature
4576
0644
edit
dl
rm
driveway.feature
2067
0644
edit
dl
rm
end-of-road.feature
7684
0644
edit
dl
rm
exit-numbers-names.feature
4154
0644
edit
dl
rm
fork.feature
11907
0644
edit
dl
rm
internal-intersections.feature
3080
0644
edit
dl
rm
intersections.feature
5462
0644
edit
dl
rm
low-priority.feature
3382
0644
edit
dl
rm
maneuver-tag.feature
13784
0644
edit
dl
rm
merge-segregated-roads.feature
33373
0644
edit
dl
rm
merge.feature
4055
0644
edit
dl
rm
motorway.feature
12209
0644
edit
dl
rm
new-name.feature
12819
0644
edit
dl
rm
notification.feature
2341
0644
edit
dl
rm
obvious-turn-discovery.feature
41305
0644
edit
dl
rm
perception.feature
4492
0644
edit
dl
rm
post-processing.feature
828
0644
edit
dl
rm
ramp.feature
8484
0644
edit
dl
rm
rotary.feature
11266
0644
edit
dl
rm
roundabout-bike.feature
3954
0644
edit
dl
rm
roundabout-left-sided.feature
2066
0644
edit
dl
rm
roundabout-turn-bike.feature
2157
0644
edit
dl
rm
roundabout-turn.feature
25696
0644
edit
dl
rm
roundabout.feature
44395
0644
edit
dl
rm
staggered-intersections.feature
5430
0644
edit
dl
rm
suffix-changes.feature
3420
0644
edit
dl
rm
suppressed.feature
2209
0644
edit
dl
rm
trimming.feature
675
0644
edit
dl
rm
turn-angles.feature
65140
0644
edit
dl
rm
turn-lanes.feature
64825
0644
edit
dl
rm
turn-location.feature
623
0644
edit
dl
rm
turn.feature
48182
0644
edit
dl
rm
Edit:
/srv/osrm/osrm-backend/features/guidance/intersections.feature
(5462B)
@routing @guidance @intersections Feature: Intersections Data Background: Given the profile "car" Given a grid size of 10 meters Scenario: Passing Three Way South Given the node map """ a b c d """ And the ways | nodes | name | | ab | through | | bc | through | | bd | corner | When I route I should get | waypoints | route | intersections | | a,c | through,through | true:90,true:90 true:180 false:270;true:270 | Scenario: Passing Three Way North Given the node map """ d a b c """ And the ways | nodes | name | | ab | through | | bc | through | | bd | corner | When I route I should get | waypoints | route | intersections | | a,c | through,through | true:90,true:0 true:90 false:270;true:270 | Scenario: Passing Oneway Street In Given the node map """ d a b c """ And the ways | nodes | name | oneway | | ab | through | no | | bc | through | no | | db | corner | yes | When I route I should get | waypoints | route | intersections | | a,c | through,through | true:90,false:0 true:90 false:270;true:270 | Scenario: Passing Oneway Street Out Given the node map """ d a b c """ And the ways | nodes | name | oneway | | ab | through | no | | bc | through | no | | bd | corner | yes | When I route I should get | waypoints | route | intersections | | a,c | through,through | true:90,true:0 true:90 false:270;true:270 | Scenario: Passing Two Intersections Given the node map """ e a b c d f """ And the ways | nodes | name | | ab | through | | bc | through | | cd | through | | be | corner | | cf | corner | When I route I should get | waypoints | route | intersections | | a,d | through,through | true:90,true:0 true:90 false:270,true:90 true:180 false:270;true:270 | Scenario: Passing Two Intersections, Collapsing Given the node map """ e a b c d f """ And the ways | nodes | name | | ab | through | | bc | throughbridge | | cd | through | | be | corner | | cf | corner | When I route I should get | waypoints | route | intersections | | a,d | through,through | true:90,true:0 true:90 false:270,true:90 true:180 false:270;true:270 | | f,a | corner,throughbridge,through | true:0;true:90 false:180 true:270,true:0 false:90 true:270;true:90 | Scenario: Roundabouts Given the node map """ e a 1 4 f b d h 2 3 c g """ And the ways | nodes | junction | | abcda | roundabout | | ea | | | fb | | | gc | | | hd | | When I route I should get | waypoints | route | intersections | | e,f | ea,fb,fb,fb | true:180;false:0 false:150 true:210;false:30 true:150 true:270;true:90 | | e,g | ea,gc,gc,gc | true:180;false:0 false:150 true:210,false:30 true:150 true:270;true:30 true:180 false:330;true:0 | | e,h | ea,hd,hd,hd | true:180;false:0 false:150 true:210,false:30 true:150 true:270,true:30 true:180 false:330;true:90 false:210 true:330;true:270 | | e,2 | ea,abcda,abcda | true:180;false:0 false:150 true:210,false:30 true:150 true:270;true:327 +-1 | | 1,g | abcda,gc,gc | true:214,false:30 true:150 true:270;true:30 true:180 false:330;true:0 | | 1,3 | abcda,abcda | true:214,false:30 true:150 true:270,true:30 true:180 false:330;true:214 |
Save
cmd:
run