wolfhece 2.0.23__py3-none-any.whl → 2.0.25__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wolfhece/PyCrosssections.py +3 -1
- wolfhece/PyDraw.py +47 -157
- wolfhece/PyGui.py +75 -73
- wolfhece/PyGuiHydrology.py +3 -2
- wolfhece/PyHydrographs.py +3 -2
- wolfhece/PyParams.py +12 -4
- wolfhece/PyVertex.py +12 -13
- wolfhece/RatingCurve.py +6 -2
- wolfhece/RatingCurve_xml.py +1 -1
- wolfhece/Results2DGPU.py +21 -66
- wolfhece/apps/__init__.py +1 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/drawing_obj.py +10 -1
- wolfhece/hydrology/Catchment.py +3 -4
- wolfhece/hydrology/Dumping.py +6 -5
- wolfhece/hydrology/Optimisation.py +76 -63
- wolfhece/hydrology/Outlet.py +16 -13
- wolfhece/hydrology/RetentionBasin.py +23 -23
- wolfhece/hydrology/SubBasin.py +8 -7
- wolfhece/lazviewer/points/expr.py +1 -1
- wolfhece/libs/WolfDll_debug.dll +0 -0
- wolfhece/mesh2d/config_manager.py +4 -3
- wolfhece/mesh2d/wolf2dprev.py +33 -24
- wolfhece/pybridges.py +2 -3
- wolfhece/scenario/config_manager.py +1 -1
- wolfhece/wolfresults_2D.py +164 -67
- {wolfhece-2.0.23.dist-info → wolfhece-2.0.25.dist-info}/METADATA +1 -1
- {wolfhece-2.0.23.dist-info → wolfhece-2.0.25.dist-info}/RECORD +31 -33
- wolfhece/lazviewer/vfuncs/__init__.py +0 -0
- wolfhece/lazviewer/vfuncs/vfuncs.cp310-win_amd64.pyd +0 -0
- wolfhece/lazviewer/vfuncs/vfuncs.cp39-win_amd64.pyd +0 -0
- {wolfhece-2.0.23.dist-info → wolfhece-2.0.25.dist-info}/WHEEL +0 -0
- {wolfhece-2.0.23.dist-info → wolfhece-2.0.25.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.0.23.dist-info → wolfhece-2.0.25.dist-info}/top_level.txt +0 -0
wolfhece/wolfresults_2D.py
CHANGED
@@ -352,17 +352,28 @@ class Props_Res_2D(wx.Frame):
|
|
352
352
|
|
353
353
|
Toolssizer = wx.BoxSizer(wx.VERTICAL)
|
354
354
|
hbox = wx.BoxSizer(wx.HORIZONTAL)
|
355
|
-
|
356
|
-
|
357
|
-
self.
|
358
|
-
|
359
|
-
|
355
|
+
hbox2 = wx.BoxSizer(wx.HORIZONTAL)
|
356
|
+
|
357
|
+
self._label_epsilon = wx.StaticText(self._tools,label=_('Epsilon'))
|
358
|
+
self._txt_epsilon = wx.TextCtrl(self._tools,value=str(self._parent.epsilon), style=wx.TE_CENTER)
|
359
|
+
self._txt_epsilon.SetToolTip(_('Epsilon value under which the value is not plotted'))
|
360
|
+
|
361
|
+
self._label_nullvalue = wx.StaticText(self._tools,label=_('Null value'))
|
362
|
+
self._txt_nullvalue = wx.TextCtrl(self._tools,value=str(self._parent.nullvalue), style=wx.TE_CENTER)
|
363
|
+
self._txt_nullvalue.SetToolTip(_('Null value -- All node with this value will be masked (not plotted)'))
|
364
|
+
|
365
|
+
hbox.Add(self._label_epsilon, 0, wx.EXPAND|wx.ALL)
|
366
|
+
hbox.Add(self._txt_epsilon, 1, wx.EXPAND|wx.ALL)
|
367
|
+
|
368
|
+
hbox2.Add(self._label_nullvalue, 0, wx.EXPAND|wx.ALL)
|
369
|
+
hbox2.Add(self._txt_nullvalue, 1, wx.EXPAND|wx.ALL)
|
360
370
|
|
361
371
|
self._Apply_Tools = wx.Button(self._tools, wx.ID_ANY, _("Apply modifications"), wx.DefaultPosition,
|
362
372
|
wx.DefaultSize, 0)
|
363
373
|
self._Apply_Tools.SetToolTip(_("Save modifications into memmory/object"))
|
364
374
|
|
365
375
|
Toolssizer.Add(hbox, 0, wx.EXPAND)
|
376
|
+
Toolssizer.Add(hbox2, 0, wx.EXPAND)
|
366
377
|
Toolssizer.Add(self._Apply_Tools, 1, wx.EXPAND)
|
367
378
|
|
368
379
|
self._tools.SetSizer(Toolssizer)
|
@@ -628,14 +639,29 @@ class Props_Res_2D(wx.Frame):
|
|
628
639
|
def OnApplyTools(self, event:wx.MouseEvent):
|
629
640
|
""" Apply modifications in the textctrl """
|
630
641
|
|
642
|
+
neweps:str = self._txt_epsilon.Value
|
631
643
|
newnull:str = self._txt_nullvalue.Value
|
644
|
+
|
645
|
+
if neweps.lower() == 'nan':
|
646
|
+
neweps = np.nan
|
647
|
+
else:
|
648
|
+
neweps = float(neweps)
|
649
|
+
|
632
650
|
if newnull.lower() == 'nan':
|
633
651
|
newnull = np.nan
|
634
652
|
else:
|
635
653
|
newnull = float(newnull)
|
636
654
|
|
637
|
-
|
638
|
-
|
655
|
+
to_update = False
|
656
|
+
if self._parent.epsilon != neweps:
|
657
|
+
self._parent.epsilon = neweps
|
658
|
+
to_update = True
|
659
|
+
|
660
|
+
if self._parent.nullvalue != newnull:
|
661
|
+
self._parent.nullvalue = newnull
|
662
|
+
to_update = True
|
663
|
+
|
664
|
+
if to_update:
|
639
665
|
self._parent.read_oneresult(self._parent.current_result)
|
640
666
|
self._parent.set_currentview()
|
641
667
|
|
@@ -1379,10 +1405,14 @@ class OneWolfResult:
|
|
1379
1405
|
|
1380
1406
|
@property
|
1381
1407
|
def sediment_diameter(self):
|
1408
|
+
""" Diamètre des particules de sédiment [m] """
|
1409
|
+
|
1382
1410
|
return self._sedimentdiam
|
1383
1411
|
|
1384
1412
|
@sediment_diameter.setter
|
1385
1413
|
def sediment_diameter(self, value:float):
|
1414
|
+
""" Diamètre des particules de sédiment [m] """
|
1415
|
+
|
1386
1416
|
self._force_update_shields = self._sedimentdiam != value
|
1387
1417
|
self._sedimentdiam = value
|
1388
1418
|
# forcer la MAJ si nécessaire
|
@@ -1391,10 +1421,14 @@ class OneWolfResult:
|
|
1391
1421
|
|
1392
1422
|
@property
|
1393
1423
|
def sediment_density(self):
|
1424
|
+
""" Densité des particules de sédiment [-] """
|
1425
|
+
|
1394
1426
|
return self._sedimentdensity
|
1395
1427
|
|
1396
1428
|
@sediment_density.setter
|
1397
1429
|
def sediment_density(self, value:float):
|
1430
|
+
""" Densité des particules de sédiment [-] """
|
1431
|
+
|
1398
1432
|
self._force_update_shields = self._sedimentdensity != value
|
1399
1433
|
self._sedimentdensity = value
|
1400
1434
|
# forcer la MAJ si nécessaire
|
@@ -1403,12 +1437,23 @@ class OneWolfResult:
|
|
1403
1437
|
|
1404
1438
|
@property
|
1405
1439
|
def current(self):
|
1440
|
+
""" Vue courante """
|
1441
|
+
|
1406
1442
|
return self._current
|
1407
1443
|
|
1408
|
-
def set_linkedvec(self,link):
|
1444
|
+
def set_linkedvec(self, link:vector):
|
1445
|
+
""" Set the linked vecteor -- used for masking outside the vector """
|
1409
1446
|
self.linkedvec = link
|
1410
1447
|
|
1411
|
-
def set_epsilon(self,eps):
|
1448
|
+
def set_epsilon(self, eps:float):
|
1449
|
+
"""
|
1450
|
+
Définit la valeur de l'epsilon pour le masquage des données.
|
1451
|
+
|
1452
|
+
Toute valeur de waterdepth inférieure à eps sera masquée. see "filter_inundation"
|
1453
|
+
|
1454
|
+
:param eps: valeur de l'epsilon
|
1455
|
+
"""
|
1456
|
+
|
1412
1457
|
self.epsilon = eps
|
1413
1458
|
|
1414
1459
|
def filter_inundation(self):
|
@@ -1420,7 +1465,13 @@ class OneWolfResult:
|
|
1420
1465
|
mask = self.waterdepth.array < self.epsilon
|
1421
1466
|
self._current.filter_inundation(mask = mask)
|
1422
1467
|
|
1423
|
-
def set_current(self,which):
|
1468
|
+
def set_current(self, which:views_2D):
|
1469
|
+
"""
|
1470
|
+
Définition de la vue courante
|
1471
|
+
|
1472
|
+
:param which: vue courante (voir enum views_2D)
|
1473
|
+
"""
|
1474
|
+
|
1424
1475
|
self._which_current = which
|
1425
1476
|
|
1426
1477
|
if which==views_2D.WATERDEPTH:
|
@@ -1667,6 +1718,14 @@ class OneWolfResult:
|
|
1667
1718
|
self._vec_field.arrow_pixel_size = max(1,self._vec_field.arrow_pixel_size)
|
1668
1719
|
|
1669
1720
|
def update_pal(self, curpal:wolfpalette, graypal=None, bluepal=None):
|
1721
|
+
"""
|
1722
|
+
Mise à jour de la palette
|
1723
|
+
|
1724
|
+
:param curpal: palette courante
|
1725
|
+
:param graypal: palette grise
|
1726
|
+
:param bluepal: palette bleue
|
1727
|
+
"""
|
1728
|
+
|
1670
1729
|
which = self._which_current
|
1671
1730
|
|
1672
1731
|
self._current.mypal = curpal
|
@@ -1683,12 +1742,13 @@ class OneWolfResult:
|
|
1683
1742
|
elif which =='t_wd_u':
|
1684
1743
|
self._view.pals = [graypal,bluepal,None]
|
1685
1744
|
|
1686
|
-
def get_critdiam(self,which) -> WolfArray:
|
1745
|
+
def get_critdiam(self, which:int) -> WolfArray:
|
1687
1746
|
"""
|
1688
1747
|
Calcul du dimètre critique
|
1689
1748
|
|
1690
|
-
|
1749
|
+
:param which : 0 = Shields ; 1 = Izbach
|
1691
1750
|
"""
|
1751
|
+
|
1692
1752
|
def compute(which) -> WolfArray:
|
1693
1753
|
ij = np.argwhere(self.waterdepth.array>0.)
|
1694
1754
|
|
@@ -1705,16 +1765,11 @@ class OneWolfResult:
|
|
1705
1765
|
|
1706
1766
|
return diamcrit
|
1707
1767
|
|
1708
|
-
|
1709
|
-
|
1710
|
-
with wx.lib.busy.BusyInfo(_('Computing critical diameters')):
|
1711
|
-
wait = wx.BusyCursor()
|
1768
|
+
logging.info(_('Computing critical diameters'))
|
1712
1769
|
|
1713
|
-
|
1770
|
+
diamcrit = compute(which)
|
1714
1771
|
|
1715
|
-
|
1716
|
-
else:
|
1717
|
-
diamcrit = compute(which)
|
1772
|
+
logging.info(_('End of computing critical diameters'))
|
1718
1773
|
|
1719
1774
|
return diamcrit
|
1720
1775
|
|
@@ -1741,36 +1796,28 @@ class OneWolfResult:
|
|
1741
1796
|
|
1742
1797
|
return shields
|
1743
1798
|
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
shields = compute()
|
1749
|
-
|
1750
|
-
del wait
|
1751
|
-
else:
|
1752
|
-
shields = compute()
|
1799
|
+
logging.info(_('Computing critical diameters'))
|
1800
|
+
shields = compute()
|
1801
|
+
logging.info(_('End of computing critical diameters'))
|
1753
1802
|
|
1754
1803
|
return shields
|
1755
1804
|
|
1756
|
-
def get_critsusp(self,which=50):
|
1805
|
+
def get_critsusp(self, which:int = 50):
|
1757
1806
|
|
1758
|
-
|
1759
|
-
|
1760
|
-
ij = np.argwhere(self.waterdepth.array>0.)
|
1807
|
+
logging.info(_('Computing critical diameters'))
|
1808
|
+
ij = np.argwhere(self.waterdepth.array>0.)
|
1761
1809
|
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1810
|
+
diamcrit = WolfArray(mold=self.waterdepth)
|
1811
|
+
qnorm = (self.qx**2.+self.qy**2.)**.5
|
1812
|
+
qnorm.array.mask=self.waterdepth.array.mask
|
1765
1813
|
|
1766
|
-
|
1814
|
+
diam = np.asarray([get_d_cr_susp(qnorm.array[i,j],self.waterdepth.array[i,j],1./self.rough_n.array[i,j],which=which) for i,j in ij])
|
1767
1815
|
|
1768
|
-
|
1769
|
-
|
1770
|
-
del wait
|
1771
|
-
return diamcrit
|
1816
|
+
diamcrit.array[ij[:,0],ij[:,1]] = diam
|
1772
1817
|
|
1773
1818
|
def plot(self, sx=None, sy=None, xmin=None, ymin=None, xmax=None, ymax=None):
|
1819
|
+
""" Affichage des résultats """
|
1820
|
+
|
1774
1821
|
if self._which_current in VIEWS_VECTOR_FIELD:
|
1775
1822
|
self._vec_field.plot(sx, sy,xmin,ymin,xmax,ymax)
|
1776
1823
|
elif self._which_current in VIEWS_COMPLEX:
|
@@ -1778,7 +1825,9 @@ class OneWolfResult:
|
|
1778
1825
|
else:
|
1779
1826
|
self._current.plot(sx, sy,xmin,ymin,xmax,ymax)
|
1780
1827
|
|
1781
|
-
def get_values_labels(self, i, j):
|
1828
|
+
def get_values_labels(self, i:int, j:int):
|
1829
|
+
""" Récupération des valeurs et labels pour affichage """
|
1830
|
+
|
1782
1831
|
which = self._which_current
|
1783
1832
|
|
1784
1833
|
mylab = [which.value]
|
@@ -1872,6 +1921,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
1872
1921
|
- la classe se comporte donc un peu comme une généralisation d'une matrice 'WolfArrayMB' mais il ne s'agit pas d'une extension par polymorphisme
|
1873
1922
|
- on retrouve cependant plusieurs routines similaires afin de faciliter l'intégration dans un viewer WX
|
1874
1923
|
"""
|
1924
|
+
|
1875
1925
|
myblocks:dict[str, OneWolfResult]
|
1876
1926
|
head_blocks:dict[str, header_wolf]
|
1877
1927
|
|
@@ -1888,19 +1938,26 @@ class Wolfresults_2D(Element_To_Draw):
|
|
1888
1938
|
need_for_wx: bool = False,
|
1889
1939
|
loader=None) -> None:
|
1890
1940
|
"""
|
1891
|
-
|
1892
|
-
|
1893
|
-
|
1941
|
+
Initialisation
|
1942
|
+
|
1943
|
+
:param fname : nom du fichier de résultats
|
1944
|
+
:param mold : objet 'WolfArray' servant de moule pour les résultats
|
1945
|
+
:param eps : valeur de l'epsilon pour le masquage des données
|
1946
|
+
:param idx : identifiant de l'objet
|
1947
|
+
:param plotted : si True alors l'objet est prêt à être affiché
|
1948
|
+
:param mapviewer : objet 'WolfMapViewer' pour l'affichage
|
1949
|
+
:param need_for_wx : si True alors l'objet abesoin d'une app WX. Si elle n'existe pas, génération d'une erreur !
|
1950
|
+
:param loader : if True then we'll use this function rather than classic one.
|
1951
|
+
This param was introduced because one cannot guess if one's loading GPU results
|
1952
|
+
by just looking at the filename (GPU results come in directories).
|
1894
1953
|
"""
|
1895
1954
|
super().__init__(idx, plotted, mapviewer, need_for_wx)
|
1896
1955
|
|
1897
|
-
"""
|
1898
|
-
Initialisation
|
1899
|
-
"""
|
1900
1956
|
self.filename=""
|
1901
1957
|
self.filenamegen=self.filename
|
1902
1958
|
|
1903
1959
|
self.linkedvec = None # vecteur d'exclusion de données
|
1960
|
+
|
1904
1961
|
self.epsilon = eps
|
1905
1962
|
self._epsilon_default = self.epsilon
|
1906
1963
|
|
@@ -2063,6 +2120,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2063
2120
|
:param abs = if True, add translation to (x, y) (coordinate to global space)
|
2064
2121
|
:return : tuple of two lists of two floats - ([xmin, xmax],[ymin, ymax])
|
2065
2122
|
"""
|
2123
|
+
|
2066
2124
|
if abs:
|
2067
2125
|
return ([self.origx + self.translx, self.origx + self.translx + float(self.nbx) * self.dx],
|
2068
2126
|
[self.origy + self.transly, self.origy + self.transly + float(self.nby) * self.dy])
|
@@ -2072,6 +2130,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2072
2130
|
|
2073
2131
|
def check_bounds_ij(self, i:int, j:int):
|
2074
2132
|
"""Check if i and j are inside the array bounds"""
|
2133
|
+
|
2075
2134
|
x,y = self.get_xy_from_ij(i,j)
|
2076
2135
|
return self.check_bounds_xy(x,y)
|
2077
2136
|
|
@@ -2082,14 +2141,18 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2082
2141
|
|
2083
2142
|
return x>=xmin and x<=xmax and y>=ymin and y<=ymax
|
2084
2143
|
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2144
|
+
@property
|
2145
|
+
def nullvalue(self):
|
2146
|
+
""" Get nullvalue from the first block """
|
2147
|
+
|
2148
|
+
return self[0].nullvalue
|
2088
2149
|
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2150
|
+
@nullvalue.setter
|
2151
|
+
def nullvalue(self, value):
|
2152
|
+
""" Set nullvalue for all blocks """
|
2153
|
+
|
2154
|
+
for i in range(self.nb_blocks):
|
2155
|
+
self[i].nullvalue = value
|
2093
2156
|
|
2094
2157
|
@property
|
2095
2158
|
def alpha(self):
|
@@ -2133,6 +2196,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2133
2196
|
|
2134
2197
|
def show_properties(self):
|
2135
2198
|
""" Affichage des propriétés de la matrice """
|
2199
|
+
|
2136
2200
|
if self.wx_exists and self.properties is not None:
|
2137
2201
|
self.properties.SetTitle(_('Properties : ') + self.idx)
|
2138
2202
|
self.properties.Show()
|
@@ -2142,6 +2206,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2142
2206
|
Create :
|
2143
2207
|
- Props_Res_2D (GUI) if mapviewer is not None
|
2144
2208
|
"""
|
2209
|
+
|
2145
2210
|
if self.wx_exists and self.mapviewer is not None:
|
2146
2211
|
self.properties = Props_Res_2D(self, self.mapviewer)
|
2147
2212
|
self.properties.Hide()
|
@@ -2149,6 +2214,8 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2149
2214
|
self.properties = None
|
2150
2215
|
|
2151
2216
|
def get_header(self, abs=True) -> header_wolf:
|
2217
|
+
""" Récupération de l'entête de la matrice """
|
2218
|
+
|
2152
2219
|
curhead = header_wolf()
|
2153
2220
|
|
2154
2221
|
curhead.origx = self.origx
|
@@ -2177,7 +2244,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2177
2244
|
return curhead
|
2178
2245
|
|
2179
2246
|
def __getitem__(self, block_key:Union[int,str]) -> WolfArray:
|
2180
|
-
"""Access a block's
|
2247
|
+
"""Access a block's array of this multi-blocks Result"""
|
2181
2248
|
|
2182
2249
|
if isinstance(block_key,int):
|
2183
2250
|
_key = getkeyblock(block_key)
|
@@ -2189,6 +2256,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2189
2256
|
else:
|
2190
2257
|
return None
|
2191
2258
|
|
2259
|
+
""" Iterator """
|
2192
2260
|
def __iter__(self):
|
2193
2261
|
self._iter = 0
|
2194
2262
|
return self[self._iter]
|
@@ -2196,9 +2264,11 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2196
2264
|
def __next__(self):
|
2197
2265
|
self._iter += 1
|
2198
2266
|
return self[self._iter]
|
2267
|
+
""" End Iterator """
|
2199
2268
|
|
2200
2269
|
def as_WolfArray(self, copyarray:bool=True) -> Union[WolfArray, WolfArrayMB]:
|
2201
2270
|
"""Récupération d'une matrice MB ou Mono sur base du résultat courant"""
|
2271
|
+
|
2202
2272
|
if self.nb_blocks>1:
|
2203
2273
|
|
2204
2274
|
retarray = WolfArrayMB()
|
@@ -2215,6 +2285,8 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2215
2285
|
|
2216
2286
|
@property
|
2217
2287
|
def nb_blocks(self):
|
2288
|
+
""" Nombre de blocs """
|
2289
|
+
|
2218
2290
|
return len(self.myblocks)
|
2219
2291
|
|
2220
2292
|
@property
|
@@ -2250,6 +2322,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2250
2322
|
self.set_currentview()
|
2251
2323
|
|
2252
2324
|
def _gpu_loader(self, fname:str):
|
2325
|
+
|
2253
2326
|
# 2D GPU
|
2254
2327
|
nb_blocks = 1
|
2255
2328
|
self.myblocks = {}
|
@@ -2328,6 +2401,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2328
2401
|
"""
|
2329
2402
|
Lecture d'une palette disponible dans le répertoire "models"
|
2330
2403
|
"""
|
2404
|
+
|
2331
2405
|
dir = join(dirname(__file__), 'models')
|
2332
2406
|
|
2333
2407
|
if exists(join(dir, which + '.pal')):
|
@@ -2440,11 +2514,12 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2440
2514
|
"""Return the current view"""
|
2441
2515
|
return self._which_current_view
|
2442
2516
|
|
2443
|
-
def filter_inundation(self, eps=None, linkedvec = None):
|
2517
|
+
def filter_inundation(self, eps:float=None, linkedvec:vector = None):
|
2444
2518
|
"""
|
2445
|
-
Apply
|
2446
|
-
|
2447
|
-
|
2519
|
+
Apply filtering on array
|
2520
|
+
|
2521
|
+
:param eps : mask data below eps
|
2522
|
+
:param linkedvec : mask data outside linkedvec
|
2448
2523
|
"""
|
2449
2524
|
|
2450
2525
|
if eps is not None:
|
@@ -2457,8 +2532,12 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2457
2532
|
for curblock in self.myblocks.values():
|
2458
2533
|
curblock.filter_inundation()
|
2459
2534
|
|
2460
|
-
def set_currentview(self, which=None, force_wx=False):
|
2461
|
-
"""
|
2535
|
+
def set_currentview(self, which=None, force_wx=False, force_updatepal:bool=False):
|
2536
|
+
"""
|
2537
|
+
Set the current view --> see 'views_2D' for supported values
|
2538
|
+
|
2539
|
+
"""
|
2540
|
+
|
2462
2541
|
if which is None:
|
2463
2542
|
which = self._which_current_view
|
2464
2543
|
|
@@ -2503,8 +2582,11 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2503
2582
|
if which in VIEWS_VECTOR_FIELD or which in VIEWS_COMPLEX:
|
2504
2583
|
self.update_zoom_factor()
|
2505
2584
|
|
2506
|
-
|
2507
|
-
|
2585
|
+
if force_updatepal:
|
2586
|
+
self.mypal.automatic = True
|
2587
|
+
self.updatepalette()
|
2588
|
+
else:
|
2589
|
+
self.link_palette()
|
2508
2590
|
|
2509
2591
|
self.plotting=False
|
2510
2592
|
self.mimic_plotdata()
|
@@ -3474,8 +3556,12 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3474
3556
|
"""
|
3475
3557
|
Applique la même palette de couleur/colormap à tous les blocs
|
3476
3558
|
"""
|
3477
|
-
|
3478
|
-
curblock
|
3559
|
+
if (self.palgray is not None) and (self.palblue is not None):
|
3560
|
+
for curblock in self.myblocks.values():
|
3561
|
+
curblock.update_pal(self.mypal, self.palgray, self.palblue)
|
3562
|
+
else:
|
3563
|
+
for curblock in self.myblocks.values():
|
3564
|
+
curblock.update_pal(self.mypal)
|
3479
3565
|
|
3480
3566
|
def get_min_max(self, which:Literal[views_2D.TOPOGRAPHY, views_2D.WATERDEPTH, 'current']):
|
3481
3567
|
"""
|
@@ -3524,13 +3610,16 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3524
3610
|
|
3525
3611
|
return allarrays
|
3526
3612
|
|
3527
|
-
def updatepalette(self,which=0,onzoom=[]):
|
3613
|
+
def updatepalette(self, which=0, onzoom=[]):
|
3528
3614
|
"""
|
3529
3615
|
Mise à jour des palettes de couleur/colormaps
|
3530
3616
|
|
3531
3617
|
palgray : niveaux de gris
|
3532
3618
|
palblue : niveaux de bleu
|
3533
3619
|
mypal : coloration paramétrique
|
3620
|
+
|
3621
|
+
:param which: 0
|
3622
|
+
:param onzoom: Liste Python de type [xmin, xmax, ymin, ymax]
|
3534
3623
|
"""
|
3535
3624
|
self.palgray = wolfpalette()
|
3536
3625
|
self.palblue = wolfpalette()
|
@@ -3547,6 +3636,14 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3547
3636
|
|
3548
3637
|
self.link_palette()
|
3549
3638
|
|
3639
|
+
if self.properties is not None:
|
3640
|
+
# update GUI properties
|
3641
|
+
self.properties.update_palette()
|
3642
|
+
if self.mypal.automatic:
|
3643
|
+
self.properties._cm_auto.SetValue(1)
|
3644
|
+
else:
|
3645
|
+
self.properties._cm_auto.SetValue(0)
|
3646
|
+
|
3550
3647
|
def delete_lists(self):
|
3551
3648
|
"""
|
3552
3649
|
Reset des listes OpenGL de la matrice courante
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wolfhece
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.25
|
4
4
|
Author-email: Stéphane Champailler <stephane.champailler@uliege.be>, Pierre Archambeau <pierre.archambeau@uliege.be>
|
5
5
|
Project-URL: Homepage, https://uee.uliege.be/hece
|
6
6
|
Project-URL: Issues, https://uee.uliege.be/hece
|
@@ -4,28 +4,28 @@ wolfhece/GraphProfile.py,sha256=nP8xnwUBw2EIxfI7YysuWbwA7-sTZeONUMPkIVimOyg,6890
|
|
4
4
|
wolfhece/Lidar2002.py,sha256=sXZ6p8_EKI5l8fJswIMAABT6dqHKVexU52Tjl1uuisU,5770
|
5
5
|
wolfhece/ManageParams.py,sha256=Wgt5Zh7QBtyiwTAltPHunSLqt4XuVuRH76GTUrXabS4,219
|
6
6
|
wolfhece/PyConfig.py,sha256=oGSL1WsLM9uinlNP4zGBLK3uHPmBfduUi7R-VtWuRFA,8034
|
7
|
-
wolfhece/PyCrosssections.py,sha256=
|
8
|
-
wolfhece/PyDraw.py,sha256=
|
9
|
-
wolfhece/PyGui.py,sha256=
|
10
|
-
wolfhece/PyGuiHydrology.py,sha256=
|
11
|
-
wolfhece/PyHydrographs.py,sha256=
|
7
|
+
wolfhece/PyCrosssections.py,sha256=yye3WLW3dUaiXIpFXnQyTau5GfRzK2E7LxLVH-hNjAI,111113
|
8
|
+
wolfhece/PyDraw.py,sha256=CWlJvRLXtYoAUAzfGzZYjbgN0GgbT8l8-IemJlwVYMc,317074
|
9
|
+
wolfhece/PyGui.py,sha256=1NEHwZAx7T2EHBhr-Z8K3CfaBwPbhuQvsy71QsIqph8,53054
|
10
|
+
wolfhece/PyGuiHydrology.py,sha256=wKhR-KthPRyzJ887NmsozmUpm2CIQIwO3IbYORCYjrE,7290
|
11
|
+
wolfhece/PyHydrographs.py,sha256=dA7uH-whC7SGZomEpxZz1QtIEqJG73sgPa7hftJ4clg,3403
|
12
12
|
wolfhece/PyPalette.py,sha256=nb9oPLZF-xx-yvOWvw2XVVmis6XTmYT2i7hvH3qPwAg,21932
|
13
|
-
wolfhece/PyParams.py,sha256=
|
13
|
+
wolfhece/PyParams.py,sha256=znG35yKe2k_NKl7P58E9tWFjCOemSAIXVsNZVSoqdPI,82161
|
14
14
|
wolfhece/PyPictures.py,sha256=-mJB0JL2YYiEK3D7_ssDkvYiMWK4ve9kXhozQXNeSx8,2216
|
15
15
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
16
|
-
wolfhece/PyVertex.py,sha256=
|
16
|
+
wolfhece/PyVertex.py,sha256=_06ugznBpagA3akh11_4srP0zuTFstCW_0T2XnxD_Ss,35010
|
17
17
|
wolfhece/PyVertexvectors.py,sha256=n5Xfb-AlJfwV-RVOrV15Uo3STR-PYdxDY1Tb_MJkeV0,190119
|
18
18
|
wolfhece/PyWMS.py,sha256=t6jVZpTxTNSLJxABk8A79cEMWTKoRM_S_SXRipsHLzw,4493
|
19
|
-
wolfhece/RatingCurve.py,sha256=
|
19
|
+
wolfhece/RatingCurve.py,sha256=YSQvSvdMHE6hSlWVBF5Oe0-Fh3waNMpOdmcymaCCTis,21706
|
20
20
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
21
|
-
wolfhece/RatingCurve_xml.py,sha256=
|
21
|
+
wolfhece/RatingCurve_xml.py,sha256=ViGeMgKYbxorDqd2GPyC0qyWTYhTSOVIjNNPPw0Z-FE,24467
|
22
22
|
wolfhece/ReadDataDCENN.py,sha256=4OMDBgkZ_v7OWmVhyQ-reab7MPxGhFEDY2qS8yThhdM,1240
|
23
|
-
wolfhece/Results2DGPU.py,sha256=
|
23
|
+
wolfhece/Results2DGPU.py,sha256=c7q0ETGY76SxHH1bg9hNXk8KD1slM62tZBIlqw_94_A,14752
|
24
24
|
wolfhece/__init__.py,sha256=FRDE8PiJAWxX9PMXsShRMZ8YADAY4WIgKMRh52rmhiw,23
|
25
25
|
wolfhece/_add_path.py,sha256=nudniS-lsgHwXXq5o626XRDzIeYj76GoGKYt6lcu2Nc,616
|
26
26
|
wolfhece/cli.py,sha256=rHxZGgs_R776VCWhs36pYFoiuiQycwgGTVOLK-JNzjE,1937
|
27
27
|
wolfhece/color_constants.py,sha256=Snc5RX11Ydi756EkBp_83C7DiAQ_Z1aHD9jFIBsosAU,37121
|
28
|
-
wolfhece/drawing_obj.py,sha256=
|
28
|
+
wolfhece/drawing_obj.py,sha256=NJ8looAaaVlgxX0QNYx3kBbP7QFJ7_PitcL7RtOc9jY,3502
|
29
29
|
wolfhece/flow_SPWMI.py,sha256=mdiupyOem6_FZ0OSKn8Vq5Nmr9Av-j83d2YyRPLZFlQ,20658
|
30
30
|
wolfhece/friction_law.py,sha256=vMr6BgVVV2JqhPDjBtZBtosDIZcbykZxw-fKxiJzd4M,5200
|
31
31
|
wolfhece/gpuview.py,sha256=Lq17jV2ytQShUuvi1UE_A1-6Q0IojsKxrKhkYHRf_8w,23437
|
@@ -34,7 +34,7 @@ wolfhece/ins.py,sha256=0aU1mo4tYbw64Gwzrqbh-NCTH1tukmk0mpPHjRPHZXU,12661
|
|
34
34
|
wolfhece/irm_qdf.py,sha256=0nOU_usEZuWMwYOPV9qtZoWsQTn2x2DxOuk7VlYMkbo,15419
|
35
35
|
wolfhece/ismember.py,sha256=fkLvaH9fhx-p0QrlEzqa6ySO-ios3ysjAgXVXzLgSpY,2482
|
36
36
|
wolfhece/multiprojects.py,sha256=fnv19sDntJFt3fNMre18-Io14MsRazbFIML4MIxuDgU,13895
|
37
|
-
wolfhece/pybridges.py,sha256=
|
37
|
+
wolfhece/pybridges.py,sha256=HJ1BL1HC7UrgpQ-3jKXkqPFmc-TzToL28Uex2hjHk6c,57166
|
38
38
|
wolfhece/pydike.py,sha256=G4jfSZaAHHr4VWEJqnXSvEswXvlOz1yhbhQ6uu3AqyM,1943
|
39
39
|
wolfhece/pylogging.py,sha256=i9Zugx3t9dPc7nBwcP20L_R4_k_WawpAQsvbZU8l9Hg,4230
|
40
40
|
wolfhece/pypolygons_scen.py,sha256=lrUty990vT1iiILiIuTY8pNStiaZOi2dXWJuL9C-4Ps,26211
|
@@ -49,17 +49,17 @@ wolfhece/wolf_hist.py,sha256=JpRXvzJLUP-RkSkvth3DQWglgTMFI2ZEUDb4RYOfeeI,3284
|
|
49
49
|
wolfhece/wolf_texture.py,sha256=quflEvi32lWSvOPa0aDCDl-8Jv-jGtLHbR2rdx67LsI,14883
|
50
50
|
wolfhece/wolf_tiles.py,sha256=F2JsJHdAP8fIffNJdG_J26bonCIRtIwMmxKFqdSCRDA,10088
|
51
51
|
wolfhece/wolf_vrt.py,sha256=wuMPAXNYTByNGNtvWhwW1fQelPstAPTQZECgXHZ0oTM,5180
|
52
|
-
wolfhece/wolfresults_2D.py,sha256=
|
52
|
+
wolfhece/wolfresults_2D.py,sha256=DsXd1BSUHPfDP23opypCkEi2wltmlUmNezci41PBVyI,148889
|
53
53
|
wolfhece/xyz_file.py,sha256=aQOcTHkHRhXHxL_WxTHwzygp6e47San7SHSpxKQU0dw,5457
|
54
54
|
wolfhece/apps/ManageParams.py,sha256=heg5L4fMn0ettR7Bad_Q680o_JWnTbe3WFkL_9IziAk,312
|
55
55
|
wolfhece/apps/Optimisation_hydro.py,sha256=mHazBazTUGyxPbHPXhaQim8vqIeOOuKPjH0B48VWduA,374
|
56
56
|
wolfhece/apps/WolfPython.png,sha256=K3dcbeZUiJCFNwOAAlGMaRGLJ56yM8WD2I_0bk0xT1g,104622
|
57
|
-
wolfhece/apps/__init__.py,sha256=
|
57
|
+
wolfhece/apps/__init__.py,sha256=OzzKItATWV0mDkz_LC2L3w5sgT2rt8ExXXCbR_FwvlY,24
|
58
58
|
wolfhece/apps/check_install.py,sha256=jrKR-njqnpIh6ZJqvP6KbDUPVCfwTNQj4glQhcyzs9o,630
|
59
59
|
wolfhece/apps/curvedigitizer.py,sha256=avWERHuVxPnJBOD_ibczwW_XG4vAenqWS8W1zjhBox8,4898
|
60
60
|
wolfhece/apps/isocurrent.py,sha256=4XnNWPa8mYUK7V4zdDRFrHFIXNG2AN2og3TqWKKcqjY,3811
|
61
61
|
wolfhece/apps/splashscreen.py,sha256=9BNArfcoRcyWglzFDQdLv2Dlvqz8w5qYKdE5zA66-Kw,2117
|
62
|
-
wolfhece/apps/version.py,sha256=
|
62
|
+
wolfhece/apps/version.py,sha256=QTrZW8KwpQpvu9p2n5YhLCMDE5dnarPBZuFtNV0R4T0,388
|
63
63
|
wolfhece/apps/wolf.py,sha256=gqfm-ZaUJqNsfCzmdtemSeqLw-GVdSVix-evg5WArJI,293
|
64
64
|
wolfhece/apps/wolf2D.py,sha256=gWD9ee2-1pw_nUxjgRaJMuSe4kUT-RWhOeoTt_Lh1mM,267
|
65
65
|
wolfhece/apps/wolfcompare2Darrays.py,sha256=MucG5h4sU4jicDVCKohiCDUVUqx_RQ1qKrZKokpnxhQ,3743
|
@@ -82,15 +82,15 @@ wolfhece/fonts/helvetica.ttf,sha256=X4Zd3zdUmuRGMLE6UB-BMIbirpdK3Ia5czfNnuSx5P8,
|
|
82
82
|
wolfhece/fonts/sanserif.ttf,sha256=Nvv5eMgTl5-bWgV37B7E1-vZpAZPNJwjtJSzMNDrl9A,42696
|
83
83
|
wolfhece/ftp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
84
|
wolfhece/ftp/downloader.py,sha256=NANzxSzdcp25dFMYin5QA9UnFexNe6-W2AqqTzUE4f4,5223
|
85
|
-
wolfhece/hydrology/Catchment.py,sha256=
|
85
|
+
wolfhece/hydrology/Catchment.py,sha256=xpV-pE6sCnrIWtaNruN2FUTyGap9JgzeLexnoOv5a80,120399
|
86
86
|
wolfhece/hydrology/Comparison.py,sha256=fWmuR3YlpOEMTnjb6uIyXppCp_iWA0A5hRIPO-WXhYs,81534
|
87
|
-
wolfhece/hydrology/Dumping.py,sha256=
|
88
|
-
wolfhece/hydrology/Optimisation.py,sha256=
|
89
|
-
wolfhece/hydrology/Outlet.py,sha256=
|
87
|
+
wolfhece/hydrology/Dumping.py,sha256=GKYvkKgCfJQT1XEF1ceh7evdhlpZRPcuf6VlBdH-TaM,2085
|
88
|
+
wolfhece/hydrology/Optimisation.py,sha256=RBMjjobXka4uXs86rkmualZuxIuH0JMWRuITyLyJv9s,91988
|
89
|
+
wolfhece/hydrology/Outlet.py,sha256=fpetH2ZKnTKIBNuVclxrncc5OAxWUGI5_ed9gXh6fD4,10201
|
90
90
|
wolfhece/hydrology/PostProcessHydrology.py,sha256=SiW5FIf8FeQL9ItWG8ODt612k5m59aogSLgpsXinr8I,6944
|
91
91
|
wolfhece/hydrology/PyWatershed.py,sha256=K6yz8UquJi51v2nGqWmeo8qs82-QHoa2LYaxwoUBTxM,73914
|
92
|
-
wolfhece/hydrology/RetentionBasin.py,sha256=
|
93
|
-
wolfhece/hydrology/SubBasin.py,sha256=
|
92
|
+
wolfhece/hydrology/RetentionBasin.py,sha256=y8sVEIlkZHHeF5HdwClEc-5evcoPUn7zDWgSh6eWpYg,64339
|
93
|
+
wolfhece/hydrology/SubBasin.py,sha256=IvuyiSJdLO2Z3_wXYUU9Tn6UNgaVk25EgWO_fMqbNFI,141955
|
94
94
|
wolfhece/hydrology/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
95
|
wolfhece/hydrology/constant.py,sha256=W04wikEJHDQaY0bR8ddU1b_OAuwX1VjNTnXRROwZzug,1231
|
96
96
|
wolfhece/hydrology/cst_exchanges.py,sha256=Bzpebw47Q0o2-UUzKZ3fndFLOv-PfLUQM7jgQkYTJf4,14851
|
@@ -135,21 +135,19 @@ wolfhece/lazviewer/libs/tbb.dll,sha256=HnW3LKBZHrnbeItnMY2rVJln8XduJ014CMq-PfkPj
|
|
135
135
|
wolfhece/lazviewer/libs/tbbmalloc.dll,sha256=jFI6RvB88vkF0S8Q-YVjxdvIdIzfxOMkjOHrppG4QYs,208624
|
136
136
|
wolfhece/lazviewer/libs/vcomp120.dll,sha256=rnENZnDZIvu_Cty-x0P-deVyzyHPdXn69fNHpgbDfLs,137376
|
137
137
|
wolfhece/lazviewer/points/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
|
-
wolfhece/lazviewer/points/expr.py,sha256=
|
138
|
+
wolfhece/lazviewer/points/expr.py,sha256=L8-mJWnHYfgjHI-4kj7yoC58IYvQYguV-wLqaO3Xp1Q,14700
|
139
139
|
wolfhece/lazviewer/points/points.py,sha256=9qzCZvHMDL7ZdMc2P0UvljGHcB-L9_BlyR6MLMUsY84,9016
|
140
140
|
wolfhece/lazviewer/processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
141
|
wolfhece/lazviewer/processing/estimate_normals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
142
142
|
wolfhece/lazviewer/processing/estimate_normals/estimate_normals.cp310-win_amd64.pyd,sha256=HzgLI4WnTEVdjBf2rsd89-lRUqPyzO79GKrsf2Y0zDI,124416
|
143
143
|
wolfhece/lazviewer/processing/estimate_normals/estimate_normals.cp39-win_amd64.pyd,sha256=NBUTqdyyfQQXf3cBldV349yKJ6Rb7LlZKKg6UXSg2Gk,123392
|
144
|
-
wolfhece/lazviewer/vfuncs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
-
wolfhece/lazviewer/vfuncs/vfuncs.cp310-win_amd64.pyd,sha256=4mvnfY9Wd-oE7rJR1Yy7TNTsrJy95_OV9VPb5yVNbqU,135680
|
146
|
-
wolfhece/lazviewer/vfuncs/vfuncs.cp39-win_amd64.pyd,sha256=MzAEyrgnqja-FjHGtL-jbWg9o0f2SWUDVimXBN-8kCA,135168
|
147
144
|
wolfhece/lazviewer/viewer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
148
145
|
wolfhece/lazviewer/viewer/viewer.exe,sha256=pF5nwE8vMWlEzkk-SOekae9zpOsPhTWhZbqaJntumJc,202240
|
149
146
|
wolfhece/lazviewer/viewer/viewer.py,sha256=8_MQCaQOS0Z_oRPiGoRy1lq-aCirReX3hWEBjQID0ig,24665
|
150
147
|
wolfhece/libs/MSVCP140.dll,sha256=2GrBWBI6JFuSdZLIDMAg_qKcjErdwURGbEYloAypx3o,565640
|
151
148
|
wolfhece/libs/WolfDll.dll,sha256=s-Fwboq8EethHHmipZZjdniEQtyqZv6vS-bQRKNTVgs,132915712
|
152
149
|
wolfhece/libs/WolfDll_CD.dll,sha256=kC1svCwD1qSmppsiVfHwDkIvoJO_1l6TG1GfIxgiqQQ,131415040
|
150
|
+
wolfhece/libs/WolfDll_debug.dll,sha256=q-MkJtHkkFs4Q5RyQSU1nnx7CsB_vI1gBYplbf8stKg,74510848
|
153
151
|
wolfhece/libs/WolfOGL.c,sha256=tBWGfpFFe8gfRjImUUlqdxhcRpQ6ytEWU7Z6PC0v9as,1085242
|
154
152
|
wolfhece/libs/WolfOGL.pyx,sha256=kc1uxbO2wQx0Qoe7BVQnqTJgUWYx_Vtf1wzXMxzf8bI,65911
|
155
153
|
wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll,sha256=r0euvgZa8vBFoZ8g7H5Upuc8DD6aUQimMJWnIyt1OBo,19720
|
@@ -199,9 +197,9 @@ wolfhece/mar/interface_MAR_WOLF.py,sha256=MWeXaHLDT4Eo9jZOAvz013lmpgGYT1v9VUYGAg
|
|
199
197
|
wolfhece/mesh2d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
200
198
|
wolfhece/mesh2d/bc_manager.py,sha256=vSVogXy1x3A6fZKWA6mPZSGX2e3EAUVmEjD9Bgww_hU,51173
|
201
199
|
wolfhece/mesh2d/cell_tracker.py,sha256=AR-Bty-QnrY1ni8Lwak2kU2UWMAJSBCF2ugl2YpfsB4,8660
|
202
|
-
wolfhece/mesh2d/config_manager.py,sha256=
|
200
|
+
wolfhece/mesh2d/config_manager.py,sha256=vrxLku4isZJTxbHOACEEIEEjQB9pkLpaVPteJz9GhnE,14417
|
203
201
|
wolfhece/mesh2d/cst_2D_boundary_conditions.py,sha256=BaJeKHyJiKEFWBkTQeYsDBW86703ooj65MFVpPMgjLg,2810
|
204
|
-
wolfhece/mesh2d/wolf2dprev.py,sha256=
|
202
|
+
wolfhece/mesh2d/wolf2dprev.py,sha256=DEoWWHjBdAMQQWMwTSk88QMgjnN-X4ZZCmOV5p0XNOM,136438
|
205
203
|
wolfhece/models/HECE_169.pptx,sha256=OWJtsWz504A-REFaaxw8lwStHyQU2l7KEeiE7IZvtbk,3396930
|
206
204
|
wolfhece/models/blue.pal,sha256=NnjJnjnYVdQkG54RyPXvo4Tl9ytB0cN7zpiHtj1N6bw,33
|
207
205
|
wolfhece/models/diff16.pal,sha256=Pkp9kQ1GvmAKz3lgwohsw8eQySjVVKHbjhoWw-gZ6Nc,303
|
@@ -225,7 +223,7 @@ wolfhece/rem/RasterViz.py,sha256=TDhWyMppcYBL71HfhpZuMgYKhz7faZg-MEOQJo_3Ivo,291
|
|
225
223
|
wolfhece/rem/__init__.py,sha256=S2-J5uEGK_VaMFjRUYFIdSScJjZyuXH4RmMmnG3OG7I,19
|
226
224
|
wolfhece/scenario/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
225
|
wolfhece/scenario/check_scenario.py,sha256=Q0_jA3PYapcbCT881YojTwKoRi_RjZpevHXhtP9VoqE,4619
|
228
|
-
wolfhece/scenario/config_manager.py,sha256=
|
226
|
+
wolfhece/scenario/config_manager.py,sha256=hZpddcOyMfDb3ulNM229Pv-B32Ty73NtTn7i_cd7guA,55233
|
229
227
|
wolfhece/scenario/imposebc_void.py,sha256=pl7c99HQQMQT7i15fDlOOFYCdOtR5c_XIBOveOTOaLc,5273
|
230
228
|
wolfhece/scenario/update_void.py,sha256=MmiDiwWHvuk0mpXOlMeB2ImY-d1Wi3Wfmg9hrDTAraE,7176
|
231
229
|
wolfhece/shaders/fragment_shader_texture.glsl,sha256=w6h8d5mJqFaGbao0LGmjRcFFdcEQ3ICIl9JpuT71K5k,177
|
@@ -246,8 +244,8 @@ wolfhece/sounds/sonsw2.wav,sha256=pFLVt6By0_EPQNt_3KfEZ9a1uSuYTgQSX1I_Zurv9Rc,11
|
|
246
244
|
wolfhece/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
245
|
wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=yGbU_JsF56jsmms0gh7mxa7tbNQ_SxqhpAZxhm-mTy4,14860
|
248
246
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=wCxGRnE3kzEkWlWA6-3X8ADOFux_B0a5QWJ2GnXTgJw,4709
|
249
|
-
wolfhece-2.0.
|
250
|
-
wolfhece-2.0.
|
251
|
-
wolfhece-2.0.
|
252
|
-
wolfhece-2.0.
|
253
|
-
wolfhece-2.0.
|
247
|
+
wolfhece-2.0.25.dist-info/METADATA,sha256=vB782q0jVlZOidz2A7_jObdmcgydzD9BFUbUt0pcAlc,2239
|
248
|
+
wolfhece-2.0.25.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
249
|
+
wolfhece-2.0.25.dist-info/entry_points.txt,sha256=AIu1KMswrdsqNq_2jPtrRIU4tLjuTnj2dCY-pxIlshw,276
|
250
|
+
wolfhece-2.0.25.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
251
|
+
wolfhece-2.0.25.dist-info/RECORD,,
|
File without changes
|
Binary file
|
Binary file
|