Commit b5617232 authored by Theophile Terraz's avatar Theophile Terraz
Browse files

debug

Showing with 9 additions and 3 deletions
+9 -3
...@@ -195,7 +195,7 @@ class MeshingWithMage(AMeshingTool): ...@@ -195,7 +195,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()
......
...@@ -302,10 +302,16 @@ class Reach(SQLSubModel): ...@@ -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):
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): 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 # Sediment Layers
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment