Merge pull request #689 from svenluzar/feature/roundabout4bikes

pull request moved to develop branch: roundabout handling from car profile moved to bike profile
This commit is contained in:
Dennis Luxen 2013-07-31 02:13:38 -07:00
commit 1b6c660a8f

View File

@ -189,7 +189,12 @@ function way_function (way)
way.name = "{highway:"..highway.."}" -- if no name exists, use way type way.name = "{highway:"..highway.."}" -- if no name exists, use way type
-- this encoding scheme is excepted to be a temporary solution -- this encoding scheme is excepted to be a temporary solution
end end
-- roundabout handling
if "roundabout" == junction then
way.roundabout = true;
end
-- speed -- speed
if route_speeds[route] then if route_speeds[route] then
-- ferries (doesn't cover routes tagged using relations) -- ferries (doesn't cover routes tagged using relations)