wolfhece 2.1.36__py3-none-any.whl → 2.1.39__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.
Files changed (41) hide show
  1. wolfhece/PyPalette.py +282 -268
  2. wolfhece/apps/splashscreen.py +8 -8
  3. wolfhece/apps/version.py +1 -1
  4. wolfhece/libs/wolfogl.cp310-win_amd64.pyd +0 -0
  5. wolfhece/pyviews.py +10 -6
  6. wolfhece/wolf_array.py +47 -28
  7. wolfhece/wolfresults_2D.py +19 -19
  8. {wolfhece-2.1.36.dist-info → wolfhece-2.1.39.dist-info}/METADATA +2 -1
  9. {wolfhece-2.1.36.dist-info → wolfhece-2.1.39.dist-info}/RECORD +12 -41
  10. wolfhece/libs/MSVCP140.dll +0 -0
  11. wolfhece/libs/WolfDll.dll +0 -0
  12. wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll +0 -0
  13. wolfhece/libs/api-ms-win-crt-math-l1-1-0.dll +0 -0
  14. wolfhece/libs/api-ms-win-crt-runtime-l1-1-0.dll +0 -0
  15. wolfhece/libs/fribidi-0.dll +0 -0
  16. wolfhece/libs/glu32.dll +0 -0
  17. wolfhece/libs/hdf5.dll +0 -0
  18. wolfhece/libs/hdf5_hl.dll +0 -0
  19. wolfhece/libs/libcurl.dll +0 -0
  20. wolfhece/libs/libifcoremd.dll +0 -0
  21. wolfhece/libs/libifcoremdd.dll +0 -0
  22. wolfhece/libs/libifportmd.dll +0 -0
  23. wolfhece/libs/libiomp5md.dll +0 -0
  24. wolfhece/libs/libmmd.dll +0 -0
  25. wolfhece/libs/libmmdd.dll +0 -0
  26. wolfhece/libs/libpardiso600-WIN-X86-64.dll +0 -0
  27. wolfhece/libs/libraqm.dll +0 -0
  28. wolfhece/libs/mkl_core.2.dll +0 -0
  29. wolfhece/libs/mkl_intel_thread.2.dll +0 -0
  30. wolfhece/libs/mkl_rt.2.dll +0 -0
  31. wolfhece/libs/msvcr100.dll +0 -0
  32. wolfhece/libs/netcdf.dll +0 -0
  33. wolfhece/libs/paho-mqtt3cs.dll +0 -0
  34. wolfhece/libs/svml_dispmd.dll +0 -0
  35. wolfhece/libs/vcomp100.dll +0 -0
  36. wolfhece/libs/vcruntime140.dll +0 -0
  37. wolfhece/libs/vcruntime140_1.dll +0 -0
  38. wolfhece/libs/zlib1.dll +0 -0
  39. {wolfhece-2.1.36.dist-info → wolfhece-2.1.39.dist-info}/WHEEL +0 -0
  40. {wolfhece-2.1.36.dist-info → wolfhece-2.1.39.dist-info}/entry_points.txt +0 -0
  41. {wolfhece-2.1.36.dist-info → wolfhece-2.1.39.dist-info}/top_level.txt +0 -0
@@ -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
- # 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")
20
+ try:
21
+ from ..libs import wolfogl
22
+ except ImportError:
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,13 +32,13 @@ 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
 
39
39
  # try:
40
40
  # wolfogl.init()
41
- # except Exception as e:
41
+ # except ImportError:
42
42
  # print("Error initializing WolfOGL -- We must stop here !")
43
43
  # print("Please reinstall 'wolfhece' package -- pip install wolfhece")
44
44
  # exit()
wolfhece/apps/version.py CHANGED
@@ -5,7 +5,7 @@ class WolfVersion():
5
5
 
6
6
  self.major = 2
7
7
  self.minor = 1
8
- self.patch = 36
8
+ self.patch = 39
9
9
 
10
10
  def __str__(self):
11
11
 
Binary file
wolfhece/pyviews.py CHANGED
@@ -181,17 +181,21 @@ class WolfViews(Element_To_Draw):
181
181
 
182
182
  if self.plotted:
