mirror of https://gitlab.com/pamhyr/pamhyr2
parent
4d026afb2c
commit
c60a0938eb
|
|
@ -1045,9 +1045,11 @@ class Mage8(Mage):
|
|||
|
||||
# check results and geometry consistency
|
||||
for i, r in enumerate(reachs):
|
||||
if len(r.profiles) != profile_len[i]:
|
||||
logger.warning(f"geometry reach {i} has {len(r.profiles)} profiles")
|
||||
logger.warning(f"results reach {i} has {profile_len[i]} values")
|
||||
lp = len(r.profiles)
|
||||
pl = profile_len[i]
|
||||
if lp != pl:
|
||||
logger.warning(f"geometry reach {i} has {lp} profiles")
|
||||
logger.warning(f"results reach {i} has {pl} values")
|
||||
return
|
||||
|
||||
ts = set()
|
||||
|
|
|
|||
Loading…
Reference in New Issue