wolfhece 2.0.24__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 +2 -2
- wolfhece/PyGui.py +1 -1
- wolfhece/PyHydrographs.py +3 -2
- wolfhece/PyVertex.py +12 -13
- wolfhece/RatingCurve_xml.py +1 -1
- wolfhece/apps/__init__.py +1 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/lazviewer/points/expr.py +1 -1
- wolfhece/mesh2d/config_manager.py +4 -3
- wolfhece/pybridges.py +2 -3
- wolfhece/scenario/config_manager.py +1 -1
- wolfhece/wolfresults_2D.py +24 -20
- {wolfhece-2.0.24.dist-info → wolfhece-2.0.25.dist-info}/METADATA +1 -1
- {wolfhece-2.0.24.dist-info → wolfhece-2.0.25.dist-info}/RECORD +18 -21
- 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.24.dist-info → wolfhece-2.0.25.dist-info}/WHEEL +0 -0
- {wolfhece-2.0.24.dist-info → wolfhece-2.0.25.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.0.24.dist-info → wolfhece-2.0.25.dist-info}/top_level.txt +0 -0
wolfhece/PyCrosssections.py
CHANGED
@@ -1677,6 +1677,7 @@ class crosssections(Element_To_Draw):
|
|
1677
1677
|
- WOLF sxy --> format ='sxy'
|
1678
1678
|
|
1679
1679
|
L'objet stocke ses informations dans un dictionnaire : self.myprofiles
|
1680
|
+
|
1680
1681
|
Les clés de chaque entrée sont:
|
1681
1682
|
- ['index'] : integer
|
1682
1683
|
- ['left'] : wolfvertex
|
@@ -1687,13 +1688,14 @@ class crosssections(Element_To_Draw):
|
|
1687
1688
|
Pour le moment, il est possible de lire les fichiers et d'effectuer cerrains traitements (tri selon vecteur, export gltf...).
|
1688
1689
|
|
1689
1690
|
Une instance de cet objet peut être ajouté à une instance graphique WOLF pour affichage.
|
1691
|
+
|
1690
1692
|
Pour ce faire:
|
1691
1693
|
- une propriété "myzones" de type "Zones" est présente pour stocker les sections sous forme WOLF "ZONES/ZONE/VECTOR/VERTICES". --> "crosssections" n'est donc pas une extension de "Zones" !!
|
1692
1694
|
- deux instances de "cloud_vertices" contiennent les vertices des sections :
|
1693
1695
|
- cloud
|
1694
1696
|
- cloud_all
|
1695
1697
|
|
1696
|
-
|
1698
|
+
:remark !! La classe n'est pas encore prévue pour créer des sections en travers!!
|
1697
1699
|
|
1698
1700
|
"""
|
1699
1701
|
|
wolfhece/PyDraw.py
CHANGED
@@ -63,7 +63,7 @@ from . import Lidar2002
|
|
63
63
|
try:
|
64
64
|
from .hydrometry_hece.kiwis_hece import hydrometry_hece as hydrometry
|
65
65
|
except:
|
66
|
-
logging.
|
66
|
+
logging.debug(_('Hydrometry HECE module not found - Load hydrometry instead of hydrometry_hece'))
|
67
67
|
from .hydrometry.kiwis import hydrometry
|
68
68
|
|
69
69
|
from .pyshields import get_d_cr
|
@@ -7513,7 +7513,7 @@ class Compare_Arrays_Results():
|
|
7513
7513
|
assert self.type in (Comp_Type.RES2D, Comp_Type.RES2D_GPU), 'This method is only for 2D results'
|
7514
7514
|
|
7515
7515
|
for curelt in self.elements:
|
7516
|
-
curelt.set_currentview(newtype)
|
7516
|
+
curelt.set_currentview(newtype, force_updatepal = True)
|
7517
7517
|
|
7518
7518
|
# remove elements
|
7519
7519
|
for baselt, curelt, curmap in zip(self.elements, self.linked_elts, self.mapviewers):
|
wolfhece/PyGui.py
CHANGED
@@ -15,7 +15,7 @@ from .PyDraw import WolfMapViewer,imagetexture
|
|
15
15
|
try:
|
16
16
|
from .hydrometry_hece.kiwis_hece import hydrometry_hece as hydrometry
|
17
17
|
except:
|
18
|
-
logging.
|
18
|
+
logging.debug(_('Hydrometry HECE module not found - Load hydrometry instead of hydrometry_hece'))
|
19
19
|
from .hydrometry.kiwis import hydrometry
|
20
20
|
|
21
21
|
from .PyConfig import WolfConfiguration, ConfigurationKeys
|
wolfhece/PyHydrographs.py
CHANGED
wolfhece/PyVertex.py
CHANGED
@@ -383,18 +383,18 @@ class cloud_vertices(Element_To_Draw):
|
|
383
383
|
If header exists in the first line of the file, you have to mention it by header=True in initialization.
|
384
384
|
|
385
385
|
Total number of columns (nb) is important :
|
386
|
-
|
387
|
-
|
386
|
+
- if nb >3 : the file must contain a header
|
387
|
+
- if header[2].lower() == 'z', the file contains XYZ coordinates, otherwise all columns >1 are interpreted as values associated to XY
|
388
388
|
|
389
389
|
Number os values = nb - (2 or 3) depending if Z coordinate exists
|
390
390
|
|
391
391
|
Data are stored in Python dictionnary :
|
392
|
-
|
392
|
+
- 'vertex' : XY or XYZ
|
393
|
+
|
393
394
|
Each value is accessible through its headname as key :
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
- ['headnamen'] == value with headnamen
|
395
|
+
- 'headname1' : value with headname1
|
396
|
+
- 'headname2' : value with headname2
|
397
|
+
- 'headnamen' : value with headnamen
|
398
398
|
|
399
399
|
For more information, see 'readfile' or 'import_from_dxf'
|
400
400
|
|
@@ -455,7 +455,6 @@ class cloud_vertices(Element_To_Draw):
|
|
455
455
|
if fname != '':
|
456
456
|
if toload:
|
457
457
|
if Path(fname).suffix.lower() == '.dxf':
|
458
|
-
# if fname[-4:].lower()=='.dxf':
|
459
458
|
self.import_from_dxf(fname)
|
460
459
|
elif Path(fname).suffix.lower() == '.shp':
|
461
460
|
self.import_shapefile(fname)
|
@@ -477,10 +476,10 @@ class cloud_vertices(Element_To_Draw):
|
|
477
476
|
"""
|
478
477
|
Find nearest neighbors from Scipy KDTree structure based on a copy of the vertices
|
479
478
|
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
479
|
+
Return :
|
480
|
+
- list of distances
|
481
|
+
- list of "Wolfvertex"
|
482
|
+
- list of elements stored in self.myvertices
|
484
483
|
"""
|
485
484
|
keys = self.myvertices.keys()
|
486
485
|
if self.mytree is None:
|
@@ -909,7 +908,7 @@ class cloud_vertices(Element_To_Draw):
|
|
909
908
|
if return_cloud:
|
910
909
|
Nouveau nuage contenant les infos de position sur la trace et d'altitude (s,z)
|
911
910
|
else:
|
912
|
-
s,z : list
|
911
|
+
s,z : list de floats
|
913
912
|
"""
|
914
913
|
|
915
914
|
# trace:vector
|
wolfhece/RatingCurve_xml.py
CHANGED
@@ -19,7 +19,7 @@ from .PyTranslate import _
|
|
19
19
|
try:
|
20
20
|
from .hydrometry_hece.kiwis_hece import hydrometry_hece as hydrometry
|
21
21
|
except:
|
22
|
-
logging.
|
22
|
+
logging.debug(_('Hydrometry HECE module not found - Load hydrometry instead of hydrometry_hece'))
|
23
23
|
from .hydrometry.kiwis import hydrometry
|
24
24
|
|
25
25
|
def get_power_law():
|
wolfhece/apps/__init__.py
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
""" Ceci est une doc """
|
wolfhece/apps/version.py
CHANGED
@@ -7,7 +7,8 @@ import numpy as np
|
|
7
7
|
import subprocess
|
8
8
|
|
9
9
|
from ..PyTranslate import _
|
10
|
-
from ..wolfresults_2D import
|
10
|
+
from ..wolfresults_2D import Wolfresults_2D
|
11
|
+
from .wolf2dprev import prev_infiltration
|
11
12
|
from ..wolf_array import WolfArray
|
12
13
|
|
13
14
|
CHECK_EXT=['.top', '.frot']
|
@@ -313,7 +314,7 @@ class config_manager_2D:
|
|
313
314
|
nameitem = self.treelist.GetItemText(myitem).lower()
|
314
315
|
|
315
316
|
if nameitem=='fil':
|
316
|
-
mydata:
|
317
|
+
mydata:prev_infiltration
|
317
318
|
txt = _('Number of zones : {} \n'.format(mydata.nb_zones))
|
318
319
|
for i in range(1,mydata.nb_zones+1):
|
319
320
|
txt += _('Q zone {} : {} \n'.format(i,mydata.my_Q[0][i]))
|
@@ -381,7 +382,7 @@ class config_manager_2D:
|
|
381
382
|
name = self._find_sim(keyname)
|
382
383
|
if name is not None:
|
383
384
|
curdict['genfile'] = name
|
384
|
-
curdict['fil'] =
|
385
|
+
curdict['fil'] = prev_infiltration(None,name)
|
385
386
|
curdict['fil'].read_file()
|
386
387
|
|
387
388
|
def _find_sim(self,wd):
|
wolfhece/pybridges.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
"""
|
2
2
|
Bridges manager
|
3
3
|
|
4
|
-
|
4
|
+
:author : Pierre Archambeau
|
5
5
|
|
6
6
|
2023 - Liège University - HECE
|
7
7
|
"""
|
@@ -253,9 +253,8 @@ class Bridge(Zones):
|
|
253
253
|
- chaque entrée est un dictionnaire dont la clé 'values' contient un dictionnaire pour chaque matrice du projet
|
254
254
|
- chaque élément de ce sous-dictionnaire est un tuple contenant toutes les valeurs utiles
|
255
255
|
|
256
|
-
|
256
|
+
|
257
257
|
ATTENTION : si linked_arrays est un dictionnaire, alors un niveau supérieur est ajouté sur base des clés de ce dictionnaire, dans ce cas, self.linked est un dict et non une liste
|
258
|
-
***
|
259
258
|
|
260
259
|
"""
|
261
260
|
curzone = self.get_zone(zones_in_file.PARTS.value)
|
@@ -19,7 +19,7 @@ import matplotlib.pyplot as plt
|
|
19
19
|
import types
|
20
20
|
|
21
21
|
from ..PyTranslate import _
|
22
|
-
from ..wolfresults_2D import
|
22
|
+
from ..wolfresults_2D import Wolfresults_2D
|
23
23
|
from ..wolf_array import WolfArray, header_wolf, WOLF_ARRAY_FULL_INTEGER
|
24
24
|
from .check_scenario import check_file_update, check_file_bc, import_files
|
25
25
|
from .update_void import create_new_file as update_void
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -357,11 +357,11 @@ class Props_Res_2D(wx.Frame):
|
|
357
357
|
self._label_epsilon = wx.StaticText(self._tools,label=_('Epsilon'))
|
358
358
|
self._txt_epsilon = wx.TextCtrl(self._tools,value=str(self._parent.epsilon), style=wx.TE_CENTER)
|
359
359
|
self._txt_epsilon.SetToolTip(_('Epsilon value under which the value is not plotted'))
|
360
|
-
|
360
|
+
|
361
361
|
self._label_nullvalue = wx.StaticText(self._tools,label=_('Null value'))
|
362
362
|
self._txt_nullvalue = wx.TextCtrl(self._tools,value=str(self._parent.nullvalue), style=wx.TE_CENTER)
|
363
363
|
self._txt_nullvalue.SetToolTip(_('Null value -- All node with this value will be masked (not plotted)'))
|
364
|
-
|
364
|
+
|
365
365
|
hbox.Add(self._label_epsilon, 0, wx.EXPAND|wx.ALL)
|
366
366
|
hbox.Add(self._txt_epsilon, 1, wx.EXPAND|wx.ALL)
|
367
367
|
|
@@ -639,9 +639,9 @@ class Props_Res_2D(wx.Frame):
|
|
639
639
|
def OnApplyTools(self, event:wx.MouseEvent):
|
640
640
|
""" Apply modifications in the textctrl """
|
641
641
|
|
642
|
-
neweps:str = self._txt_epsilon.Value
|
642
|
+
neweps:str = self._txt_epsilon.Value
|
643
643
|
newnull:str = self._txt_nullvalue.Value
|
644
|
-
|
644
|
+
|
645
645
|
if neweps.lower() == 'nan':
|
646
646
|
neweps = np.nan
|
647
647
|
else:
|
@@ -1406,13 +1406,13 @@ class OneWolfResult:
|
|
1406
1406
|
@property
|
1407
1407
|
def sediment_diameter(self):
|
1408
1408
|
""" Diamètre des particules de sédiment [m] """
|
1409
|
-
|
1409
|
+
|
1410
1410
|
return self._sedimentdiam
|
1411
1411
|
|
1412
1412
|
@sediment_diameter.setter
|
1413
1413
|
def sediment_diameter(self, value:float):
|
1414
1414
|
""" Diamètre des particules de sédiment [m] """
|
1415
|
-
|
1415
|
+
|
1416
1416
|
self._force_update_shields = self._sedimentdiam != value
|
1417
1417
|
self._sedimentdiam = value
|
1418
1418
|
# forcer la MAJ si nécessaire
|
@@ -1422,7 +1422,7 @@ class OneWolfResult:
|
|
1422
1422
|
@property
|
1423
1423
|
def sediment_density(self):
|
1424
1424
|
""" Densité des particules de sédiment [-] """
|
1425
|
-
|
1425
|
+
|
1426
1426
|
return self._sedimentdensity
|
1427
1427
|
|
1428
1428
|
@sediment_density.setter
|
@@ -1446,9 +1446,9 @@ class OneWolfResult:
|
|
1446
1446
|
self.linkedvec = link
|
1447
1447
|
|
1448
1448
|
def set_epsilon(self, eps:float):
|
1449
|
-
"""
|
1450
|
-
Définit la valeur de l'epsilon pour le masquage des données.
|
1451
|
-
|
1449
|
+
"""
|
1450
|
+
Définit la valeur de l'epsilon pour le masquage des données.
|
1451
|
+
|
1452
1452
|
Toute valeur de waterdepth inférieure à eps sera masquée. see "filter_inundation"
|
1453
1453
|
|
1454
1454
|
:param eps: valeur de l'epsilon
|
@@ -1466,9 +1466,9 @@ class OneWolfResult:
|
|
1466
1466
|
self._current.filter_inundation(mask = mask)
|
1467
1467
|
|
1468
1468
|
def set_current(self, which:views_2D):
|
1469
|
-
"""
|
1470
|
-
Définition de la vue courante
|
1471
|
-
|
1469
|
+
"""
|
1470
|
+
Définition de la vue courante
|
1471
|
+
|
1472
1472
|
:param which: vue courante (voir enum views_2D)
|
1473
1473
|
"""
|
1474
1474
|
|
@@ -1718,9 +1718,9 @@ class OneWolfResult:
|
|
1718
1718
|
self._vec_field.arrow_pixel_size = max(1,self._vec_field.arrow_pixel_size)
|
1719
1719
|
|
1720
1720
|
def update_pal(self, curpal:wolfpalette, graypal=None, bluepal=None):
|
1721
|
-
"""
|
1722
|
-
Mise à jour de la palette
|
1723
|
-
|
1721
|
+
"""
|
1722
|
+
Mise à jour de la palette
|
1723
|
+
|
1724
1724
|
:param curpal: palette courante
|
1725
1725
|
:param graypal: palette grise
|
1726
1726
|
:param bluepal: palette bleue
|
@@ -2322,7 +2322,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2322
2322
|
self.set_currentview()
|
2323
2323
|
|
2324
2324
|
def _gpu_loader(self, fname:str):
|
2325
|
-
|
2325
|
+
|
2326
2326
|
# 2D GPU
|
2327
2327
|
nb_blocks = 1
|
2328
2328
|
self.myblocks = {}
|
@@ -2535,7 +2535,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2535
2535
|
def set_currentview(self, which=None, force_wx=False, force_updatepal:bool=False):
|
2536
2536
|
"""
|
2537
2537
|
Set the current view --> see 'views_2D' for supported values
|
2538
|
-
|
2538
|
+
|
2539
2539
|
"""
|
2540
2540
|
|
2541
2541
|
if which is None:
|
@@ -3556,8 +3556,12 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3556
3556
|
"""
|
3557
3557
|
Applique la même palette de couleur/colormap à tous les blocs
|
3558
3558
|
"""
|
3559
|
-
|
3560
|
-
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)
|
3561
3565
|
|
3562
3566
|
def get_min_max(self, which:Literal[views_2D.TOPOGRAPHY, views_2D.WATERDEPTH, 'current']):
|
3563
3567
|
"""
|
@@ -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,21 +4,21 @@ 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=
|
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
10
|
wolfhece/PyGuiHydrology.py,sha256=wKhR-KthPRyzJ887NmsozmUpm2CIQIwO3IbYORCYjrE,7290
|
11
|
-
wolfhece/PyHydrographs.py,sha256=
|
11
|
+
wolfhece/PyHydrographs.py,sha256=dA7uH-whC7SGZomEpxZz1QtIEqJG73sgPa7hftJ4clg,3403
|
12
12
|
wolfhece/PyPalette.py,sha256=nb9oPLZF-xx-yvOWvw2XVVmis6XTmYT2i7hvH3qPwAg,21932
|
13
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
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
23
|
wolfhece/Results2DGPU.py,sha256=c7q0ETGY76SxHH1bg9hNXk8KD1slM62tZBIlqw_94_A,14752
|
24
24
|
wolfhece/__init__.py,sha256=FRDE8PiJAWxX9PMXsShRMZ8YADAY4WIgKMRh52rmhiw,23
|
@@ -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
|
@@ -135,15 +135,12 @@ 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
|
@@ -200,7 +197,7 @@ wolfhece/mar/interface_MAR_WOLF.py,sha256=MWeXaHLDT4Eo9jZOAvz013lmpgGYT1v9VUYGAg
|
|
200
197
|
wolfhece/mesh2d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
198
|
wolfhece/mesh2d/bc_manager.py,sha256=vSVogXy1x3A6fZKWA6mPZSGX2e3EAUVmEjD9Bgww_hU,51173
|
202
199
|
wolfhece/mesh2d/cell_tracker.py,sha256=AR-Bty-QnrY1ni8Lwak2kU2UWMAJSBCF2ugl2YpfsB4,8660
|
203
|
-
wolfhece/mesh2d/config_manager.py,sha256=
|
200
|
+
wolfhece/mesh2d/config_manager.py,sha256=vrxLku4isZJTxbHOACEEIEEjQB9pkLpaVPteJz9GhnE,14417
|
204
201
|
wolfhece/mesh2d/cst_2D_boundary_conditions.py,sha256=BaJeKHyJiKEFWBkTQeYsDBW86703ooj65MFVpPMgjLg,2810
|
205
202
|
wolfhece/mesh2d/wolf2dprev.py,sha256=DEoWWHjBdAMQQWMwTSk88QMgjnN-X4ZZCmOV5p0XNOM,136438
|
206
203
|
wolfhece/models/HECE_169.pptx,sha256=OWJtsWz504A-REFaaxw8lwStHyQU2l7KEeiE7IZvtbk,3396930
|
@@ -226,7 +223,7 @@ wolfhece/rem/RasterViz.py,sha256=TDhWyMppcYBL71HfhpZuMgYKhz7faZg-MEOQJo_3Ivo,291
|
|
226
223
|
wolfhece/rem/__init__.py,sha256=S2-J5uEGK_VaMFjRUYFIdSScJjZyuXH4RmMmnG3OG7I,19
|
227
224
|
wolfhece/scenario/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
228
225
|
wolfhece/scenario/check_scenario.py,sha256=Q0_jA3PYapcbCT881YojTwKoRi_RjZpevHXhtP9VoqE,4619
|
229
|
-
wolfhece/scenario/config_manager.py,sha256=
|
226
|
+
wolfhece/scenario/config_manager.py,sha256=hZpddcOyMfDb3ulNM229Pv-B32Ty73NtTn7i_cd7guA,55233
|
230
227
|
wolfhece/scenario/imposebc_void.py,sha256=pl7c99HQQMQT7i15fDlOOFYCdOtR5c_XIBOveOTOaLc,5273
|
231
228
|
wolfhece/scenario/update_void.py,sha256=MmiDiwWHvuk0mpXOlMeB2ImY-d1Wi3Wfmg9hrDTAraE,7176
|
232
229
|
wolfhece/shaders/fragment_shader_texture.glsl,sha256=w6h8d5mJqFaGbao0LGmjRcFFdcEQ3ICIl9JpuT71K5k,177
|
@@ -247,8 +244,8 @@ wolfhece/sounds/sonsw2.wav,sha256=pFLVt6By0_EPQNt_3KfEZ9a1uSuYTgQSX1I_Zurv9Rc,11
|
|
247
244
|
wolfhece/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
245
|
wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=yGbU_JsF56jsmms0gh7mxa7tbNQ_SxqhpAZxhm-mTy4,14860
|
249
246
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=wCxGRnE3kzEkWlWA6-3X8ADOFux_B0a5QWJ2GnXTgJw,4709
|
250
|
-
wolfhece-2.0.
|
251
|
-
wolfhece-2.0.
|
252
|
-
wolfhece-2.0.
|
253
|
-
wolfhece-2.0.
|
254
|
-
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
|
File without changes
|
File without changes
|
File without changes
|