Fixes issue #489

This commit is contained in:
DennisOSRM 2012-10-29 13:32:34 +01:00
parent 10b650caf4
commit f4fd9dbd38

View File

@ -128,7 +128,7 @@ function way_function (way, numberOfNodesInWay)
(speed_profile[man_made] ~= nil and speed_profile[man_made] > 0) (speed_profile[man_made] ~= nil and speed_profile[man_made] > 0)
then then
if durationIsValid(duration) then if durationIsValid(duration) then
way.speed = parseDuration / math.max(1, numberOfNodesInWay-1); way.speed = parseDuration(duration) / math.max(1, numberOfNodesInWay-1);
way.is_duration_set = true; way.is_duration_set = true;
end end
way.direction = Way.bidirectional; way.direction = Way.bidirectional;