wolfhece 2.1.122__py3-none-any.whl → 2.1.123__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/PyDraw.py CHANGED
@@ -5355,7 +5355,7 @@ class WolfMapViewer(wx.Frame):
5355
5355
  except Exception as e:
5356
5356
  logging.error(_('Error in tiles import : ')+ str(e))
5357
5357
  else:
5358
- logging.warning(_('File does not exist : ')+ curfile)
5358
+ logging.warning(_('File does not exist : ')+ str(curfile))
5359
5359
  else:
5360
5360
  logging.warning(_('Bad parameter in project file - tiles'))
5361
5361
 
@@ -5386,7 +5386,7 @@ class WolfMapViewer(wx.Frame):
5386
5386
  except Exception as e:
5387
5387
  logging.error(_('Error in vector import : ')+ str(e))
5388
5388
  else:
5389
- logging.info(_('File does not exist : ') + name)
5389
+ logging.info(_('File does not exist : ') + str(name))
5390
5390
  else:
5391
5391
  logging.warning(_('Bad parameter in project file - vector'))
5392
5392
 
@@ -5406,7 +5406,7 @@ class WolfMapViewer(wx.Frame):
5406
5406
  except Exception as e:
5407
5407
  logging.error(_('Error in array import : ')+ str(e))
5408
5408
  else:
5409
- logging.info(_('File does not exist : ') + name)
5409
+ logging.info(_('File does not exist : ') + str(name))
5410
5410
  else:
5411
5411
  logging.warning(_('Bad parameter in project file - array'))
5412
5412
 
@@ -5426,7 +5426,7 @@ class WolfMapViewer(wx.Frame):
5426
5426
  except Exception as e:
5427
5427
  logging.error(_('Error in cloud import : ') + str(e))
5428
5428
  else:
5429
- logging.info(_('File does not exist : ') + name)
5429
+ logging.info(_('File does not exist : ') + str(name))
5430
5430
  else:
5431
5431
  logging.warning(_('Bad parameter in project file - cloud'))
5432
5432
 
@@ -5448,7 +5448,7 @@ class WolfMapViewer(wx.Frame):
5448
5448
  except Exception as e:
5449
5449
  logging.error(_('Error in wolf2d import : ')+ str(e))
5450
5450
  else:
5451
- logging.info(_('Directory does not exist ')) + simdir
5451
+ logging.info(_('Directory does not exist ')) + str(simdir)
5452
5452
 
5453
5453
  self.menu_wolf2d()
5454
5454
  else:
@@ -5473,7 +5473,7 @@ class WolfMapViewer(wx.Frame):
5473
5473
  except Exception as e:
5474
5474
  logging.error(_('Error in gpu2d import : ')+ str(e))
5475
5475
  else:
5476
- logging.info(_('Bad directory : ') + simdir)
5476
+ logging.info(_('Bad directory : ') + str(simdir))
5477
5477
 
5478
5478
  pgbar.Update(pgbar.GetValue() + 1)
5479
5479
 
@@ -5500,9 +5500,9 @@ class WolfMapViewer(wx.Frame):
5500
5500
 
5501
5501
  self.project_pal[curid] = mypal
5502
5502
  else:
5503
- logging.warning(_('Bad palette file : ')+ name)
5503
+ logging.warning(_('Bad palette file : ')+ str(name))
5504
5504
  else:
5505
- logging.info(_('Bad parameter in project file - palette : ')+ name)
5505
+ logging.info(_('Bad parameter in project file - palette : ')+ str(name))
5506
5506
  else:
5507
5507
  logging.warning(_('Bad parameter in project file - palette'))
5508
5508
 
@@ -5530,11 +5530,11 @@ class WolfMapViewer(wx.Frame):
5530
5530
  curarray.updatepalette(0)
5531
5531
  curarray.reset_plot()
5532
5532
  else:
5533
- logging.warning(_('Bad parameter in project file - palette-array : ')+ id_array)
5533
+ logging.warning(_('Bad parameter in project file - palette-array : ')+ str(id_array))
5534
5534
  except Exception as e:
5535
5535
  logging.error(_('Error in palette-array link : ')+ str(e))
5536
5536
  else:
