wolfhece 2.1.36__py3-none-any.whl → 2.1.38__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/apps/splashscreen.py +7 -7
- wolfhece/apps/version.py +1 -1
- wolfhece/wolf_array.py +24 -24
- wolfhece/wolfresults_2D.py +5 -11
- {wolfhece-2.1.36.dist-info → wolfhece-2.1.38.dist-info}/METADATA +2 -1
- {wolfhece-2.1.36.dist-info → wolfhece-2.1.38.dist-info}/RECORD +9 -38
- wolfhece/libs/MSVCP140.dll +0 -0
- wolfhece/libs/WolfDll.dll +0 -0
- wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll +0 -0
- wolfhece/libs/api-ms-win-crt-math-l1-1-0.dll +0 -0
- wolfhece/libs/api-ms-win-crt-runtime-l1-1-0.dll +0 -0
- wolfhece/libs/fribidi-0.dll +0 -0
- wolfhece/libs/glu32.dll +0 -0
- wolfhece/libs/hdf5.dll +0 -0
- wolfhece/libs/hdf5_hl.dll +0 -0
- wolfhece/libs/libcurl.dll +0 -0
- wolfhece/libs/libifcoremd.dll +0 -0
- wolfhece/libs/libifcoremdd.dll +0 -0
- wolfhece/libs/libifportmd.dll +0 -0
- wolfhece/libs/libiomp5md.dll +0 -0
- wolfhece/libs/libmmd.dll +0 -0
- wolfhece/libs/libmmdd.dll +0 -0
- wolfhece/libs/libpardiso600-WIN-X86-64.dll +0 -0
- wolfhece/libs/libraqm.dll +0 -0
- wolfhece/libs/mkl_core.2.dll +0 -0
- wolfhece/libs/mkl_intel_thread.2.dll +0 -0
- wolfhece/libs/mkl_rt.2.dll +0 -0
- wolfhece/libs/msvcr100.dll +0 -0
- wolfhece/libs/netcdf.dll +0 -0
- wolfhece/libs/paho-mqtt3cs.dll +0 -0
- wolfhece/libs/svml_dispmd.dll +0 -0
- wolfhece/libs/vcomp100.dll +0 -0
- wolfhece/libs/vcruntime140.dll +0 -0
- wolfhece/libs/vcruntime140_1.dll +0 -0
- wolfhece/libs/zlib1.dll +0 -0
- {wolfhece-2.1.36.dist-info → wolfhece-2.1.38.dist-info}/WHEEL +0 -0
- {wolfhece-2.1.36.dist-info → wolfhece-2.1.38.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.36.dist-info → wolfhece-2.1.38.dist-info}/top_level.txt +0 -0
wolfhece/apps/splashscreen.py
CHANGED
@@ -17,12 +17,12 @@ import wx
|
|
17
17
|
import time
|
18
18
|
from wx.adv import SplashScreen as SplashScreen,SPLASH_CENTRE_ON_SCREEN,SPLASH_TIMEOUT,Sound
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
20
|
+
try:
|
21
|
+
from ..libs import wolfogl
|
22
|
+
except:
|
23
|
+
print("** WolfOGL not found **")
|
24
|
+
print("Without WolfOGL, the application will not work !")
|
25
|
+
print("Please reinstall 'wolfhece' package -- pip install wolfhece --force-reinstall")
|
26
26
|
|
27
27
|
class WolfLauncher(SplashScreen):
|
28
28
|
"""
|
@@ -32,7 +32,7 @@ class WolfLauncher(SplashScreen):
|
|
32
32
|
done = False
|
33
33
|
|
34
34
|
def __init__(self, parent=None, play_sound=True):
|
35
|
-
|
35
|
+
|
36
36
|
if self.done:
|
37
37
|
return
|
38
38
|
|
wolfhece/apps/version.py
CHANGED
wolfhece/wolf_array.py
CHANGED
@@ -694,7 +694,7 @@ class header_wolf():
|
|
694
694
|
"""
|
695
695
|
|
696
696
|
dtype = raster.GetRasterBand(1).DataType
|
697
|
-
|
697
|
+
|
698
698
|
if dtype == 1:
|
699
699
|
self.wolftype = WOLF_ARRAY_FULL_INTEGER8
|
700
700
|
elif dtype in [2,3]:
|
@@ -745,8 +745,8 @@ class header_wolf():
|
|
745
745
|
shape, fortran, dtype = np.lib.format.read_array_header_2_0(f)
|
746
746
|
else:
|
747
747
|
raise ValueError("Unknown numpy version: %s" % version)
|
748
|
-
|
749
|
-
self.nbx, self.nby = shape
|
748
|
+
|
749
|
+
self.nbx, self.nby = shape
|
750
750
|
|
751
751
|
if dtype == np.float32:
|
752
752
|
self.wolftype = WOLF_ARRAY_FULL_SINGLE
|
@@ -4349,7 +4349,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4349
4349
|
"""
|
4350
4350
|
|
4351
4351
|
if self.nbz == 0:
|
4352
|
-
size = self.nbx * self.nby
|
4352
|
+
size = self.nbx * self.nby
|
4353
4353
|
else:
|
4354
4354
|
size = self.nbx * self.nby * self.nbz
|
4355
4355
|
|
@@ -4365,7 +4365,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4365
4365
|
return size
|
4366
4366
|
else:
|
4367
4367
|
return size * 4
|
4368
|
-
|
4368
|
+
|
4369
4369
|
@property
|
4370
4370
|
def memory_usage_mask(self):
|
4371
4371
|
"""
|
@@ -4383,13 +4383,13 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4383
4383
|
""" Destructeur de la classe """
|
4384
4384
|
import gc
|
4385
4385
|
self.delete_lists()
|
4386
|
-
del self.array
|
4386
|
+
del self.array
|
4387
4387
|
if VERSION_RGB==1 : del self.rgb
|
4388
4388
|
del self._array3d
|
4389
4389
|
del self.mypal
|
4390
4390
|
del self.shaded
|
4391
4391
|
gc.collect()
|
4392
|
-
|
4392
|
+
|
4393
4393
|
def extract_selection(self):
|
4394
4394
|
""" Extract the current selection """
|
4395
4395
|
|
@@ -4449,9 +4449,9 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4449
4449
|
|
4450
4450
|
self._quads = self.get_centers()
|
4451
4451
|
ztext = np.require(self.array.data.copy(), dtype=np.float32, requirements=['C'])
|
4452
|
-
|
4452
|
+
|
4453
4453
|
assert ztext.flags.c_contiguous, _('ztext is not C-contiguous')
|
4454
|
-
|
4454
|
+
|
4455
4455
|
ztext[self.array.mask] = self.array.min()
|
4456
4456
|
self._array3d = WolfArray_plot3D(self._quads,
|
4457
4457
|
self.dx, self.dy,
|
@@ -4820,7 +4820,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4820
4820
|
band.ComputeStatistics(True)
|
4821
4821
|
|
4822
4822
|
def _import_npy(self, fn:str='', crop:list[float]=None):
|
4823
|
-
"""
|
4823
|
+
"""
|
4824
4824
|
Import a numpy file.
|
4825
4825
|
|
4826
4826
|
Must be called after the header is initialized, e.g. read_txt_header.
|
@@ -6055,7 +6055,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6055
6055
|
|
6056
6056
|
self.loaded = True
|
6057
6057
|
|
6058
|
-
if VERSION_RGB==1 :
|
6058
|
+
if VERSION_RGB==1 :
|
6059
6059
|
if self.rgb is None:
|
6060
6060
|
self.updatepalette(0)
|
6061
6061
|
|
@@ -6569,7 +6569,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6569
6569
|
if self.wx_exists:
|
6570
6570
|
logging.warning(_('No data file : ')+self.filename)
|
6571
6571
|
return
|
6572
|
-
|
6572
|
+
|
6573
6573
|
def check_threshold(nbx, nby, THRESHOLD) -> bool:
|
6574
6574
|
if nbx * nby > THRESHOLD:
|
6575
6575
|
logging.info(_('The array is very large > 100M pixels'))
|
@@ -6585,7 +6585,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6585
6585
|
self.read_txt_header()
|
6586
6586
|
|
6587
6587
|
if self.preload:
|
6588
|
-
|
6588
|
+
|
6589
6589
|
update_min_max = check_threshold(self.nbx, self.nby, THRESHOLD)
|
6590
6590
|
|
6591
6591
|
self.import_geotif(which= which_band, crop = self.cropini)
|
@@ -7346,7 +7346,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
7346
7346
|
else:
|
7347
7347
|
self.mypal.isopop(self.get_working_array(), self.nbnotnull)
|
7348
7348
|
|
7349
|
-
if VERSION_RGB==1 :
|
7349
|
+
if VERSION_RGB==1 :
|
7350
7350
|
if self.nbx * self.nby > 1_000_000 : logging.info(_('Computing colors'))
|
7351
7351
|
if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE, WOLF_ARRAY_FULL_INTEGER8]:
|
7352
7352
|
# FIXME: Currently, only some types are supported in Cython/OpenGL library
|
@@ -7357,7 +7357,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
7357
7357
|
self.rgb = self.mypal.get_rgba(self.array)
|
7358
7358
|
if self.nbx * self.nby > 1_000_000 : logging.info(_('Colors computed'))
|
7359
7359
|
elif VERSION_RGB==2 :
|
7360
|
-
if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
|
7360
|
+
if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
|
7361
7361
|
WOLF_ARRAY_FULL_INTEGER8,
|
7362
7362
|
WOLF_ARRAY_FULL_INTEGER16,
|
7363
7363
|
WOLF_ARRAY_FULL_INTEGER16_2,
|
@@ -7539,7 +7539,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
7539
7539
|
def fillonecellgrid(self, curscale, loci, locj, force=False):
|
7540
7540
|
""" Fill one cell of the plotted grid """
|
7541
7541
|
|
7542
|
-
|
7542
|
+
|
7543
7543
|
|
7544
7544
|
cursize = curscale # 2**curscale
|
7545
7545
|
|
@@ -7651,12 +7651,12 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
7651
7651
|
|
7652
7652
|
curlist['done'][loci, locj] = 1
|
7653
7653
|
|
7654
|
-
def suxsuy_contour(self,
|
7655
|
-
filename:str='',
|
7654
|
+
def suxsuy_contour(self,
|
7655
|
+
filename:str='',
|
7656
7656
|
abs:bool=False,
|
7657
|
-
one_vec_if_ml:bool = True) -> tuple[list[int,int],
|
7658
|
-
list[int,int],
|
7659
|
-
vector | zone,
|
7657
|
+
one_vec_if_ml:bool = True) -> tuple[list[int,int],
|
7658
|
+
list[int,int],
|
7659
|
+
vector | zone,
|
7660
7660
|
bool]:
|
7661
7661
|
"""
|
7662
7662
|
The borders are computed on basis of the current *mask*
|
@@ -8160,7 +8160,7 @@ class WolfArrayMB(WolfArray):
|
|
8160
8160
|
if self.masknull:
|
8161
8161
|
self.mask_data(self.nullvalue)
|
8162
8162
|
|
8163
|
-
if VERSION_RGB==1 :
|
8163
|
+
if VERSION_RGB==1 :
|
8164
8164
|
if self.rgb is None:
|
8165
8165
|
self.rgb = np.ones((self.nbx, self.nby, 4), order='F', dtype=np.integer)
|
8166
8166
|
|
@@ -8434,8 +8434,8 @@ class WolfArrayMB(WolfArray):
|
|
8434
8434
|
self.mypal.isopop(allarrays, self.nbnotnull)
|
8435
8435
|
|
8436
8436
|
self.link_palette()
|
8437
|
-
|
8438
|
-
if VERSION_RGB ==1:
|
8437
|
+
|
8438
|
+
if VERSION_RGB ==1:
|
8439
8439
|
for curblock in self.myblocks.values():
|
8440
8440
|
curblock.rgb = self.mypal.get_rgba(curblock.array)
|
8441
8441
|
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -64,12 +64,6 @@ except Exception as ex:
|
|
64
64
|
if is_submodule:
|
65
65
|
msg = _("wolfpy was found but we were not able to load it. It may be an issue with its DLL dependencies")
|
66
66
|
msg += _("The actual error was: {}").format(str(ex))
|
67
|
-
else:
|
68
|
-
msg=_('Error importing wolfpy.pyd')
|
69
|
-
msg+=_(' Python version : ' + sys.version)
|
70
|
-
msg+=_(' If your Python version is not 3.7.x or 3.9.x, you need to compile an adapted library with compile_wcython.py in wolfhece library path')
|
71
|
-
msg+=_(' See comments in compile_wcython.py or launch *python compile_wcython.py build_ext --inplace* in :')
|
72
|
-
msg+=' ' + dirname(__file__)
|
73
67
|
|
74
68
|
raise Exception(msg)
|
75
69
|
|
@@ -1789,7 +1783,7 @@ class OneWolfResult:
|
|
1789
1783
|
|
1790
1784
|
self._current.mypal = curpal
|
1791
1785
|
self._current.mypal.interval_cst = curpal.interval_cst
|
1792
|
-
if VERSION_RGB==1 :
|
1786
|
+
if VERSION_RGB==1 :
|
1793
1787
|
self._current.rgb = curpal.get_rgba(self._current.array)
|
1794
1788
|
self._current.rgb[self._current.array.mask] = [1., 1., 1., 1.]
|
1795
1789
|
|
@@ -2022,7 +2016,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2022
2016
|
self._epsilon_default = self.epsilon
|
2023
2017
|
|
2024
2018
|
self.loaded=True
|
2025
|
-
|
2019
|
+
|
2026
2020
|
self.current_result = -1
|
2027
2021
|
self._step_interval = 1
|
2028
2022
|
|
@@ -2328,7 +2322,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2328
2322
|
@property
|
2329
2323
|
def step_interval_results(self):
|
2330
2324
|
return self._step_interval
|
2331
|
-
|
2325
|
+
|
2332
2326
|
@step_interval_results.setter
|
2333
2327
|
def step_interval_results(self, value:int):
|
2334
2328
|
self._step_interval = value
|
@@ -4184,7 +4178,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4184
4178
|
|
4185
4179
|
ij = np.where(~wd.array.mask)
|
4186
4180
|
|
4187
|
-
#
|
4181
|
+
#
|
4188
4182
|
mom = np.zeros_like(wd.array)
|
4189
4183
|
v = np.zeros_like(wd.array)
|
4190
4184
|
z = np.zeros_like(wd.array)
|
@@ -4208,7 +4202,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4208
4202
|
|
4209
4203
|
ij = np.where(~wd.array.mask)
|
4210
4204
|
|
4211
|
-
#
|
4205
|
+
#
|
4212
4206
|
mom = np.zeros_like(wd.array)
|
4213
4207
|
v = np.zeros_like(wd.array)
|
4214
4208
|
z = np.zeros_like(wd.array)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wolfhece
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.38
|
4
4
|
Author-email: Pierre Archambeau <pierre.archambeau@uliege.be>
|
5
5
|
License: Copyright (c) 2024 University of Liege. All rights reserved.
|
6
6
|
Project-URL: Homepage, https://uee.uliege.be/hece
|
@@ -13,6 +13,7 @@ Classifier: Topic :: Scientific/Engineering :: Physics
|
|
13
13
|
Requires-Python: <3.11,>=3.10
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
Requires-Dist: wxpython
|
16
|
+
Requires-Dist: intel-fortran-rt
|
16
17
|
Requires-Dist: scikit-learn
|
17
18
|
Requires-Dist: cryptography
|
18
19
|
Requires-Dist: jax
|
@@ -47,13 +47,13 @@ wolfhece/pywalous.py,sha256=yRaWJjKckXef1d9D5devP0yFHC9uc6kRV4G5x9PNq9k,18972
|
|
47
47
|
wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
|
48
48
|
wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
|
49
49
|
wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
|
50
|
-
wolfhece/wolf_array.py,sha256=
|
50
|
+
wolfhece/wolf_array.py,sha256=m0Akg1jpe8L7139afVANhqUI09q7YlQvlGm2mcs7gJQ,356155
|
51
51
|
wolfhece/wolf_hist.py,sha256=7jeVrgSkM3ErJO6SRMH_PGzfLjIdw8vTy87kesldggk,3582
|
52
52
|
wolfhece/wolf_texture.py,sha256=EqZI6qCR6ouT3wEtnG_NkVLdvUhfY65JVTj5b6o4lXI,16576
|
53
53
|
wolfhece/wolf_tiles.py,sha256=2Ho2I20rHRY81KXxjgLOYISdF4OkJ2d6omeY4shDoGI,10386
|
54
54
|
wolfhece/wolf_vrt.py,sha256=89XoDhCJMHiwPQUuOduxtTRKuIa8RDxgNqX65S4xp9M,10569
|
55
55
|
wolfhece/wolf_zi_db.py,sha256=baE0niMCzybWGSvPJc5FNxo9ZxsGfU4p-FmfiavFHAs,12967
|
56
|
-
wolfhece/wolfresults_2D.py,sha256=
|
56
|
+
wolfhece/wolfresults_2D.py,sha256=U6k8BeQj2g3EUpAQq7m0nSdLtNKrrn_knWKKs1KoAQ8,165462
|
57
57
|
wolfhece/xyz_file.py,sha256=Se4nCPwYAYLSA5i0zsbnZUKoAMAD0mK1FJea5WSZUkk,5755
|
58
58
|
wolfhece/acceptability/Parallels.py,sha256=h4tu3SpC_hR5Hqa68aruxhtAyhs8u666YuZ40_fR5zg,3979
|
59
59
|
wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
|
@@ -70,8 +70,8 @@ wolfhece/apps/__init__.py,sha256=OzzKItATWV0mDkz_LC2L3w5sgT2rt8ExXXCbR_FwvlY,24
|
|
70
70
|
wolfhece/apps/check_install.py,sha256=icFpkjfwNGDX-0NZVa-ijrCrqmGHEKDiFphjN8uTyh8,928
|
71
71
|
wolfhece/apps/curvedigitizer.py,sha256=_hRR2PWow7PU7rTHIbc6ykZ08tCXcK9uy7RFrb4EKkE,5196
|
72
72
|
wolfhece/apps/isocurrent.py,sha256=MuwTodHxdc6PrqNpphR2ntYf1NLL2n9klTPndGrOHDQ,4109
|
73
|
-
wolfhece/apps/splashscreen.py,sha256=
|
74
|
-
wolfhece/apps/version.py,sha256=
|
73
|
+
wolfhece/apps/splashscreen.py,sha256=Z95ca-r_SZFpTJZIILuAcKyzl6ElZR08Y5mpQ5y4ZDc,2920
|
74
|
+
wolfhece/apps/version.py,sha256=oID8AvPVNdgq4kmuDFo7jFiw8pv1XddrAgr_ttxcAgk,388
|
75
75
|
wolfhece/apps/wolf.py,sha256=mM6Tyi4DlKQILmO49cDUCip9fYVy-hLXkY3YhZgIeUQ,591
|
76
76
|
wolfhece/apps/wolf2D.py,sha256=yPQGee7fsegoQ8GfWKrWEjX1Az_ApL-UWlBiqPvaIyY,565
|
77
77
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -169,39 +169,10 @@ wolfhece/lazviewer/vfuncsdir/vfuncs.cp39-win_amd64.pyd,sha256=MzAEyrgnqja-FjHGtL
|
|
169
169
|
wolfhece/lazviewer/viewer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
170
|
wolfhece/lazviewer/viewer/viewer.exe,sha256=pF5nwE8vMWlEzkk-SOekae9zpOsPhTWhZbqaJntumJc,202240
|
171
171
|
wolfhece/lazviewer/viewer/viewer.py,sha256=8_MQCaQOS0Z_oRPiGoRy1lq-aCirReX3hWEBjQID0ig,24665
|
172
|
-
wolfhece/libs/MSVCP140.dll,sha256=2GrBWBI6JFuSdZLIDMAg_qKcjErdwURGbEYloAypx3o,565640
|
173
|
-
wolfhece/libs/WolfDll.dll,sha256=E8SeV0AHVXW5ikAQuVtijqIvaYx7UIMeqvnnsmTMCT8,132934144
|
174
|
-
wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll,sha256=r0euvgZa8vBFoZ8g7H5Upuc8DD6aUQimMJWnIyt1OBo,19720
|
175
|
-
wolfhece/libs/api-ms-win-crt-math-l1-1-0.dll,sha256=ol0GVN6wzqGu8Ym6IXTQ8TvfUvCY06nsNtFeS_swxJk,27912
|
176
|
-
wolfhece/libs/api-ms-win-crt-runtime-l1-1-0.dll,sha256=NxpEq5FhSowm0Vm-uHKntD9WnLX6yK2pms6Y8mSjtQM,23304
|
177
|
-
wolfhece/libs/fribidi-0.dll,sha256=MCLSH_tGJXcJdcnUXilGNTVMH6KU8OumYyJX8yN08bQ,111616
|
178
172
|
wolfhece/libs/get_infos.cp310-win_amd64.pyd,sha256=45b6uo0r2zPD4KbpHR8QZC0TwQHDb9S0It7-kv0GWTA,77824
|
179
|
-
wolfhece/libs/glu32.dll,sha256=gLubeeL9b_RDYTQ2JL0iHzpRMg8uapKCOEpZ15k1SUQ,164352
|
180
|
-
wolfhece/libs/hdf5.dll,sha256=quTNP4GZtVNJ6Ptx__ltuGTN0gQ96rvkGL5yBLuUcF4,3129856
|
181
|
-
wolfhece/libs/hdf5_hl.dll,sha256=alZLhLXbReBtwbwsariWWRPAlrwzrePr-Mbdgiy922Y,112128
|
182
|
-
wolfhece/libs/libcurl.dll,sha256=xYNKOWwPynyHNEwgN61GRHHMqjFyBxu4GWemFe89Ipc,311296
|
183
|
-
wolfhece/libs/libifcoremd.dll,sha256=iMZ5S09HKQEXM0BTNHyR4_0XSm5Es50UKnVenTRvWus,1868144
|
184
|
-
wolfhece/libs/libifcoremdd.dll,sha256=fwHgfZsj91kt5Y0owPL7ZFV55bxN91bU1bB0G0RQaTw,1868144
|
185
|
-
wolfhece/libs/libifportmd.dll,sha256=JoQ9RBPndNZSvTOwAAm3wjDlzmBqs7nhW5dYPTiz49Q,421480
|
186
|
-
wolfhece/libs/libiomp5md.dll,sha256=7mxKgVa2r-qCZHMmIZyJytxuA2SEZ9A_LbE-Rxtteds,1959528
|
187
|
-
wolfhece/libs/libmmd.dll,sha256=pEL3ajD5Jvdlre4ZGFq8m5EYxL6Hj2LZ8pdkExmweKg,4514672
|
188
|
-
wolfhece/libs/libmmdd.dll,sha256=sItDYCWLr0whr4RIhw1c6gQva19Dq4Cc922NfS9ReAI,4728176
|
189
|
-
wolfhece/libs/libpardiso600-WIN-X86-64.dll,sha256=4UsSdj3TWf0IR4Peac05mLXCuZvzazix5_KGfurTRKE,16288256
|
190
|
-
wolfhece/libs/libraqm.dll,sha256=p48j-ZNSQJRqrh8NHez7wdxZCKItW4DNSmWd082o60Y,1304064
|
191
|
-
wolfhece/libs/mkl_core.2.dll,sha256=4xeYPkr7_iUqoyWZXqJgxkAeeLG1eJbM0c2ggeibdb4,78197776
|
192
|
-
wolfhece/libs/mkl_intel_thread.2.dll,sha256=DCjZ8oUBZIpV9H0qLsk5WGAUppuNKnzIWsc1ko3WChk,54758416
|
193
|
-
wolfhece/libs/mkl_rt.2.dll,sha256=70mFtgbn354EPdLP-_maDO4tJmWYrv0f7G-_AEED3BU,23857168
|
194
|
-
wolfhece/libs/msvcr100.dll,sha256=rjy2xq-6mkqlyF9mAjw1M4ylebMDJt0CkY-dVSWVA9U,829264
|
195
|
-
wolfhece/libs/netcdf.dll,sha256=6u6oyapv6lRB1KlDeEB1For0JjMYHtVYUYkH_ht_ICY,958976
|
196
|
-
wolfhece/libs/paho-mqtt3cs.dll,sha256=i1v0CSIWEGPIlJrEEcmXDLXO2D1bCOQNIDPiWzIpMbI,134656
|
197
|
-
wolfhece/libs/svml_dispmd.dll,sha256=GdwVZSC_XYiNpVVUqTqxAcYAf4zP6tr-E1N-3skVS7s,22291048
|
198
|
-
wolfhece/libs/vcomp100.dll,sha256=NKvXc8hc4MrFa9k8ErALA6OmldGfR3zidaZPCZhMVJI,57168
|
199
|
-
wolfhece/libs/vcruntime140.dll,sha256=YYMpkONk3KW_osYdkw8ArKrm0aqjEwOSQDRVrpoRJaU,89880
|
200
|
-
wolfhece/libs/vcruntime140_1.dll,sha256=FVS1gClo_bJwWmfLthWF6VYLnkKdBDpap0LvPJu_tr8,37240
|
201
173
|
wolfhece/libs/verify_wolf.cp310-win_amd64.pyd,sha256=ceWkovmTDfQcIzlxOBjUUDoHu6ZglOlUFADaRuAe3WM,127488
|
202
174
|
wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=1nQE30ZDXTmnjnaJisDDlP5zvt5Chu2Lxz1a-bZTY1A,294912
|
203
175
|
wolfhece/libs/wolfpy.cp310-win_amd64.pyd,sha256=6omqEaxmQll-Gg24e90wVomAB9rO_tyyOES2FewXn58,36457472
|
204
|
-
wolfhece/libs/zlib1.dll,sha256=E9a0e62VgmG1A8ohZzhVCmmfGtbyXxXu4aFeADTNJ30,77824
|
205
176
|
wolfhece/libs/GL/gl.h,sha256=IhsS_fOLa8GW9MpiLZebe9QYRy6uIB_qK_uQMWMOoeg,46345
|
206
177
|
wolfhece/libs/GL/glaux.h,sha256=I3vxXdrzVH05TmjEeAOgKn3egbPt34WMjbeKq5LaBvE,7130
|
207
178
|
wolfhece/libs/GL/glcorearb.h,sha256=wfbeOYhbDpIowerrO50sOT2ZKRy5TIhiw6CbNw77m8c,243226
|
@@ -278,8 +249,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
|
|
278
249
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
279
250
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
251
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
281
|
-
wolfhece-2.1.
|
282
|
-
wolfhece-2.1.
|
283
|
-
wolfhece-2.1.
|
284
|
-
wolfhece-2.1.
|
285
|
-
wolfhece-2.1.
|
252
|
+
wolfhece-2.1.38.dist-info/METADATA,sha256=YabVhQz0G97k82q5CR8b4lqyCKpVhdhWpbIrjeJ9Yuw,2463
|
253
|
+
wolfhece-2.1.38.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
254
|
+
wolfhece-2.1.38.dist-info/entry_points.txt,sha256=yggeO1Fa80pi2BrOd9k5dTkiFlefGPwG6HztZhY0-qw,366
|
255
|
+
wolfhece-2.1.38.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
256
|
+
wolfhece-2.1.38.dist-info/RECORD,,
|
wolfhece/libs/MSVCP140.dll
DELETED
Binary file
|
wolfhece/libs/WolfDll.dll
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
wolfhece/libs/fribidi-0.dll
DELETED
Binary file
|
wolfhece/libs/glu32.dll
DELETED
Binary file
|
wolfhece/libs/hdf5.dll
DELETED
Binary file
|
wolfhece/libs/hdf5_hl.dll
DELETED
Binary file
|
wolfhece/libs/libcurl.dll
DELETED
Binary file
|
wolfhece/libs/libifcoremd.dll
DELETED
Binary file
|
wolfhece/libs/libifcoremdd.dll
DELETED
Binary file
|
wolfhece/libs/libifportmd.dll
DELETED
Binary file
|
wolfhece/libs/libiomp5md.dll
DELETED
Binary file
|
wolfhece/libs/libmmd.dll
DELETED
Binary file
|
wolfhece/libs/libmmdd.dll
DELETED
Binary file
|
Binary file
|
wolfhece/libs/libraqm.dll
DELETED
Binary file
|
wolfhece/libs/mkl_core.2.dll
DELETED
Binary file
|
Binary file
|
wolfhece/libs/mkl_rt.2.dll
DELETED
Binary file
|
wolfhece/libs/msvcr100.dll
DELETED
Binary file
|
wolfhece/libs/netcdf.dll
DELETED
Binary file
|
wolfhece/libs/paho-mqtt3cs.dll
DELETED
Binary file
|
wolfhece/libs/svml_dispmd.dll
DELETED
Binary file
|
wolfhece/libs/vcomp100.dll
DELETED
Binary file
|
wolfhece/libs/vcruntime140.dll
DELETED
Binary file
|
wolfhece/libs/vcruntime140_1.dll
DELETED
Binary file
|
wolfhece/libs/zlib1.dll
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|