Commit e4009801 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Frictions: Fix plot drawing crash.

Showing with 21 additions and 6 deletions
+21 -6
......@@ -129,6 +129,15 @@ class Friction(SQLSubModel):
def has_edge(self):
return self._edge is not None
def has_coefficient(self):
return (
self._begin_strickler is not None and
self._end_strickler is not None
)
def is_full_defined(self):
return self.has_edge() and self.has_coefficient()
@property
def begin_kp(self):
return self._begin_kp
......
......@@ -16,6 +16,8 @@
# -*- coding: utf-8 -*-
import logging
from tools import timer, flatten
from View.Tools.PamhyrPlot import PamhyrPlot
......@@ -23,13 +25,20 @@ from PyQt5.QtCore import (
QCoreApplication
)
logger = logging.getLogger()
_translate = QCoreApplication.translate
class PlotStricklers(PamhyrPlot):
def draw_frictions(self, frictions, color="r"):
lst = frictions
lst.sort(key=lambda s: s.begin_kp)
lst = sorted(
filter(
lambda f: f.is_full_defined(),
frictions
),
key=lambda s: s.begin_kp
)
coef = flatten(
map(
......
......@@ -199,10 +199,7 @@ def flatten(lst):
Returns:
returns a list of element
"""
if not lst:
return []
return reduce(list.__add__, lst)
return reduce(list.__add__, lst, [])
def timestamp(dt: datetime):
......
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