Results: CustomPlot: Fix index name 'max_depth'.

compare_results
Pierre-Antoine Rouby 2024-09-23 15:20:59 +02:00
parent 0cd60920ca
commit 3b83cd3418
3 changed files with 13 additions and 13 deletions

View File

@ -34,7 +34,7 @@ unit = {
"water_elevation": "0-meter",
"discharge": "1-m3s",
"velocity": "2-ms",
"depth": "3-meter",
"max_depth": "3-meter",
"mean_depth": "3-meter",
"froude": "4-dimensionless",
"wet_area": "5-m2",
@ -157,9 +157,9 @@ class CustomPlot(PamhyrPlot):
)
lines["velocity"] = line
if "depth" in self._y:
if "max_depth" in self._y:
ax = self._axes[unit["depth"]]
ax = self._axes[unit["max_depth"]]
d = list(
map(
lambda p: p.geometry.max_water_depth(
@ -171,7 +171,7 @@ class CustomPlot(PamhyrPlot):
rk, d,
color='brown', lw=1.,
)
lines["depth"] = line
lines["max_depth"] = line
if "mean_depth" in self._y:
@ -361,9 +361,9 @@ class CustomPlot(PamhyrPlot):
)
lines["velocity"] = line
if "depth" in self._y:
if "max_depth" in self._y:
ax = self._axes[unit["depth"]]
ax = self._axes[unit["max_depth"]]
d = list(
map(lambda z: profile.geometry.max_water_depth(z), z)
)
@ -372,7 +372,7 @@ class CustomPlot(PamhyrPlot):
ts, d,
color='brown', lw=1.,
)
lines["depth"] = line
lines["max_depth"] = line
if "mean_depth" in self._y:
@ -385,7 +385,7 @@ class CustomPlot(PamhyrPlot):
ts, d,
color='orange', lw=1.,
)
lines["depth"] = line
lines["mean_depth"] = line
if "froude" in self._y:

View File

@ -695,8 +695,8 @@ class ResultsWindow(PamhyrWindow):
reach.profiles
)
)
if "depth" in y:
my_dict["depth"] = list(
if "max_depth" in y:
my_dict["max_depth"] = list(
map(
lambda p: p.geometry.max_water_depth(
p.get_ts_key(timestamp, "Z")),
@ -760,8 +760,8 @@ class ResultsWindow(PamhyrWindow):
q, z
)
)
if "depth" in y:
my_dict["depth"] = list(
if "max_depth" in y:
my_dict["max_depth"] = list(
map(lambda z: profile.geometry.max_water_depth(z), z)
)
if "mean_depth" in y:

View File

@ -77,7 +77,7 @@ class ResultsTranslate(MainTranslate):
"water_elevation": self._dict["unit_water_elevation"],
"discharge": self._dict["unit_discharge"],
"velocity": self._dict["unit_speed"],
"depth": self._dict["unit_max_height"],
"max_depth": self._dict["unit_max_height"],
"mean_depth": self._dict["unit_mean_height"],
"froude": self._dict["unit_froude"],
"wet_area": self._dict["unit_wet_area"],