From 9ab86ae2bf03cc143df274d188df3edea89a1864 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Tue, 9 Jul 2013 14:08:24 +0200 Subject: [PATCH] Fixes issue #663 --- features/car/barrier.feature | 4 ++-- profiles/car.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/features/car/barrier.feature b/features/car/barrier.feature index 9d37d354a..3d2596b79 100644 --- a/features/car/barrier.feature +++ b/features/car/barrier.feature @@ -4,7 +4,7 @@ Feature: Car - Barriers Background: Given the profile "car" - Scenario: Car - Barriers + Scenario: Car - Barriers Then routability should be | node/barrier | bothw | | | x | @@ -14,7 +14,7 @@ Feature: Car - Barriers | border_control | x | | toll_booth | x | | sally_port | x | - | entrance | | + | entrance | x | | wall | | | fence | | | some_tag | | diff --git a/profiles/car.lua b/profiles/car.lua index ff7c37971..79c63c12f 100644 --- a/profiles/car.lua +++ b/profiles/car.lua @@ -1,7 +1,7 @@ -- Begin of globals require("lib/access") -barrier_whitelist = { ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true, ["no"] = true} +barrier_whitelist = { ["cattle_grid"] = true, ["border_control"] = 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 } access_tag_restricted = { ["destination"] = true, ["delivery"] = true }