Merge pull request #1338 from frodrigo/develop

Black list access=psv for car profile
This commit is contained in:
Dennis Luxen 2015-01-09 23:39:49 +01:00
commit 7e70fa63d7
2 changed files with 3 additions and 1 deletions

View File

@ -93,6 +93,7 @@ Feature: Car - Restricted access
| private | |
| agricultural | |
| forestry | |
| psv | |
| some_tag | x |
@ -106,6 +107,7 @@ Feature: Car - Restricted access
| private | |
| agricultural | |
| forestry | |
| psv | |
| some_tag | x |
Scenario: Car - Access tags on both node and way

View File

@ -3,7 +3,7 @@
barrier_whitelist = { ["cattle_grid"] = true, ["border_control"] = true, ["checkpoint"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true, ["lift_gate"] = true, ["no"] = true, ["entrance"] = true }
access_tag_whitelist = { ["yes"] = true, ["motorcar"] = true, ["motor_vehicle"] = true, ["vehicle"] = true, ["permissive"] = true, ["designated"] = true }
access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestry"] = true, ["emergency"] = true }
access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestry"] = true, ["emergency"] = true, ["psv"] = true }
access_tag_restricted = { ["destination"] = true, ["delivery"] = true }
access_tags = { "motorcar", "motor_vehicle", "vehicle" }
access_tags_hierachy = { "motorcar", "motor_vehicle", "vehicle", "access" }