Friction: Apply new PamhyrPlot features.

setup.py
Pierre-Antoine Rouby 2024-02-16 14:32:18 +01:00
parent 9302d1fabc
commit 7760181baa
4 changed files with 82 additions and 63 deletions

View File

@ -31,7 +31,66 @@ _translate = QCoreApplication.translate
class PlotStricklers(PamhyrPlot): class PlotStricklers(PamhyrPlot):
def draw_frictions(self, frictions, color="r"): def __init__(self, data=None, canvas=None, trad=None,
toolbar=None, parent=None):
super(PlotStricklers, self).__init__(
canvas=canvas,
trad=trad,
data=data,
toolbar=toolbar,
parent=parent
)
self.label_x = self._trad["kp"]
self.label_y = self._trad["stricklers"]
self.line_kp_elevation = [None, None]
self._isometric_axis = False
self._auto_relim = False
self._auto_relim_update = False
self._autoscale_update = True
@timer
def draw(self, highlight=None):
self.init_axes()
if self.data is None:
return
self.draw_data()
self.idle()
self._init = True
def draw_data(self):
kp = self.data.reach.get_kp()
self.canvas.axes.set_xlim(
left=min(kp), right=max(kp)
)
frictions = self.data.frictions
if len(frictions) != 0:
lst = frictions.frictions
self.draw_frictions(lst, self.color_plot)
# HightLight
kp_min, kp_max = (-1, -1)
if self._highlight_data is not None:
kp_min, kp_max = self._highlight_data
lst = list(
filter(
lambda s: (s.begin_kp == kp_min and
s.end_kp == kp_max),
frictions.frictions
)
)
self.draw_frictions(lst, self.color_plot_highlight)
def draw_frictions(self, frictions, color):
lst = sorted( lst = sorted(
filter( filter(
lambda f: f.is_full_defined(), lambda f: f.is_full_defined(),
@ -57,66 +116,16 @@ class PlotStricklers(PamhyrPlot):
coef_minor = list(map(lambda s: s.minor, coef)) coef_minor = list(map(lambda s: s.minor, coef))
coef_medium = list(map(lambda s: s.medium, coef)) coef_medium = list(map(lambda s: s.medium, coef))
self.line_kp_elevation = self.canvas.axes.plot( self.line_kp_elevation[0] = self.canvas.axes.plot(
kp, coef_minor, kp, coef_minor,
color=color, lw=1. color=color, lw=1.
) )
self.line_kp_elevation = self.canvas.axes.plot( self.line_kp_elevation[1] = self.canvas.axes.plot(
kp, coef_medium, kp, coef_medium,
color=color, lw=1. color=color, lw=1.
) )
@timer @timer
def draw(self, highlight=None): def update(self):
self.canvas.axes.cla() self.draw()
self.canvas.axes.grid(color='grey', linestyle='--', linewidth=0.5)
if self.data is None:
return
self.canvas.axes.set_ylabel(
_translate("MainWindow_reach", "Stricklers"),
color='black', fontsize=11
)
self.canvas.axes.set_xlabel(
_translate("MainWindow_reach", "Kp (m)"),
color='black', fontsize=11
)
kp = self.data.reach.get_kp()
self.canvas.axes.set_xlim(
left=min(kp), right=max(kp)
)
frictions = self.data.frictions
if len(frictions) != 0:
lst = frictions.frictions
self.draw_frictions(lst)
# HightLight
kp_min, kp_max = (-1, -1)
if highlight is not None:
kp_min, kp_max = highlight
lst = list(
filter(
lambda s: (s.begin_kp == kp_min and
s.end_kp == kp_max),
frictions.frictions
)
)
self.draw_frictions(lst, color="b")
self.canvas.figure.tight_layout()
self.canvas.figure.canvas.draw_idle()
if self.toolbar is not None:
self.toolbar.update()
# self._init = True
@timer
def update(self, ind=None):
if not self._init:
self.draw()
return

View File

@ -132,8 +132,8 @@ class FrictionsWindow(PamhyrWindow):
self.plot = PlotKPZ( self.plot = PlotKPZ(
canvas=self.canvas, canvas=self.canvas,
data=self._reach.reach, data=self._reach.reach,
trad=self._trad,
toolbar=None, toolbar=None,
display_current=False
) )
self.plot.draw() self.plot.draw()
@ -145,6 +145,7 @@ class FrictionsWindow(PamhyrWindow):
self.plot_2 = PlotStricklers( self.plot_2 = PlotStricklers(
canvas=self.canvas_2, canvas=self.canvas_2,
data=self._reach, data=self._reach,
trad=self._trad,
toolbar=None toolbar=None
) )
self.plot_2.draw() self.plot_2.draw()
@ -193,16 +194,18 @@ class FrictionsWindow(PamhyrWindow):
canvas=self.canvas, canvas=self.canvas,
data=reach, data=reach,
toolbar=None, toolbar=None,
display_current=False
) )
self.plot.draw(highlight=highlight) self.plot.highlight = highlight
self.plot.draw()
self.plot = PlotStricklers( self.plot = PlotStricklers(
canvas=self.canvas_2, canvas=self.canvas_2,
data=data, data=data,
trad=self._trad,
toolbar=None toolbar=None
) )
self.plot.draw(highlight=highlight) self.plot.highlight = highlight
self.plot.draw()
def add(self): def add(self):
rows = self.index_selected_rows() rows = self.index_selected_rows()

View File

@ -27,6 +27,14 @@ class FrictionsTranslate(PamhyrTranslate):
def __init__(self): def __init__(self):
super(FrictionsTranslate, self).__init__() super(FrictionsTranslate, self).__init__()
self._dict["kp"] = _translate(
"Frictions", "Kp (m)"
)
self._dict["stricklers"] = _translate(
"Frictions", "Stricklers"
)
self._dict["Edit frictions"] = _translate( self._dict["Edit frictions"] = _translate(
"Frictions", "Edit frictions" "Frictions", "Edit frictions"
) )

View File

@ -56,7 +56,7 @@ class PlotKPZ(PamhyrPlot):
self.after_plot_selected = None self.after_plot_selected = None
@timer @timer
def draw(self, highlight=None): def draw(self):
self.init_axes() self.init_axes()
if self.data is None: if self.data is None:
@ -91,8 +91,7 @@ class PlotKPZ(PamhyrPlot):
z_max = self.data.get_z_max() z_max = self.data.get_z_max()
self.line_kp_zmin_zmax = self.canvas.axes.vlines( self.line_kp_zmin_zmax = self.canvas.axes.vlines(
x=kp, x=kp, ymin=z_min, ymax=z_max,
ymin=z_min, ymax=z_max,
color=self.color_plot, color=self.color_plot,
lw=1. lw=1.
) )
@ -103,7 +102,7 @@ class PlotKPZ(PamhyrPlot):
z_min = self.data.get_z_min() z_min = self.data.get_z_min()
z_max = self.data.get_z_max() z_max = self.data.get_z_max()
kp_min, kp_max = highlight kp_min, kp_max = self._highlight_data
indexes = list( indexes = list(
map( map(