diff --git a/features/foot/way.feature b/features/foot/way.feature index b643da8e1c..f1f8ca76b9 100644 --- a/features/foot/way.feature +++ b/features/foot/way.feature @@ -34,7 +34,8 @@ Feature: Foot - Accessability of different way types Scenario: Foot - Basic access Then routability should be | highway | leisure | forw | - | (nil) | track | x | + | (nil) | track | | + | footway | (nil) | x | Scenario: Foot - Proposed ways: unbuilt proposed highways are ignored, real highways with proposed upgrade tags are routed Then routability should be diff --git a/profiles/foot.lua b/profiles/foot.lua index 638ac0252a..c6b7c2128f 100644 --- a/profiles/foot.lua +++ b/profiles/foot.lua @@ -113,10 +113,6 @@ function setup() man_made = { pier = walking_speed - }, - - leisure = { - track = walking_speed } }, @@ -225,7 +221,6 @@ function process_way(profile, way, result) highway = way:get_value_by_key('highway'), bridge = way:get_value_by_key('bridge'), route = way:get_value_by_key('route'), - leisure = way:get_value_by_key('leisure'), man_made = way:get_value_by_key('man_made'), railway = way:get_value_by_key('railway'), platform = way:get_value_by_key('platform'),