5537
- logging.warning(_('Bad parameter in project file - palette-array : ')+ id_pal)
5537
+ logging.warning(_('Bad parameter in project file - palette-array : ')+ str(id_pal))
5538
5538
  else:
5539
5539
  logging.warning(_('No palettes found in project file ! -- Add palette group in the .proj'))
5540
5540
  else:
@@ -9467,7 +9467,7 @@ class WolfMapViewer(wx.Frame):
9467
9467
  # all_ids = self.get_list_keys(None, checked_state=None)
9468
9468
  if id.lower() in all_ids:
9469
9469
  endid = 1
9470
- while (id + str(endid).zfill(3)).lower() in ids:
9470
+ while (id + str(endid).zfill(3)).lower() in all_ids:
9471
9471
  endid += 1
9472
9472
  id = id + str(endid).zfill(3)
9473
9473
 
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 = 122
8
+ self.patch = 123
9
9
 
10
10
  def __str__(self):
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: wolfhece
3
- Version: 2.1.122
3
+ Version: 2.1.123
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
@@ -7,7 +7,7 @@ wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
7
7
  wolfhece/Model1D.py,sha256=SI4oNF_J3MdjiWZoizS8kuRXLMVyymX9dYfYJNVCQVI,476989
8
8
  wolfhece/PyConfig.py,sha256=gyl1MesSJZaVpC1XtvD78PpnE1VD3hGM3HPQXTJ3eJg,12963
9
9
  wolfhece/PyCrosssections.py,sha256=igU_ELrg5VrHU6RNbF5tHxPyVImpR3xdpfopJYc7haw,114711
10
- wolfhece/PyDraw.py,sha256=NI6VlLwgkrfkvYyrBsajZVMcfGE3zt3p4r3weW1eMbo,568090
10
+ wolfhece/PyDraw.py,sha256=_OikcvFSinpdfSA9PO8-lMbMSSMOz3IvSdqoThyU9QU,568144
11
11
  wolfhece/PyGui.py,sha256=5ANCUmsBwsx_h-GWqV9xwnSQyGJ16mSObOm-h3_7LIQ,144708
12
12
  wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
13
13
  wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
@@ -80,7 +80,7 @@ wolfhece/apps/curvedigitizer.py,sha256=lEJJwgAfulrrWQc-U6ij6sj59hWN3SZl4Yu1kQxVz
80
80
  wolfhece/apps/hydrometry.py,sha256=lhhJsFeb4zGL4bNQTs0co85OQ_6ssL1Oy0OUJCzhfYE,656
81
81
  wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
82
82
  wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
83
- wolfhece/apps/version.py,sha256=4a2x2BBkIPKIrtQtYKbwz5_RxP-dx_Xshx9VBKawrwc,389
83
+ wolfhece/apps/version.py,sha256=cMi7d7GBIK87fZLMv7WtfEiDFUJIcbCo_P83NQStVTU,389
84
84
  wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
85
85
  wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
86
86
  wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
@@ -295,8 +295,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
295
295
  wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
296
296
  wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
297
  wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
298
- wolfhece-2.1.122.dist-info/METADATA,sha256=rgSH96HdGA8CjVJzmIKJlrwM5h8_-IvMRKUGmDNJrrM,2587
299
- wolfhece-2.1.122.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
300
- wolfhece-2.1.122.dist-info/entry_points.txt,sha256=ZZ-aSfbpdcmo-wo84lRFzBN7LaSnD1XRGSaAKVX-Gpc,522
301
- wolfhece-2.1.122.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
302
- wolfhece-2.1.122.dist-info/RECORD,,
298
+ wolfhece-2.1.123.dist-info/METADATA,sha256=M3L8dCCD8C9FEljWmL-SLZfETDY-ZNTx0P2W2y2uddM,2587
299
+ wolfhece-2.1.123.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
300
+ wolfhece-2.1.123.dist-info/entry_points.txt,sha256=ZZ-aSfbpdcmo-wo84lRFzBN7LaSnD1XRGSaAKVX-Gpc,522
301
+ wolfhece-2.1.123.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
302
+ wolfhece-2.1.123.dist-info/RECORD,,