wolfhece 2.2.28__py3-none-any.whl → 2.2.29__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/PyConfig.py +27 -3
- wolfhece/PyDraw.py +192 -20
- wolfhece/PyVertexvectors.py +155 -21
- wolfhece/PyWMS.py +6 -3
- wolfhece/__init__.py +27 -0
- wolfhece/acceptability/acceptability.py +25 -20
- wolfhece/acceptability/acceptability_gui.py +150 -92
- wolfhece/acceptability/func.py +169 -82
- wolfhece/apps/version.py +1 -1
- wolfhece/irm_qdf.py +71 -7
- wolfhece/lb7208_ntv2/__init__.py +0 -0
- wolfhece/lb7208_ntv2/be_ign_README.txt +36 -0
- wolfhece/lb7208_ntv2/be_ign_bd72lb72_etrs89lb08.tif +0 -0
- wolfhece/lb7208_ntv2/be_ign_hBG18.tif +0 -0
- wolfhece/mesh2d/gpu_2d.py +11 -2
- wolfhece/report/compare_arrays.py +268 -58
- wolfhece/report/simplesimgpu.py +25 -6
- wolfhece/scenario/config_manager.py +243 -7
- wolfhece/ui/wolf_multiselection_collapsiblepane.py +153 -1
- wolfhece/wolf_array.py +67 -62
- wolfhece/wolf_texture.py +4 -0
- {wolfhece-2.2.28.dist-info → wolfhece-2.2.29.dist-info}/METADATA +1 -1
- {wolfhece-2.2.28.dist-info → wolfhece-2.2.29.dist-info}/RECORD +26 -22
- {wolfhece-2.2.28.dist-info → wolfhece-2.2.29.dist-info}/WHEEL +0 -0
- {wolfhece-2.2.28.dist-info → wolfhece-2.2.29.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.2.28.dist-info → wolfhece-2.2.29.dist-info}/top_level.txt +0 -0
wolfhece/wolf_array.py
CHANGED
@@ -3953,6 +3953,10 @@ class SelectionData():
|
|
3953
3953
|
def get_script(self, which:int = None) -> str:
|
3954
3954
|
""" Get script of the current selection or of a stored one """
|
3955
3955
|
|
3956
|
+
if self.myselection == 'all':
|
3957
|
+
logging.error(_('Cannot create script for "all" selection'))
|
3958
|
+
return ''
|
3959
|
+
|
3956
3960
|
txt = '# script adapted to a WolfGPU script\n'
|
3957
3961
|
txt += '# - (i,j) are 1-based for add_boundary_condition -- Do not forget to adapt BC type, value and direction or use BC Manager\n'
|
3958
3962
|
txt += '# - (i,j) are 0-based for infiltration zones\n\n'
|
@@ -5779,63 +5783,6 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
5779
5783
|
if mapviewer is not None:
|
5780
5784
|
mapviewer.add_object('array', newobj = newarray, ToCheck = True, id = self.idx + '_extracted')
|
5781
5785
|
|
5782
|
-
def crop_array(self, bbox:list[list[float],list[float]], setnull_trx_try:bool = False) -> "WolfArray":
|
5783
|
-
""" Crop the data based on the bounding box.
|
5784
|
-
|
5785
|
-
Beware of the grid:
|
5786
|
-
- If the cropped region is smaller than a cell, then the cropped array
|
5787
|
-
will be empty.
|
5788
|
-
- If the cropped region doesn't align with the source array grid, it
|
5789
|
-
will be forced to do so.
|
5790
|
-
|
5791
|
-
:param bbox: bounding box [[xmin, xmax], [ymin, ymax]].
|
5792
|
-
:param setnull_trx_try: set the translation to 0 if True, origx and
|
5793
|
-
origy will be set to the lower left corner of the bbox. Default is
|
5794
|
-
`False`.
|
5795
|
-
"""
|
5796
|
-
|
5797
|
-
xmin, xmax = bbox[0]
|
5798
|
-
ymin, ymax = bbox[1]
|
5799
|
-
|
5800
|
-
# Make sure the bounding box can be used.
|
5801
|
-
if xmin > xmax:
|
5802
|
-
xmin, xmax = xmax, xmin
|
5803
|
-
if ymin > ymax:
|
5804
|
-
ymin, ymax = ymax, ymin
|
5805
|
-
|
5806
|
-
imin, jmin = self.get_ij_from_xy(xmin, ymin)
|
5807
|
-
imax, jmax = self.get_ij_from_xy(xmax, ymax)
|
5808
|
-
|
5809
|
-
imin = int(imin)
|
5810
|
-
jmin = int(jmin)
|
5811
|
-
imax = int(imax)
|
5812
|
-
jmax = int(jmax)
|
5813
|
-
|
5814
|
-
newheader = header_wolf()
|
5815
|
-
newheader.nbx = imax-imin
|
5816
|
-
newheader.nby = jmax-jmin
|
5817
|
-
newheader.dx = self.dx
|
5818
|
-
newheader.dy = self.dy
|
5819
|
-
newheader.origx, newheader.origy = self.get_xy_from_ij(imin, jmin, abs = setnull_trx_try)
|
5820
|
-
newheader.origx -= self.dx / 2.
|
5821
|
-
newheader.origy -= self.dy / 2.
|
5822
|
-
newheader.translx = self.translx
|
5823
|
-
newheader.transly = self.transly
|
5824
|
-
|
5825
|
-
if setnull_trx_try:
|
5826
|
-
newheader.translx = 0.
|
5827
|
-
newheader.transly = 0.
|
5828
|
-
|
5829
|
-
newarray = WolfArray(srcheader=newheader)
|
5830
|
-
|
5831
|
-
if imin < imax and jmin < jmax:
|
5832
|
-
newarray.array[:,:] = self.array[imin:imax, jmin:jmax]
|
5833
|
-
else:
|
5834
|
-
# One of the dimensions has 0 size => the array is empty
|
5835
|
-
pass
|
5836
|
-
|
5837
|
-
return newarray
|
5838
|
-
|
5839
5786
|
def get_centers(self, usenap:bool = True):
|
5840
5787
|
""" Get the centers of the cells """
|
5841
5788
|
|
@@ -10023,12 +9970,67 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10023
9970
|
newWolfArray.count()
|
10024
9971
|
return newWolfArray
|
10025
9972
|
|
10026
|
-
def
|
9973
|
+
def crop_array(self, bbox:list[list[float],list[float]], setnull_trx_try:bool = False) -> "WolfArray":
|
9974
|
+
""" Crop the data based on the bounding box.
|
9975
|
+
|
9976
|
+
Beware of the grid:
|
9977
|
+
- If the cropped region is smaller than a cell, then the cropped array
|
9978
|
+
will be empty.
|
9979
|
+
- If the cropped region doesn't align with the source array grid, it
|
9980
|
+
will be forced to do so.
|
9981
|
+
|
9982
|
+
:param bbox: bounding box [[xmin, xmax], [ymin, ymax]].
|
9983
|
+
:param setnull_trx_try: set the translation to 0 if True, origx and
|
9984
|
+
origy will be set to the lower left corner of the bbox. Default is
|
9985
|
+
`False`.
|
9986
|
+
"""
|
9987
|
+
|
9988
|
+
xmin, xmax = bbox[0]
|
9989
|
+
ymin, ymax = bbox[1]
|
9990
|
+
|
9991
|
+
# Make sure the bounding box can be used.
|
9992
|
+
if xmin > xmax:
|
9993
|
+
xmin, xmax = xmax, xmin
|
9994
|
+
if ymin > ymax:
|
9995
|
+
ymin, ymax = ymax, ymin
|
9996
|
+
|
9997
|
+
imin, jmin = self.get_ij_from_xy(xmin, ymin)
|
9998
|
+
imax, jmax = self.get_ij_from_xy(xmax, ymax)
|
9999
|
+
|
10000
|
+
imin = int(imin)
|
10001
|
+
jmin = int(jmin)
|
10002
|
+
imax = int(imax)
|
10003
|
+
jmax = int(jmax)
|
10004
|
+
|
10005
|
+
newheader = header_wolf()
|
10006
|
+
newheader.nbx = imax-imin
|
10007
|
+
newheader.nby = jmax-jmin
|
10008
|
+
newheader.dx = self.dx
|
10009
|
+
newheader.dy = self.dy
|
10010
|
+
newheader.origx, newheader.origy = self.get_xy_from_ij(imin, jmin, abs = setnull_trx_try)
|
10011
|
+
newheader.origx -= self.dx / 2.
|
10012
|
+
newheader.origy -= self.dy / 2.
|
10013
|
+
newheader.translx = self.translx
|
10014
|
+
newheader.transly = self.transly
|
10015
|
+
|
10016
|
+
if setnull_trx_try:
|
10017
|
+
newheader.translx = 0.
|
10018
|
+
newheader.transly = 0.
|
10019
|
+
|
10020
|
+
newarray = WolfArray(srcheader=newheader)
|
10027
10021
|
|
10022
|
+
if imin < imax and jmin < jmax:
|
10023
|
+
newarray.array[:,:] = self.array[imin:imax, jmin:jmax]
|
10024
|
+
else:
|
10025
|
+
# One of the dimensions has 0 size => the array is empty
|
10026
|
+
pass
|
10027
|
+
|
10028
|
+
return newarray
|
10029
|
+
|
10030
|
+
def crop_masked_at_edges(self):
|
10028
10031
|
"""
|
10029
10032
|
Crop the array to remove masked cells at the edges of the array
|
10030
10033
|
:return: cropped array, WolfArray instance
|
10031
|
-
|
10032
10034
|
"""
|
10033
10035
|
|
10034
10036
|
# Get max indexes
|
@@ -10083,9 +10085,9 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10083
10085
|
newWolfArray.origz = self.origz + float(k_start) * self.dz
|
10084
10086
|
newWolfArray.translz = self.translz
|
10085
10087
|
|
10086
|
-
newWolfArray.array = self.array[i_start:i_start + nbx, j_start:j_start + nby, k_start:k_start + nbz]
|
10088
|
+
newWolfArray.array = self.array[i_start:i_start + nbx, j_start:j_start + nby, k_start:k_start + nbz].copy()
|
10087
10089
|
elif self.nbdims == 2:
|
10088
|
-
newWolfArray.array = self.array[i_start:i_start + nbx, j_start:j_start + nby]
|
10090
|
+
newWolfArray.array = self.array[i_start:i_start + nbx, j_start:j_start + nby].copy()
|
10089
10091
|
|
10090
10092
|
return newWolfArray
|
10091
10093
|
|
@@ -10343,7 +10345,10 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10343
10345
|
self._ymax_plot = ymax
|
10344
10346
|
|
10345
10347
|
nbpix = min(sx * self.dx, sy * self.dy)
|
10346
|
-
if nbpix
|
10348
|
+
if nbpix == 0.:
|
10349
|
+
logging.warning(_('WolfArray.plot - No pixels to plot'))
|
10350
|
+
return
|
10351
|
+
elif nbpix >= 1.:
|
10347
10352
|
# si une maille est tracée sur au moins 2 pixels
|
10348
10353
|
curscale = 1
|
10349
10354
|
elif math.ceil(1. / nbpix) <= 3:
|
wolfhece/wolf_texture.py
CHANGED
@@ -6,9 +6,9 @@ wolfhece/Lidar2002.py,sha256=bX-nIzdpjD7rOfEgJpTeaW6rIdAXwDp_z4YTM9CgANY,6068
|
|
6
6
|
wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
|
7
7
|
wolfhece/Model1D.py,sha256=snEmu8Uj2YGcp1ybPnly-4A389XRnuOujGduqInNcgw,477001
|
8
8
|
wolfhece/PandasGrid.py,sha256=YIleVkUkoP2MjtQBZ9Xgwk61zbgMj4Pmjj-clVTfPRs,2353
|
9
|
-
wolfhece/PyConfig.py,sha256=
|
9
|
+
wolfhece/PyConfig.py,sha256=Zs9852UnTMDjiH9RhC_-cQdOowDaS1U5PbmmU9nEpv0,18265
|
10
10
|
wolfhece/PyCrosssections.py,sha256=igU_ELrg5VrHU6RNbF5tHxPyVImpR3xdpfopJYc7haw,114711
|
11
|
-
wolfhece/PyDraw.py,sha256
|
11
|
+
wolfhece/PyDraw.py,sha256=-hPVoASNtB7k9_P7F3uq-4Vqytie4wjEL36OUiqtszQ,671455
|
12
12
|
wolfhece/PyGui.py,sha256=DqMTDsC9GthnMdYOXvkMKfl5pNciExVzxG4ogptWf6g,146010
|
13
13
|
wolfhece/PyGuiHydrology.py,sha256=sKafpOopBg50L5llZCI_fZtbebVTDtxvoRI6-osUwhg,14745
|
14
14
|
wolfhece/PyHydrographs.py,sha256=1P5XAURNqCvtSsMQXhOn1ihjTpr725sRsZdlCEhhk6M,3730
|
@@ -17,14 +17,14 @@ wolfhece/PyParams.py,sha256=BgTAwxxq831rYEq_KLcFBX_upjiSUpVtfoQnCxCNWUI,100443
|
|
17
17
|
wolfhece/PyPictures.py,sha256=m1kY0saW6Y9Q0bDCo47lW6XxDkBrbQG-Fd8uVn8G5ic,2514
|
18
18
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
19
19
|
wolfhece/PyVertex.py,sha256=a56oY1NB45QnwARg96Tbnq-z-mhZKFkYOkFOO1lNtlk,51056
|
20
|
-
wolfhece/PyVertexvectors.py,sha256=
|
21
|
-
wolfhece/PyWMS.py,sha256
|
20
|
+
wolfhece/PyVertexvectors.py,sha256=DZpuqfzAEWAtGJ5oSzRY0kRMlkwErogcGMJQOh6niDE,341983
|
21
|
+
wolfhece/PyWMS.py,sha256=XcSlav5icct2UwV7K2r7vpxa5rKZWiHkp732lI94HFI,31534
|
22
22
|
wolfhece/RatingCurve.py,sha256=bUjIrQjvIjkD4V-z8bZmA6pe1ILtYNM0-3fT6YUY1RU,22498
|
23
23
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
24
24
|
wolfhece/RatingCurve_xml.py,sha256=cUjReVMHFKtakA2wVey5zz6lCgHlSr72y7ZfswZDvTM,33891
|
25
25
|
wolfhece/ReadDataDCENN.py,sha256=vm-I4YMryvRldjXTvRYEUCxZsjb_tM7U9yj6OaPyD0k,1538
|
26
26
|
wolfhece/Results2DGPU.py,sha256=GTu7PMuwfH-xH8J7sVr6zq2CTkGKF24fG1ujEW62PtM,31598
|
27
|
-
wolfhece/__init__.py,sha256=
|
27
|
+
wolfhece/__init__.py,sha256=EnpZ2yDEXueP7GAKV0uA2vAwMiZFyBjDAFcL5Y7LzbM,1850
|
28
28
|
wolfhece/_add_path.py,sha256=mAyu85CQHk0KgUI6ZizweeQiw1Gdyea9OEjGLC6lLA4,916
|
29
29
|
wolfhece/analyze_poly.py,sha256=jsCUsd0ZJtTwSk5hekcXj8i0tGhH-WCfNkrBtPRJpCc,12715
|
30
30
|
wolfhece/analyze_vect.py,sha256=3lkMwaQ4KRddBVRvlP9PcM66wZwwC0eCmypP91AW-os,6015
|
@@ -39,7 +39,7 @@ wolfhece/gpuview.py,sha256=Jql8pLZ0PpvZ_ScT-U4jsXANZ9j4-m_RWhsLA2HISuQ,24544
|
|
39
39
|
wolfhece/images_tiles.py,sha256=w5BX6kRqA0wW9TWyKrJUIRl-XyqHclq_kp5ET2VA0Sg,3227
|
40
40
|
wolfhece/import_ascfiles.py,sha256=6Zl8qBR9c6VtyziookQ8YE9KC0GtW_J9WFt5ubyGp-s,4465
|
41
41
|
wolfhece/ins.py,sha256=uUeLMS1n3GPnfJhxl0Z2l-UXpmPUgthuwct282OOEzk,36184
|
42
|
-
wolfhece/irm_qdf.py,sha256=
|
42
|
+
wolfhece/irm_qdf.py,sha256=doG2Q6PZEXkPVaN9-233qfd4FRCmdRKnrgvxounhasQ,32728
|
43
43
|
wolfhece/ismember.py,sha256=fkLvaH9fhx-p0QrlEzqa6ySO-ios3ysjAgXVXzLgSpY,2482
|
44
44
|
wolfhece/lagrange_multiplier.py,sha256=0G-M7b2tGzLx9v0oNYYq4_tLAiHcs_39B4o4W3TUVWM,6567
|
45
45
|
wolfhece/lifewatch.py,sha256=Q_Wy6VGkrD-xxY0fv3PKpT8U8oXxNMgiLlrAE3bMheo,16340
|
@@ -60,9 +60,9 @@ wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
|
|
60
60
|
wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
|
61
61
|
wolfhece/tools2d_dll.py,sha256=TfvvmyZUqEZIH0uHwUCJf0bdmCks_AiidDt23Unsp5w,13550
|
62
62
|
wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
|
63
|
-
wolfhece/wolf_array.py,sha256=
|
63
|
+
wolfhece/wolf_array.py,sha256=15bCTr6nplKwGrkKR4vJR_NZCnhSZsoceUtV99Uy4C8,521981
|
64
64
|
wolfhece/wolf_hist.py,sha256=fTEb60Q4TEwobdZsRU4CFXAId1eOKdWAqF8lnF1xEWc,3590
|
65
|
-
wolfhece/wolf_texture.py,sha256=
|
65
|
+
wolfhece/wolf_texture.py,sha256=f4psYah1vqyeQjXz2O46d6qeKuv_Lzowk39O9Fmh_2g,20969
|
66
66
|
wolfhece/wolf_tiles.py,sha256=v-HohqaWuMYdn75XLnA22dlloAG90iwnIqrgnB0ASQ4,10488
|
67
67
|
wolfhece/wolf_vrt.py,sha256=wbxXVN7TL9zgdyF79S-4e3pje6wJEAgBEfF_Y8kkzxs,14271
|
68
68
|
wolfhece/wolf_zi_db.py,sha256=baE0niMCzybWGSvPJc5FNxo9ZxsGfU4p-FmfiavFHAs,12967
|
@@ -71,10 +71,10 @@ wolfhece/xyz_file.py,sha256=1pzLFmmdHca4yBVR9Jitic6N82rY28mRytGC1zMbY28,6615
|
|
71
71
|
wolfhece/acceptability/Parallels.py,sha256=2wVkfJYor4yl7VYiAZiGGTFwtAab2z66ZfRtBliVweE,4088
|
72
72
|
wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
|
73
73
|
wolfhece/acceptability/_add_path.py,sha256=nudniS-lsgHwXXq5o626XRDzIeYj76GoGKYt6lcu2Nc,616
|
74
|
-
wolfhece/acceptability/acceptability.py,sha256=
|
75
|
-
wolfhece/acceptability/acceptability_gui.py,sha256=
|
74
|
+
wolfhece/acceptability/acceptability.py,sha256=pw99h5oanVXIRTWtTcEkW3PcvasuPfpR1rkcGBrLaFI,28120
|
75
|
+
wolfhece/acceptability/acceptability_gui.py,sha256=HSNpYnCCP9g4rBzn1rGMjKw1vYxIcdxu-EfzAjDdtGU,75518
|
76
76
|
wolfhece/acceptability/cli.py,sha256=ul_GmDnSgKSgA7z5ZIzeA_MlS2uqo-Xi48bqmWUS-Qk,19141
|
77
|
-
wolfhece/acceptability/func.py,sha256=
|
77
|
+
wolfhece/acceptability/func.py,sha256=zW87no63HM2ruo3xJtYZxI5_4VjJExmyihH9e5_Z9cw,75772
|
78
78
|
wolfhece/apps/ManageParams.py,sha256=9okXHGHKEayA9iKTnv8jsVYCP2up5kr6hDaKO_fMCaQ,748
|
79
79
|
wolfhece/apps/Optimisation_hydro.py,sha256=ySIaVsFNEx4PaHFLlT2QW9BiwChVcTNd2TBnW1aICsI,810
|
80
80
|
wolfhece/apps/WolfPython.png,sha256=K3dcbeZUiJCFNwOAAlGMaRGLJ56yM8WD2I_0bk0xT1g,104622
|
@@ -88,7 +88,7 @@ wolfhece/apps/curvedigitizer.py,sha256=lEJJwgAfulrrWQc-U6ij6sj59hWN3SZl4Yu1kQxVz
|
|
88
88
|
wolfhece/apps/hydrometry.py,sha256=lhhJsFeb4zGL4bNQTs0co85OQ_6ssL1Oy0OUJCzhfYE,656
|
89
89
|
wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
|
90
90
|
wolfhece/apps/splashscreen.py,sha256=EdGDN9NhudIiP7c3gVqj7dp4MWFB8ySizM_tpMnsgpE,3091
|
91
|
-
wolfhece/apps/version.py,sha256=
|
91
|
+
wolfhece/apps/version.py,sha256=MsRPVPFz_Nd-g9QBhzEMZR5szCY4WxPCUofNwlSWVMA,388
|
92
92
|
wolfhece/apps/wolf.py,sha256=mRnjYsUu4KIsRuamdQWAINFMuwN4eJgMo9erG-hkZ70,729
|
93
93
|
wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
|
94
94
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -209,6 +209,10 @@ wolfhece/lazviewer/viewer/viewer_310.exe,sha256=jRy4FhrTa7yN0Cp5dBvCGAL_oBOCqMYb
|
|
209
209
|
wolfhece/lazviewer/viewer/viewer_311.exe,sha256=fzgBu38zzB_dGaGdD_GciICSEh6ZMZHjsE5VSm6se-A,179200
|
210
210
|
wolfhece/lazviewer/viewer/viewer_312.exe,sha256=MlXllgQK4IyUc7Y7b0pecdy3tT0Rt9fGxfrDUTU4RN0,179200
|
211
211
|
wolfhece/lazviewer/viewer/viewer_313.exe,sha256=6YqzRkqd_blMZeZe0ubzJJxHc3ueLjAoe2qHeCK4_F8,179200
|
212
|
+
wolfhece/lb7208_ntv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
|
+
wolfhece/lb7208_ntv2/be_ign_README.txt,sha256=sRR5UzqXcDYZ5zdipCjpnx0Y9xhKOShZM0CW9vW97zM,1611
|
214
|
+
wolfhece/lb7208_ntv2/be_ign_bd72lb72_etrs89lb08.tif,sha256=61yxgj5mlxGJ39IMZfOixQfWAEA3cunMAcBPiNfmjPo,766519
|
215
|
+
wolfhece/lb7208_ntv2/be_ign_hBG18.tif,sha256=iCNAr5Xq9dvUb3mICS-7hM3o3LtxLOl2TGZ-ZOrWqkw,203858
|
212
216
|
wolfhece/libs/__init__.py,sha256=x7QvPd7hjL-Xl7RjlA8y6rcvKCkYu3JpFE3YnzUJeCY,3326
|
213
217
|
wolfhece/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
214
218
|
wolfhece/links/link.py,sha256=CoHcZK2wWKzO8QFqtdzw5-Z6_PhxvJ6JqlA3HsHHuf0,445
|
@@ -225,7 +229,7 @@ wolfhece/mesh2d/bc_manager.py,sha256=BmNT-M0uWe5--AhxiS4EWziHad4RL-D7wUySqXTICsY
|
|
225
229
|
wolfhece/mesh2d/cell_tracker.py,sha256=mPmnD5lEf3gLPuLqtAIo-Gp-ipAwQdPxzjWOGt0b7jM,8958
|
226
230
|
wolfhece/mesh2d/config_manager.py,sha256=DcdxCIIs_dyC6ayJOBULeY364LONogL9PBaqBtC9eQ4,14736
|
227
231
|
wolfhece/mesh2d/cst_2D_boundary_conditions.py,sha256=r43pHHdCtmNp5R2zh1Ckb7EzwQDf6C4YMLwRFTl4KMc,5006
|
228
|
-
wolfhece/mesh2d/gpu_2d.py,sha256=
|
232
|
+
wolfhece/mesh2d/gpu_2d.py,sha256=xyZst3ZSYmRp9G0kxlUvTahAiMC9sNEH0MRUlEjqFZI,25999
|
229
233
|
wolfhece/mesh2d/simple_2d.py,sha256=wqENJwpUPxKQcpGIcymQXUj2KgkGWCVH6cs4Os9h9Gs,112581
|
230
234
|
wolfhece/mesh2d/wolf2dprev.py,sha256=oK9r94CYJaeOBSv4s4mkuhLA8rCsnrkjG2sGW_zR1x0,493127
|
231
235
|
wolfhece/models/5_coul.pal,sha256=OI1UqcNIDBpJn2k_VDel__r-hKjjvdob0eqinGCI3QY,160
|
@@ -266,15 +270,15 @@ wolfhece/rem/RasterViz.py,sha256=fnyMfAJZDoS-rjagsNRGLndS-UYNUzMY4DgenjD3Y_4,290
|
|
266
270
|
wolfhece/rem/__init__.py,sha256=S2-J5uEGK_VaMFjRUYFIdSScJjZyuXH4RmMmnG3OG7I,19
|
267
271
|
wolfhece/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
272
|
wolfhece/report/common.py,sha256=7a6zQ-wLZ0ElUVodWCO08TyRBXrI7lnTrosJGcV5_tM,17619
|
269
|
-
wolfhece/report/compare_arrays.py,sha256=
|
273
|
+
wolfhece/report/compare_arrays.py,sha256=eTCxIdhwCWWe5GhZzq6xyLmicOhnv11Z-yyjV9ZbIgQ,43579
|
270
274
|
wolfhece/report/pdf.py,sha256=zrSSY1JPk59FxK9pFWQfhVKIQAoc_wjeTrXO3tSiEHo,1959
|
271
275
|
wolfhece/report/reporting.py,sha256=JUEXovx_S4jpYkJEBU0AC-1Qw2OkkWyV3VAp6iOfSHc,19494
|
272
|
-
wolfhece/report/simplesimgpu.py,sha256=
|
276
|
+
wolfhece/report/simplesimgpu.py,sha256=nQK1lY9-uSNTA34N9D5U_ftgCVaSMjtq1zPzz2nO7ts,58622
|
273
277
|
wolfhece/report/tools.py,sha256=ZA4PfHQXgvDtTnrSZh-oSwhQT_cQtb49LuZB8VI7nyI,96852
|
274
278
|
wolfhece/report/wolf_report.png,sha256=NoSV58LSwb-oxCcZScRiJno-kxDwRdm_bK-fiMsKJdA,592485
|
275
279
|
wolfhece/scenario/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
276
280
|
wolfhece/scenario/check_scenario.py,sha256=d-LWa_FxmPxTSc_H1lDHwqLB6TCqj1IUrRJhatfPMMA,5623
|
277
|
-
wolfhece/scenario/config_manager.py,sha256=
|
281
|
+
wolfhece/scenario/config_manager.py,sha256=qosuoNOVbBuDuBUjupX5MFygYG2YJyr2AFgxxFqqdLo,126593
|
278
282
|
wolfhece/scenario/imposebc_void.py,sha256=PqA_99hKcaqK5zsK6IRIc5Exgg3WVpgWU8xpwNL49zQ,5571
|
279
283
|
wolfhece/scenario/update_void.py,sha256=Yb7TMIUx9Gzm9_6qRMJnF39Uqi17dIkMmscSXo2WaTs,10033
|
280
284
|
wolfhece/shaders/fragment_shader_texture.glsl,sha256=w6h8d5mJqFaGbao0LGmjRcFFdcEQ3ICIl9JpuT71K5k,177
|
@@ -299,12 +303,12 @@ wolfhece/sounds/son6.wav,sha256=v7CFE-PlGvVcRC3oAaWBBGngutCDS_MUiCIhNHkpv2Y,7884
|
|
299
303
|
wolfhece/sounds/sonsw1.wav,sha256=HhuGeZ3iIyJdDALmM-jvGZDkKw3IZ3JXCuQZkN3Zjtc,212550
|
300
304
|
wolfhece/sounds/sonsw2.wav,sha256=pFLVt6By0_EPQNt_3KfEZ9a1uSuYTgQSX1I_Zurv9Rc,110636
|
301
305
|
wolfhece/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
302
|
-
wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=
|
306
|
+
wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=u4C7CXe_bUyGKx7c_Bi0x9XL_8PtTgc1xbDvzK19T6Q,23211
|
303
307
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
304
308
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
309
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
306
|
-
wolfhece-2.2.
|
307
|
-
wolfhece-2.2.
|
308
|
-
wolfhece-2.2.
|
309
|
-
wolfhece-2.2.
|
310
|
-
wolfhece-2.2.
|
310
|
+
wolfhece-2.2.29.dist-info/METADATA,sha256=35R9m7_Q5LYcKUXvUBBwZ8p1A-JMWrMYn5VtO4ncgNw,2729
|
311
|
+
wolfhece-2.2.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
312
|
+
wolfhece-2.2.29.dist-info/entry_points.txt,sha256=Jr187pyvA3EeJiQLjZK9yo6mJX7IAn6ygZU9T8qF_gQ,658
|
313
|
+
wolfhece-2.2.29.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
314
|
+
wolfhece-2.2.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|