183
183
 
184
- for cur,pal in zip(self.view,self.pals):
184
+ for cur, pal in zip(self.view, self.pals):
185
185
  oldplotted = cur.plotted
186
186
  cur.plotted=True
187
187
 
188
188
  if isinstance(cur,WolfArray):
189
- if cur.rgb is None:
190
- if pal is not None:
191
- if VERSION_RGB ==1: cur.rgb = pal.get_rgba(cur.array)
192
- else:
189
+ if VERSION_RGB ==1:
190
+ if cur.rgb is None:
191
+ if pal is not None:
192
+ cur.rgb = pal.get_rgba(cur.array)
193
+ else:
194
+ cur.mypal.defaultgray_minmax(cur.array)
195
+ cur.rgb = cur.mypal.get_rgba(cur.array)
196
+ elif VERSION_RGB == 2:
197
+ if pal is None:
193
198
  cur.mypal.defaultgray_minmax(cur.array)
194
- if VERSION_RGB ==1: cur.rgb = cur.mypal.get_rgba(cur.array)
195
199
 
196
200
  cur.plot(sx,sy,xmin,ymin,xmax,ymax)
197
201
  cur.plotted = oldplotted
wolfhece/wolf_array.py CHANGED
@@ -53,7 +53,7 @@ from .drawing_obj import Element_To_Draw
53
53
 
54
54
  try:
55
55
  from .libs import wolfogl
56
- except:
56
+ except ImportError:
57
57
  msg=_('Error importing wolfogl.pyd')
58
58
  msg+=_(' Python version : ' + sys.version)
59
59
  msg+=_(' If your Python version is not 3.10.x, you need to get an adapted library in wolfhece library path libs')
@@ -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
@@ -4163,7 +4163,7 @@ class WolfArray(Element_To_Draw, header_wolf):
4163
4163
  create:bool = False,
4164
4164
  mapviewer = None,
4165
4165
  nullvalue:float = 0.,
4166
- srcheader:header_wolf = None,
4166
+ srcheader:header_wolf = None,
4167
4167
  idx:str = '',
4168
4168
  plotted:bool = False,
4169
4169
  need_for_wx:bool = False,
@@ -4173,7 +4173,7 @@ class WolfArray(Element_To_Draw, header_wolf):
4173
4173
  Constructor of the WolfArray class
4174
4174
 
4175
4175
  :param fname: filename/filepath - if provided, the file will be read on disk
4176
- :param mold: initialize from a copy a the mold object --> must be a WolArray
4176
+ :param mold: initialize from a copy a the mold object --> must be a WolArray if not None
4177
4177
  :param masknull: mask data based on the nullvalue
4178
4178
  :param crop: crop data based on the spatial extent [[xmin, xmax],[ymin,ymax]]
4179
4179
  :param whichtype: type of the numpy array (float32 as default)
@@ -4188,7 +4188,11 @@ class WolfArray(Element_To_Draw, header_wolf):
4188
4188
  :param mask_source: mask to link to the data
4189
4189
 
4190
4190
  """
4191
- # wolfogl.powermode('ON')
4191
+ try:
4192
+ pass
4193
+ # wolfogl.powermode('ON')
4194
+ except PermissionError:
4195
+ print(_('wolfogl not available -- Pleas check your wolfhece installation'))
4192
4196
 
4193
4197
  Element_To_Draw.__init__(self, idx, plotted, mapviewer, need_for_wx)
4194
4198
  header_wolf.__init__(self)
@@ -4349,7 +4353,7 @@ class WolfArray(Element_To_Draw, header_wolf):
4349
4353
  """
4350
4354
 
4351
4355
  if self.nbz == 0:
4352
- size = self.nbx * self.nby
4356
+ size = self.nbx * self.nby
4353
4357
  else:
4354
4358
  size = self.nbx * self.nby * self.nbz
4355
4359
 
@@ -4365,7 +4369,7 @@ class WolfArray(Element_To_Draw, header_wolf):
4365
4369
  return size
4366
4370
  else:
4367
4371
  return size * 4
4368
-
4372
+
4369
4373
  @property
4370
4374
  def memory_usage_mask(self):
