From 26f7ac9ca133c5d1f4caf1ad94f26810bb16a349 Mon Sep 17 00:00:00 2001 From: Frederic Rodrigo Date: Fri, 9 Jan 2015 17:06:14 +0000 Subject: [PATCH] Black list access=psv for car profile --- features/car/access.feature | 2 ++ profiles/car.lua | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/features/car/access.feature b/features/car/access.feature index 37dfed4c6..5fd56f395 100644 --- a/features/car/access.feature +++ b/features/car/access.feature @@ -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 diff --git a/profiles/car.lua b/profiles/car.lua index cd1f06bd4..ca27c8068 100644 --- a/profiles/car.lua +++ b/profiles/car.lua @@ -3,7 +3,7 @@ barrier_whitelist = { ["cattle_grid"] = true, ["border_control"] = true, ["checkpoint"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["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" }