Rebasing branch on develop
This commit is contained in:
commit
62cc8f456c
@ -23,6 +23,19 @@ ignore_areas = true -- future feature
|
|||||||
traffic_signal_penalty = 7 -- seconds
|
traffic_signal_penalty = 7 -- seconds
|
||||||
u_turn_penalty = 20
|
u_turn_penalty = 20
|
||||||
|
|
||||||
|
function limit_speed(speed, limits)
|
||||||
|
-- don't use ipairs(), since it stops at the first nil value
|
||||||
|
for i=1, #limits do
|
||||||
|
limit = limits[i]
|
||||||
|
if limit ~= nil and limit > 0 then
|
||||||
|
if limit < speed then
|
||||||
|
return limit -- stop at first speedlimit that's smaller than speed
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return speed
|
||||||
|
end
|
||||||
|
|
||||||
function node_function (node)
|
function node_function (node)
|
||||||
local traffic_signal = node.tags:Find("highway")
|
local traffic_signal = node.tags:Find("highway")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user