4371
4375
  """
@@ -4383,13 +4387,13 @@ class WolfArray(Element_To_Draw, header_wolf):
4383
4387
  """ Destructeur de la classe """
4384
4388
  import gc
4385
4389
  self.delete_lists()
4386
- del self.array
4390
+ del self.array
4387
4391
  if VERSION_RGB==1 : del self.rgb
4388
4392
  del self._array3d
4389
4393
  del self.mypal
4390
4394
  del self.shaded
4391
4395
  gc.collect()
4392
-
4396
+
4393
4397
  def extract_selection(self):
4394
4398
  """ Extract the current selection """
4395
4399
 
@@ -4449,9 +4453,9 @@ class WolfArray(Element_To_Draw, header_wolf):
4449
4453
 
4450
4454
  self._quads = self.get_centers()
4451
4455
  ztext = np.require(self.array.data.copy(), dtype=np.float32, requirements=['C'])
4452
-
4456
+
4453
4457
  assert ztext.flags.c_contiguous, _('ztext is not C-contiguous')
4454
-
4458
+
4455
4459
  ztext[self.array.mask] = self.array.min()
4456
4460
  self._array3d = WolfArray_plot3D(self._quads,
4457
4461
  self.dx, self.dy,
@@ -4820,7 +4824,7 @@ class WolfArray(Element_To_Draw, header_wolf):
4820
4824
  band.ComputeStatistics(True)
4821
4825
 
4822
4826
  def _import_npy(self, fn:str='', crop:list[float]=None):
4823
- """
4827
+ """
4824
4828
  Import a numpy file.
4825
4829
 
4826
4830
  Must be called after the header is initialized, e.g. read_txt_header.
@@ -6055,7 +6059,7 @@ class WolfArray(Element_To_Draw, header_wolf):
6055
6059
 
6056
6060
  self.loaded = True
6057
6061
 
6058
- if VERSION_RGB==1 :
6062
+ if VERSION_RGB==1 :
6059
6063
  if self.rgb is None:
6060
6064
  self.updatepalette(0)
6061
6065
 
@@ -6182,6 +6186,9 @@ class WolfArray(Element_To_Draw, header_wolf):
6182
6186
  else:
6183
6187
  newArray.array = np.ma.masked_array(self.array + other.array, self.array.mask)
6184
6188
  newArray.count()
6189
+
6190
+ assert newArray.array.dtype == self.array.dtype, _('Bad dtype')
6191
+
6185
6192
  return newArray
6186
6193
 
6187
6194
  def __mul__(self, other):
@@ -6208,6 +6215,9 @@ class WolfArray(Element_To_Draw, header_wolf):
6208
6215
  else:
6209
6216
  newArray.array = np.ma.masked_array(self.array * other.array, self.array.mask)
6210
6217
  newArray.count()
6218
+
6219
+ assert newArray.array.dtype == self.array.dtype, _('Bad dtype')
6220
+
6211
6221
  return newArray
6212
6222
 
6213
6223
  def __sub__(self, other):
@@ -6234,6 +6244,9 @@ class WolfArray(Element_To_Draw, header_wolf):
6234
6244
  else:
6235
6245
  newArray.array = np.ma.masked_array(self.array - other.array, self.array.mask)
6236
6246
  newArray.count()
6247
+
6248
+ assert newArray.array.dtype == self.array.dtype, _('Bad dtype')
6249
+
6237
6250
  return newArray
6238
6251
 
6239
6252
  def __pow__(self, other):
@@ -6256,6 +6269,9 @@ class WolfArray(Element_To_Draw, header_wolf):
6256
6269
 
6257
6270
  newArray.array = np.ma.masked_array(self.array ** other, self.array.mask)
6258
6271
  newArray.count()
6272
+
6273
+ assert newArray.array.dtype == self.array.dtype, _('Bad dtype')
6274
+
6259
6275
  return newArray
6260
6276
 
6261
6277
  def __truediv__(self, other):
@@ -6282,6 +6298,9 @@ class WolfArray(Element_To_Draw, header_wolf):
6282
6298
  else:
6283
6299
  newArray.array = np.ma.masked_array(np.where(other == 0., 0., self.array / other.array), self.array.mask)
6284
6300
  newArray.count()
6301
+
6302
+ assert newArray.array.dtype == self.array.dtype, _('Bad dtype')
6303
+
6285
6304
  return newArray
6286
6305
 
6287
6306
  def concatenate(self, list_arr:list["WolfArray"], nullvalue:float = 0.):
@@ -6569,7 +6588,7 @@ class WolfArray(Element_To_Draw, header_wolf):
6569
6588
  if self.wx_exists:
6570
6589
  logging.warning(_('No data file : ')+self.filename)
6571
6590
  return
6572
-
6591
+
6573
6592
  def check_threshold(nbx, nby, THRESHOLD) -> bool:
6574
6593
  if nbx * nby > THRESHOLD:
6575
6594
  logging.info(_('The array is very large > 100M pixels'))
@@ -6585,7 +6604,7 @@ class WolfArray(Element_To_Draw, header_wolf):
6585
6604
  self.read_txt_header()
6586
6605
 
6587
6606
  if self.preload:
6588
-
6607
+
6589
6608
  update_min_max = check_threshold(self.nbx, self.nby, THRESHOLD)
6590
6609
 
6591
6610
  self.import_geotif(which= which_band, crop = self.cropini)
@@ -7346,7 +7365,7 @@ class WolfArray(Element_To_Draw, header_wolf):
7346
7365
  else:
7347
7366
  self.mypal.isopop(self.get_working_array(), self.nbnotnull)
7348
7367
 
7349
- if VERSION_RGB==1 :
7368
+ if VERSION_RGB==1 :
7350
7369
  if self.nbx * self.nby > 1_000_000 : logging.info(_('Computing colors'))
7351
7370
  if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE, WOLF_ARRAY_FULL_INTEGER8]:
7352
7371
  # FIXME: Currently, only some types are supported in Cython/OpenGL library
@@ -7357,7 +7376,7 @@ class WolfArray(Element_To_Draw, header_wolf):
7357
7376
  self.rgb = self.mypal.get_rgba(self.array)
7358
7377
  if self.nbx * self.nby > 1_000_000 : logging.info(_('Colors computed'))
7359
7378
  elif VERSION_RGB==2 :
7360
- if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
7379
+ if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
7361
7380
  WOLF_ARRAY_FULL_INTEGER8,
7362
7381
  WOLF_ARRAY_FULL_INTEGER16,
7363
7382
  WOLF_ARRAY_FULL_INTEGER16_2,
@@ -7539,7 +7558,7 @@ class WolfArray(Element_To_Draw, header_wolf):
7539
7558
  def fillonecellgrid(self, curscale, loci, locj, force=False):
7540
7559
  """ Fill one cell of the plotted grid """
7541
7560
 
7542
-
7561
+
7543
7562
 
7544
7563
  cursize = curscale # 2**curscale
7545
7564
 
@@ -7651,12 +7670,12 @@ class WolfArray(Element_To_Draw, header_wolf):
7651
7670
 
7652
7671
  curlist['done'][loci, locj] = 1
7653
7672
 
7654
- def suxsuy_contour(self,
7655
- filename:str='',
7673
+ def suxsuy_contour(self,
7674
+ filename:str='',
7656
7675
  abs:bool=False,
7657
- one_vec_if_ml:bool = True) -> tuple[list[int,int],
7658
- list[int,int],
7659
- vector | zone,
7676
+ one_vec_if_ml:bool = True) -> tuple[list[int,int],
7677
+ list[int,int],
7678
+ vector | zone,
7660
7679
  bool]:
7661
7680
  """
