Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6172dffd35 | |||
| 57099e4a85 | |||
| 6be468bdb4 |
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
# 5.13.0 RC2
|
# 5.13.0 RC3
|
||||||
- Changes from 5.12:
|
- Changes from 5.12:
|
||||||
- Profile:
|
- Profile:
|
||||||
- Append cardinal directions from route relations to ref fields to improve instructions
|
- Append cardinal directions from route relations to ref fields to improve instructions
|
||||||
|
|||||||
@@ -157,15 +157,16 @@ Feature: Car - Restricted access
|
|||||||
|
|
||||||
Scenario: Car - Access combinations
|
Scenario: Car - Access combinations
|
||||||
Then routability should be
|
Then routability should be
|
||||||
| highway | access | vehicle | motor_vehicle | motorcar | forw | backw | # |
|
| highway | access | vehicle | motor_vehicle | motorcar | forw | backw | # |
|
||||||
| runway | private | | | permissive | x | x | |
|
| runway | private | | | permissive | x | x | |
|
||||||
| primary | forestry | | yes | | x | x | |
|
| primary | forestry | | yes | | x | x | |
|
||||||
| cycleway | | | designated | | x | x | |
|
| cycleway | | | designated | | x | x | |
|
||||||
| residential | | yes | no | | | | |
|
| unclassified | | | destination | destination | x | x | |
|
||||||
| motorway | yes | permissive | | private | x | | implied oneway |
|
| residential | | yes | no | | | | |
|
||||||
| trunk | agricultural | designated | permissive | no | | | |
|
| motorway | yes | permissive | | private | x | | implied oneway |
|
||||||
| pedestrian | | | | | | | |
|
| trunk | agricultural | designated | permissive | no | | | |
|
||||||
| pedestrian | | | | destination | | | temporary disabled #3773 |
|
| pedestrian | | | | | | | |
|
||||||
|
| pedestrian | | | | destination | | | temporary disabled #3773 |
|
||||||
|
|
||||||
Scenario: Car - Ignore access tags for other modes
|
Scenario: Car - Ignore access tags for other modes
|
||||||
Then routability should be
|
Then routability should be
|
||||||
|
|||||||
@@ -81,6 +81,8 @@ inline auto contractExcludableGraph(ContractorGraph contractor_graph_,
|
|||||||
auto filtered_core_graph =
|
auto filtered_core_graph =
|
||||||
shared_core_graph.Filter([&filter](const NodeID node) { return filter[node]; });
|
shared_core_graph.Filter([&filter](const NodeID node) { return filter[node]; });
|
||||||
|
|
||||||
|
contractGraph(filtered_core_graph, is_shared_core, is_shared_core, node_weights);
|
||||||
|
|
||||||
edge_container.Merge(toEdges<QueryEdge>(std::move(filtered_core_graph)));
|
edge_container.Merge(toEdges<QueryEdge>(std::move(filtered_core_graph)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "osrm",
|
"name": "osrm",
|
||||||
"version": "5.13.0-rc.2",
|
"version": "5.13.0-rc.3",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.",
|
"description": "The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ function setup()
|
|||||||
'tertiary_link',
|
'tertiary_link',
|
||||||
'residential',
|
'residential',
|
||||||
'living_street',
|
'living_street',
|
||||||
|
'unclassified'
|
||||||
},
|
},
|
||||||
|
|
||||||
construction_whitelist = Set {
|
construction_whitelist = Set {
|
||||||
|
|||||||
Reference in New Issue
Block a user