remove units from rate columns in routability testing

This commit is contained in:
karenzshea
2017-02-09 10:54:39 +01:00
committed by Patrick Niklaus
parent 140f1ad923
commit 1f3a8d4538
10 changed files with 110 additions and 105 deletions
-10
View File
@@ -486,16 +486,6 @@ function Handlers.run(handlers,way,result,data,profile)
for i,handler in ipairs(handlers) do
if Handlers[handler](way,result,data,profile) == false then
return false
else
if handler == 'handle_penalties' then
-- io.write('handler: ', handler, '\n')
-- io.write('weight ', result.weight, '\n')
-- io.write('rate ', result.forward_rate, '\n')
-- io.write('duration ', result.duration, '\n')
-- io.write('speed ', result.forward_speed, '\n')
io.write('forward speed ', result.forward_speed)
io.write('forward rate ', result.forward_rate)
end
end
end
end