7662
7681
  The borders are computed on basis of the current *mask*
@@ -8160,7 +8179,7 @@ class WolfArrayMB(WolfArray):
8160
8179
  if self.masknull:
8161
8180
  self.mask_data(self.nullvalue)
8162
8181
 
8163
- if VERSION_RGB==1 :
8182
+ if VERSION_RGB==1 :
8164
8183
  if self.rgb is None:
8165
8184
  self.rgb = np.ones((self.nbx, self.nby, 4), order='F', dtype=np.integer)
8166
8185
 
@@ -8434,8 +8453,8 @@ class WolfArrayMB(WolfArray):
8434
8453
  self.mypal.isopop(allarrays, self.nbnotnull)
8435
8454
 
8436
8455
  self.link_palette()
8437
-
8438
- if VERSION_RGB ==1:
8456
+
8457
+ if VERSION_RGB ==1:
8439
8458
  for curblock in self.myblocks.values():
8440
8459
  curblock.rgb = self.mypal.get_rgba(curblock.array)
8441
8460
 
@@ -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,18 +1783,24 @@ 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
 
1796
- if which == 'wd_u':
1797
- self._view.pals = [bluepal,curpal]
1798
- elif which =='t_wl_q':
1799
- self._view.pals = [graypal,curpal,None]
1800
- elif which =='t_wd_q':
1801
- self._view.pals = [graypal,bluepal,None]
1802
- elif which =='t_wd_u':
1803
- self._view.pals = [graypal,bluepal,None]
1790
+ if which in [views_2D.WD_Q, views_2D.WD_U]:
1791
+ self._view.pals = [curpal, None]
1792
+ elif which in [views_2D.WL_U, views_2D.WL_Q]:
1793
+ self._view.pals = [curpal, None]
1794
+
1795
+ elif which == views_2D.T_WL_Q:
1796
+ self._view.pals = [graypal, curpal, None]
1797
+ elif which == views_2D.T_WL_Q:
1798
+ self._view.pals = [graypal, curpal, None]
1799
+
1800
+ elif which == views_2D.T_WD_Q:
1801
+ self._view.pals = [graypal, bluepal, None]
1802
+ elif which == views_2D.T_WD_U:
1803
+ self._view.pals = [graypal, bluepal, None]
1804
1804
 
