-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
less new names, forks consider road classes, api clean-up
- Loading branch information
Showing
10 changed files
with
392 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
@routing @guidance | ||
Feature: Basic Roundabout | ||
|
||
Background: | ||
Given the profile "testbot" | ||
Given a grid size of 10 meters | ||
|
||
Scenario: Enter and Exit | ||
Given the node map | ||
| | | a | | | | ||
| | | b | | | | ||
| h | g | | c | d | | ||
| | | e | | | | ||
| | | f | | | | ||
|
||
And the ways | ||
| nodes | roundabout | | ||
| ab | false | | ||
| cd | false | | ||
| ef | false | | ||
| gh | false | | ||
| bcegb | true | | ||
|
||
When I route I should get | ||
| waypoints | route | turns | | ||
| a,d | ab,cd,cd | depart, roundabout-exit-1, arrive | | ||
| a,f | ab,ef,ef | depart, roundabout-exit-2, arrive | | ||
| a,h | ab,gh,gh | depart, roundabout-exit-3, arrive | | ||
| d,f | cd,ef,ef | depart, roundabout-exit-1, arrive | | ||
| d,h | cd,gh,gh | depart, roundabout-exit-2, arrive | | ||
| d,a | cd,ab,ab | depart, roundabout-exit-3, arrive | | ||
| f,h | ef,gh,gh | depart, roundabout-exit-1, arrive | | ||
| f,a | ef,ab,ab | depart, roundabout-exit-2, arrive | | ||
| f,d | ef,cd,cd | depart, roundabout-exit-3, arrive | | ||
| h,a | gh,ab,ab | depart, roundabout-exit-1, arrive | | ||
| h,d | gh,cd,cd | depart, roundabout-exit-2, arrive | | ||
| h,f | gh,ef,ef | depart, roundabout-exit-3, arrive | | ||
|
||
Scenario: Only Enter | ||
Given the node map | ||
| | | a | | | | ||
| | | b | | | | ||
| h | g | | c | d | | ||
| | | e | | | | ||
| | | f | | | | ||
|
||
And the ways | ||
| nodes | roundabout | | ||
| ab | false | | ||
| cd | false | | ||
| ef | false | | ||
| gh | false | | ||
| bcegb | true | | ||
|
||
When I route I should get | ||
| waypoints | route | turns | | ||
| a,b | ab,ab | depart, arrive | | ||
| a,c | ab,bcegb | depart, roundabout-enter, arrive | | ||
| a,e | ab,bcegb | depart, roundabout-enter, arrive | | ||
| a,g | ab,bcegb | depart, roundabout-enter, arrive | | ||
| d,c | cd,cd | depart, arrive | | ||
| d,e | cd,bcegb | depart, roundabout-enter, arrive | | ||
| d,g | cd,bcegb | depart, roundabout-enter, arrive | | ||
| d,b | cd,bcegb | depart, roundabout-enter, arrive | | ||
| f,e | ef,ef | depart, arrive | | ||
| f,g | ef,bcegb | depart, roundabout-enter, arrive | | ||
| f,b | ef,bcegb | depart, roundabout-enter, arrive | | ||
| f,c | ef,bcegb | depart, roundabout-enter, arrive | | ||
| h,g | gh,gh | depart, arrive | | ||
| h,b | gh,bcegb | depart, roundabout-enter, arrive | | ||
| h,c | gh,bcegb | depart, roundabout-enter, arrive | | ||
| h,e | gh,bcegb | depart, roundabout-enter, arrive | | ||
|
||
Scenario: Only Exit | ||
Given the node map | ||
| | | a | | | | ||
| | | b | | | | ||
| h | g | | c | d | | ||
| | | e | | | | ||
| | | f | | | | ||
|
||
And the ways | ||
| nodes | roundabout | | ||
| ab | false | | ||
| cd | false | | ||
| ef | false | | ||
| gh | false | | ||
| bcegb | true | | ||
|
||
When I route I should get | ||
| waypoints | route | turns | | ||
| b,a | ab,ab | depart, arrive | | ||
| b,d | bcegb,cd,cd | depart, roundabout-exit-1, arrive | | ||
| b,f | bcegb,ef,ef | depart, roundabout-exit-2, arrive | | ||
| b,h | bcegb,gh,gh | depart, roundabout-exit-3, arrive | | ||
| c,d | cd,cd | depart, arrive | | ||
| c,f | bcegb,ef,ef | depart, roundabout-exit-1, arrive | | ||
| c,h | bcegb,gh,gh | depart, roundabout-exit-2, arrive | | ||
| c,a | bcegb,ab,ab | depart, roundabout-exit-3, arrive | | ||
| e,f | ef,ef | depart, arrive | | ||
| e,h | bcegb,gh,gh | depart, roundabout-exit-1, arrive | | ||
| e,a | bcegb,ab,ab | depart, roundabout-exit-2, arrive | | ||
| e,d | bcegb,cd,cd | depart, roundabout-exit-3, arrive | | ||
| g,h | gh,gh | depart, arrive | | ||
| g,a | bcegb,ab,ab | depart, roundabout-exit-1, arrive | | ||
| g,d | bcegb,cd,cd | depart, roundabout-exit-2, arrive | | ||
| g,f | bcegb,ef,ef | depart, roundabout-exit-3, arrive | | ||
|
||
Scenario: Drive Around | ||
Given the node map | ||
| | | a | | | | ||
| | | b | | | | ||
| h | g | | c | d | | ||
| | | e | | | | ||
| | | f | | | | ||
|
||
And the ways | ||
| nodes | roundabout | | ||
| ab | false | | ||
| cd | false | | ||
| ef | false | | ||
| gh | false | | ||
| bcegb | true | | ||
|
||
When I route I should get | ||
| waypoints | route | turns | | ||
| b,c | bcegb,bcegb | depart, arrive | | ||
| b,e | bcegb,bcegb | depart, arrive | | ||
| b,g | bcegb,bcegb | depart, arrive | | ||
| c,e | bcegb,bcegb | depart, arrive | | ||
| c,g | bcegb,bcegb | depart, arrive | | ||
| c,b | bcegb,bcegb | depart, arrive | | ||
| e,g | bcegb,bcegb | depart, arrive | | ||
| e,b | bcegb,bcegb | depart, arrive | | ||
| e,c | bcegb,bcegb | depart, arrive | | ||
| g,b | bcegb,bcegb | depart, arrive | | ||
| g,c | bcegb,bcegb | depart, arrive | | ||
| g,e | bcegb,bcegb | depart, arrive | | ||
|
||
Scenario: Mixed Entry and Exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef OSRM_UTIL_NAME_TABLE_HPP | ||
#define OSRM_UTIL_NAME_TABLE_HPP | ||
|
||
#include "util/shared_memory_vector_wrapper.hpp" | ||
#include "util/range_table.hpp" | ||
|
||
#include <string> | ||
|
||
namespace osrm | ||
{ | ||
namespace util | ||
{ | ||
class NameTable | ||
{ | ||
private: | ||
//FIXME should this use shared memory | ||
RangeTable<16, false> m_name_table; | ||
ShM<char, false>::vector m_names_char_list; | ||
public: | ||
NameTable( const std::string &filename ); | ||
std::string get_name_for_id(const unsigned name_id) const; | ||
}; | ||
} // namespace util | ||
} // namespace osrm | ||
|
||
#endif // OSRM_UTIL_NAME_TABLE_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.