2017-05-04 17:37:41 -04:00
|
|
|
@routing @bicycle @alley
|
|
|
|
Feature: Bicycle - Route around alleys
|
|
|
|
|
|
|
|
Background:
|
|
|
|
Given the profile file
|
|
|
|
"""
|
|
|
|
require 'bicycle'
|
|
|
|
properties.weight_name = 'cyclability'
|
|
|
|
"""
|
|
|
|
|
|
|
|
Scenario: Bicycle - Avoid taking alleys
|
|
|
|
Given the query options
|
|
|
|
| annotations | nodes |
|
|
|
|
|
|
|
|
Given the node map
|
|
|
|
"""
|
|
|
|
a-----b-----c
|
|
|
|
| : |
|
|
|
|
d.....e.....f
|
|
|
|
"""
|
|
|
|
|
|
|
|
And the ways
|
|
|
|
| nodes | highway | service |
|
|
|
|
| abc | residential | |
|
|
|
|
| def | service | alley |
|
|
|
|
| ad | residential | |
|
|
|
|
| be | service | alley |
|
|
|
|
| cf | residential | |
|
|
|
|
|
|
|
|
When I route I should get
|
|
|
|
| from | to | a:nodes | weight | # |
|
2017-05-15 08:56:28 -04:00
|
|
|
| a | f | 1:2:3:6 | 200.4 | Avoids d,e,f |
|
|
|
|
| a | e | 1:2:5 | 176.4 | Take the alley b,e if neccessary |
|
|
|
|
| d | f | 4:1:2:3:6 | 252.6 | Avoids the alley d,e,f |
|
2017-05-04 17:37:41 -04:00
|
|
|
|