mirror of https://gitlab.com/pamhyr/pamhyr2
Geometry: Fix division by 0 for incline.
parent
473aac4500
commit
d0afd0ed74
|
|
@ -25,7 +25,7 @@ from copy import deepcopy
|
|||
from operator import itemgetter
|
||||
from functools import reduce
|
||||
|
||||
from tools import flatten, timer, trace
|
||||
from tools import flatten, timer, trace, logger_exception
|
||||
|
||||
from Model.Tools.PamhyrDB import SQLSubModel
|
||||
|
||||
|
|
@ -691,6 +691,7 @@ class Reach(SQLSubModel):
|
|||
logger.debug(f"+{incline_acc}")
|
||||
logger.debug(f"-{incline_set}")
|
||||
|
||||
try:
|
||||
return (
|
||||
reduce(
|
||||
lambda acc, x: acc + x,
|
||||
|
|
@ -698,3 +699,6 @@ class Reach(SQLSubModel):
|
|||
0.0
|
||||
) / (len(incline_set))
|
||||
)
|
||||
except Exception as e:
|
||||
logger_exception(e)
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue