Sediment calibration: Refactoring __init__ and minor change.

dev-brahim
Pierre-Antoine 2025-03-10 12:05:07 +01:00
parent 2b84fab38d
commit 6628d610de
2 changed files with 441 additions and 199 deletions

File diff suppressed because it is too large Load Diff

View File

@ -14,19 +14,25 @@
# # # #
# You should have received a copy of the GNU General Public License # # You should have received a copy of the GNU General Public License #
# along with this program. If not, see <https://www.gnu.org/licenses/>. # # along with this program. If not, see <https://www.gnu.org/licenses/>. #
from cProfile import label
# by Brahim MOUDJED # # by Brahim MOUDJED #
# ============================================================================== # # ============================================================================== #
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from cProfile import label
from PyQt5.QtWidgets import (QWidget, QHBoxLayout, QVBoxLayout, QPushButton, QGroupBox, QLabel, from PyQt5.QtWidgets import (
QSpinBox, QComboBox, QLineEdit, QSlider, QGridLayout, QMessageBox, QWidget, QHBoxLayout, QVBoxLayout, QPushButton, QGroupBox,
QScrollArea, QFileDialog, QSpacerItem, QSizePolicy) QLabel, QSpinBox, QComboBox, QLineEdit, QSlider,
QGridLayout, QMessageBox, QScrollArea, QFileDialog,
QSpacerItem, QSizePolicy
)
from PyQt5.QtGui import QIcon from PyQt5.QtGui import QIcon
from PyQt5.QtCore import Qt, QCoreApplication, QEvent, pyqtSignal, QPropertyAnimation, QSize from PyQt5.QtCore import (
Qt, QCoreApplication, QEvent, pyqtSignal, QPropertyAnimation,
QSize
)
import numpy as np import numpy as np
from copy import deepcopy from copy import deepcopy