1805
1805
  def get_critdiam(self, which:int) -> WolfArray:
1806
1806
  """
@@ -2022,7 +2022,7 @@ class Wolfresults_2D(Element_To_Draw):
2022
2022
  self._epsilon_default = self.epsilon
2023
2023
 
2024
2024
  self.loaded=True
2025
-
2025
+
2026
2026
  self.current_result = -1
2027
2027
  self._step_interval = 1
2028
2028
 
@@ -2328,7 +2328,7 @@ class Wolfresults_2D(Element_To_Draw):
2328
2328
  @property
2329
2329
  def step_interval_results(self):
2330
2330
  return self._step_interval
2331
-
2331
+
2332
2332
  @step_interval_results.setter
2333
2333
  def step_interval_results(self, value:int):
2334
2334
  self._step_interval = value
@@ -4184,7 +4184,7 @@ class Wolfresults_2D(Element_To_Draw):
4184
4184
 
4185
4185
  ij = np.where(~wd.array.mask)
4186
4186
 
4187
- #
4187
+ #
4188
4188
  mom = np.zeros_like(wd.array)
4189
4189
  v = np.zeros_like(wd.array)
4190
4190
  z = np.zeros_like(wd.array)
@@ -4208,7 +4208,7 @@ class Wolfresults_2D(Element_To_Draw):
4208
4208
 
4209
4209
  ij = np.where(~wd.array.mask)
4210
4210
 
4211
- #
4211
+ #
4212
4212
  mom = np.zeros_like(wd.array)
4213
4213
  v = np.zeros_like(wd.array)
4214
4214
  z = np.zeros_like(wd.array)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wolfhece
3
- Version: 2.1.36
3
+ Version: 2.1.39
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
@@ -10,7 +10,7 @@ wolfhece/PyDraw.py,sha256=MQO149Cp8QtxWceXpKWLsDbE6JBrVbqEWoAOXWfHl2w,390751
10
10
  wolfhece/PyGui.py,sha256=_1LKelusQ-FS0AtgpwFiXKMZ2glky7K1WINTI93H0k0,103438
11
11
  wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
12
12
  wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
13
- wolfhece/PyPalette.py,sha256=lqWd-jZkEyYeeAyaiIaGZq_bxXRiiMhDXN68QYoVCfU,26181
13
+ wolfhece/PyPalette.py,sha256=uxibQSz5u1q8bgZv-VId6o_SI5TTfLHPs9DpJomVwSA,27179
14
14
  wolfhece/PyParams.py,sha256=wwgmP-_7wiiPLTcyX8a5jR6FyC1D2c4oBPc1VWQqtSA,97383
15
15
  wolfhece/PyPictures.py,sha256=m1kY0saW6Y9Q0bDCo47lW6XxDkBrbQG-Fd8uVn8G5ic,2514
16
16
  wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
@@ -42,18 +42,18 @@ wolfhece/pydike.py,sha256=hPBQsmSTW4QAp1wcOzb-TL3L7eet2WT1sJx2q-WNQ-Q,2241
42
42
  wolfhece/pylogging.py,sha256=4TI8hgBB65z-zpvU5Rfa2jkPXPhJaqXjHVPwbcdzTNc,4528
43
43
  wolfhece/pypolygons_scen.py,sha256=x-tnYLNq3MPV51NbaU14trgRj8qyUyOrMdF1zDsUX3I,37444
44
44
  wolfhece/pyshields.py,sha256=7k-qe2EJgr9fJE62jyPmlWQwRj8T0DK4iuMU844ZhYs,23281
45
- wolfhece/pyviews.py,sha256=G4PHtXJ8F9PQDt_hcKnxF5kmA1_Fy-8hGiJN2wa_9j4,10017
45
+ wolfhece/pyviews.py,sha256=jSTXCsmzw5OIZusj3Ynfd2o2XvRq7TaDnbt-dyNlbi0,10198
46
46
  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=CZRtCd9XE1GcYegL_id3qyuywZJ4XzQh6Yv8pon--zk,356265
50
+ wolfhece/wolf_array.py,sha256=7-5l96kuQdTE3CStLyf8PkyRD3QX1Us7DOTbF7INepY,356721
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=wxLXD2D46LMBiUYZzIsKtaUkryPB-xrd2T1CoRKSxE0,165906
56
+ wolfhece/wolfresults_2D.py,sha256=MlvE2OoSwk1P_CeTwotV1QDBJYeHhSCjUprG3c42tRc,165714
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=2o1NRxs48BC8m0XCbDgWmWxWDddDXaCtZ-lSnU-cSkM,2922
74
- wolfhece/apps/version.py,sha256=b4QUjeosMLU1tdLlu7uvGlp3GeubVH8VFCVliut20o0,388
73
+ wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
74
+ wolfhece/apps/version.py,sha256=9TV-RYEEy9X0HeZ9xYxf6PRts-on5mB43zJZtbq4_bY,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
- wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=1nQE30ZDXTmnjnaJisDDlP5zvt5Chu2Lxz1a-bZTY1A,294912
174
+ wolfhece/libs/wolfogl.cp310-win_amd64.pyd,sha256=e27Epa44wBSrXiwzeUpl2ud8oCPJpFbfWd_5P5l6sAo,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.36.dist-info/METADATA,sha256=Tlb74Iqx7ORkpGXPfl2fQwEAhBiBhYuIAn9tDwQRPTY,2430
282
- wolfhece-2.1.36.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
283
- wolfhece-2.1.36.dist-info/entry_points.txt,sha256=yggeO1Fa80pi2BrOd9k5dTkiFlefGPwG6HztZhY0-qw,366
284
- wolfhece-2.1.36.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
285
- wolfhece-2.1.36.dist-info/RECORD,,
252
+ wolfhece-2.1.39.dist-info/METADATA,sha256=83wPlCtt2A7BPb-3QuxZrLSWn3AGA5uppBHC79HuiBU,2463
253
+ wolfhece-2.1.39.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
254
+ wolfhece-2.1.39.dist-info/entry_points.txt,sha256=yggeO1Fa80pi2BrOd9k5dTkiFlefGPwG6HztZhY0-qw,366
255
+ wolfhece-2.1.39.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
256
+ wolfhece-2.1.39.dist-info/RECORD,,
Binary file
wolfhece/libs/WolfDll.dll DELETED
Binary file
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
Binary file
Binary file
Binary file
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
Binary file
Binary file
Binary file
Binary file
wolfhece/libs/netcdf.dll DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
wolfhece/libs/zlib1.dll DELETED
Binary file