From d4db5cca1c481db1e59a60d3ab14377d807dc637 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Sun, 23 Dec 2012 19:32:26 +0100 Subject: [PATCH] fixing typo in forestry access --- features/bicycle/barrier.feature | 1 + features/car/access.feature | 4 ++-- profiles/bicycle.lua | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/features/bicycle/barrier.feature b/features/bicycle/barrier.feature index 5aa958824..ed387c13f 100644 --- a/features/bicycle/barrier.feature +++ b/features/bicycle/barrier.feature @@ -10,6 +10,7 @@ Feature: Barriers | | x | | bollard | x | | gate | x | + | cycle_barrier | x | | cattle_grid | x | | border_control | x | | toll_booth | x | diff --git a/features/car/access.feature b/features/car/access.feature index 02b68af1e..97e61c5f8 100644 --- a/features/car/access.feature +++ b/features/car/access.feature @@ -92,7 +92,7 @@ Reference: http://wiki.openstreetmap.org/wiki/Key:access | no | | | private | | | agricultural | | - | forestery | | + | forestry | | | some_tag | x | @@ -105,7 +105,7 @@ Reference: http://wiki.openstreetmap.org/wiki/Key:access | no | | | private | | | agricultural | | - | forestery | | + | forestry | | | some_tag | x | Scenario: Car - Access tags on both node and way diff --git a/profiles/bicycle.lua b/profiles/bicycle.lua index 48cab082c..c27771b14 100644 --- a/profiles/bicycle.lua +++ b/profiles/bicycle.lua @@ -1,5 +1,5 @@ -- Begin of globals -barrier_whitelist = { [""] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true} +barrier_whitelist = { [""] = true, ["cycle_barrier"] = true, ["bollard"] = true, ["entrance"] = true, ["cattle_grid"] = true, ["border_control"] = true, ["toll_booth"] = true, ["sally_port"] = true, ["gate"] = true} access_tag_whitelist = { ["yes"] = true, ["permissive"] = true, ["designated"] = true } access_tag_blacklist = { ["no"] = true, ["private"] = true, ["agricultural"] = true, ["forestery"] = true } access_tag_restricted = { ["destination"] = true, ["delivery"] = true }