adjust test cases that specify coords without leading 0

This commit is contained in:
karenzshea 2016-10-03 13:15:39 -04:00
parent 5b4e2950d9
commit 5d9fc83db4
3 changed files with 20 additions and 20 deletions

View File

@ -7,12 +7,12 @@ Feature: Traffic - speeds
Given the node locations Given the node locations
| node | lat | lon | | node | lat | lon |
| a | 0.1 | 0.1 | | a | 0.1 | 0.1 |
| b | .05 | 0.1 | | b | 0.05 | 0.1 |
| c | 0.0 | 0.1 | | c | 0.0 | 0.1 |
| d | .05 | .03 | | d | 0.05 | 0.03 |
| e | .05 | .066 | | e | 0.05 | 0.066 |
| f | .075 | .066 | | f | 0.075 | 0.066 |
| g | .075 | 0.1 | | g | 0.075 | 0.1 |
And the ways And the ways
| nodes | highway | | nodes | highway |
| ab | primary | | ab | primary |
@ -50,12 +50,12 @@ Feature: Traffic - speeds
Given the node locations Given the node locations
| node | lat | lon | | node | lat | lon |
| a | 0.1 | 0.1 | | a | 0.1 | 0.1 |
| b | .05 | 0.1 | | b | 0.05 | 0.1 |
| c | 0.0 | 0.1 | | c | 0.0 | 0.1 |
| d | .05 | .03 | | d | 0.05 | 0.03 |
| e | .05 | .066 | | e | 0.05 | 0.066 |
| f | .075 | .066 | | f | 0.075 | 0.066 |
| g | .075 | 0.1 | | g | 0.075 | 0.1 |
| h | 2.075 | 19.1 | | h | 2.075 | 19.1 |
And the ways And the ways
| nodes | highway | | nodes | highway |
@ -93,12 +93,12 @@ Feature: Traffic - speeds
Given the node locations Given the node locations
| node | lat | lon | | node | lat | lon |
| a | 0.1 | 0.1 | | a | 0.1 | 0.1 |
| b | .05 | 0.1 | | b | 0.05 | 0.1 |
| c | 0.0 | 0.1 | | c | 0.0 | 0.1 |
| d | .05 | .03 | | d | 0.05 | 0.03 |
| e | .05 | .066 | | e | 0.05 | 0.066 |
| f | .075 | .066 | | f | 0.075 | 0.066 |
| g | .075 | 0.1 | | g | 0.075 | 0.1 |
| h | 1.075 | 10.1 | | h | 1.075 | 10.1 |
And the ways And the ways
| nodes | highway | | nodes | highway |

View File

@ -5,7 +5,7 @@ Feature: osrm-contract command line option: edge-weight-updates-over-factor
Given the node locations Given the node locations
| node | lat | lon | | node | lat | lon |
| a | 0.1 | 0.1 | | a | 0.1 | 0.1 |
| b | .05 | 0.1 | | b | 0.05 | 0.1 |
| c | 0.3 | 0.1 | | c | 0.3 | 0.1 |
And the ways And the ways
| nodes | highway | | nodes | highway |

View File

@ -5,11 +5,11 @@ Feature: Raster - weights
Given the node locations Given the node locations
| node | lat | lon | | node | lat | lon |
| a | 0.1 | 0.1 | | a | 0.1 | 0.1 |
| b | .05 | 0.1 | | b | 0.05 | 0.1 |
| c | 0.0 | 0.1 | | c | 0.0 | 0.1 |
| d | .05 | .03 | | d | 0.05 | 0.03 |
| e | .05 | .066 | | e | 0.05 | 0.066 |
| f | .075 | .066 | | f | 0.075 | 0.066 |
And the ways And the ways
| nodes | highway | | nodes | highway |
| ab | primary | | ab | primary |