Merge branch 'master' of gitlab-ssh.irstea.fr:theophile.terraz/pamhyr

setup.py
Pierre-Antoine Rouby 2024-01-24 15:27:02 +01:00
commit 490b5466da
2 changed files with 9 additions and 3 deletions

View File

@ -197,7 +197,7 @@ class MeshingWithMage(AMeshingTool):
gl = reach.compute_guidelines() 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 = [ guide_list = [
x.name x.name
for x in reach.profiles[0].named_points() 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] return [profile.kp for profile in self.profiles]
def get_kp_min(self): def get_kp_min(self):
if len(self.get_kp()) > 0:
return min(self.get_kp()) return min(self.get_kp())
else:
return 0.0
def get_kp_max(self): def get_kp_max(self):
if len(self.get_kp()) > 0:
return max(self.get_kp()) return max(self.get_kp())
else:
return 0.0
# Sediment Layers # Sediment Layers