setup.py
Theophile Terraz 2024-01-24 15:26:33 +01:00
parent ad59afc4f5
commit b56172328e
2 changed files with 9 additions and 3 deletions

View File

@ -195,7 +195,7 @@ class MeshingWithMage(AMeshingTool):
gl = reach.compute_guidelines()
# we make sure that the lines are in the left-ti-right order
# we make sure that the lines are in the left-to-right order
guide_list = [
x.name
for x in reach.profiles[0].named_points()

View File

@ -302,10 +302,16 @@ class Reach(SQLSubModel):
return [profile.kp for profile in self.profiles]
def get_kp_min(self):
return min(self.get_kp())
if len(self.get_kp()) > 0:
return min(self.get_kp())
else:
return 0.0
def get_kp_max(self):
return max(self.get_kp())
if len(self.get_kp()) > 0:
return max(self.get_kp())
else:
return 0.0
# Sediment Layers