wolfhece 2.1.62__py3-none-any.whl → 2.1.63__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/GraphNotebook.py CHANGED
@@ -8,22 +8,30 @@ This script and its content are protected by copyright law. Unauthorized
8
8
  copying or distribution of this file, via any medium, is strictly prohibited.
9
9
  """
10
10
 
11
- from cmath import isnan
12
- import numpy as np
13
- import wx
14
- import wx.lib.agw.aui as aui
15
- from shapely.geometry import LineString,Point
16
- from matplotlib import figure as mplfig
17
- import matplotlib.pyplot as plt
18
- from matplotlib.axes import Axes
19
- from matplotlib.figure import Figure
20
- from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas, NavigationToolbar2WxAgg as NavigationToolbar
21
- import logging
22
-
23
- from .PyCrosssections import profile,crosssections
24
- from .PyVertexvectors import Zones,zone,vector
25
- from .PyTranslate import _
26
- from .PyVertex import getIfromRGB,getRGBfromI, wolfvertex
11
+ try:
12
+ from cmath import isnan
13
+ import numpy as np
14
+ import wx
15
+ import wx.lib.agw.aui as aui
16
+ from shapely.geometry import LineString,Point
17
+ from matplotlib import figure as mplfig
18
+ import matplotlib.pyplot as plt
19
+ from matplotlib.axes import Axes
20
+ from matplotlib.figure import Figure
21
+ from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas, NavigationToolbar2WxAgg as NavigationToolbar
22
+ import logging
23
+ except ImportError as e:
24
+ print(f"Import error: {e}")
25
+ raise ImportError
26
+
27
+ try:
28
+ from .PyCrosssections import profile,crosssections
29
+ from .PyVertexvectors import Zones,zone,vector
30
+ from .PyTranslate import _
31
+ from .PyVertex import getIfromRGB,getRGBfromI, wolfvertex
32
+ except ImportError as e:
33
+ print(f"Import error: {e}")
34
+ raise ImportError
27
35
 
28
36
  class PlotPanel(wx.Panel):
29
37
  """
wolfhece/PyDraw.py CHANGED
@@ -8,91 +8,111 @@ This script and its content are protected by copyright law. Unauthorized
8
8
  copying or distribution of this file, via any medium, is strictly prohibited.
9
9
  """
10
10
 
11
- import numpy as np
12
- from wx import dataview, TreeCtrl
13
- import wx
14
- import wx.propgrid as pg
15
- # from wxasync import AsyncBind
16
- from wx.core import VERTICAL, BoxSizer, Height, ListCtrl, StaticText, TextCtrl, Width
17
- from wx.glcanvas import GLCanvas, GLContext
18
- from wx.dataview import TreeListCtrl
19
- import wx.lib.ogl as ogl
20
- from PIL import Image, ImageOps
21
- from PIL.PngImagePlugin import PngInfo
22
- import io
23
- import json
24
- import glob
25
- import traceback
11
+ try:
12
+ import numpy as np
13
+ from wx import dataview, TreeCtrl
14
+ import wx
15
+ import wx.propgrid as pg
16
+ # from wxasync import AsyncBind
17
+ from wx.core import VERTICAL, BoxSizer, Height, ListCtrl, StaticText, TextCtrl, Width
18
+ from wx.glcanvas import GLCanvas, GLContext
19
+ from wx.dataview import TreeListCtrl
20
+ import wx.lib.ogl as ogl
21
+ from PIL import Image, ImageOps
22
+ from PIL.PngImagePlugin import PngInfo
23
+ import io
24
+ import json
25
+ import glob
26
+ import traceback
27
+ except ImportError as e:
28
+ print(e)
29
+ raise ImportError("Error importing wxPython, numpy, PIL, json, glob, traceback. Please check your installation.")
30
+
26
31
  try:
27
32
  from osgeo import gdal
28
33
  except ModuleNotFoundError:
29
34
  raise Exception("I can't find the 'gdal' package. You should get it from https://www.lfd.uci.edu/~gohlke/pythonlibs/")
30
- from time import sleep
31
- from datetime import timedelta
32
- from multiprocessing import Pool
33
- from pathlib import Path
34
- from time import sleep
35
+
36
+ try:
37
+ from time import sleep
38
+ from datetime import timedelta
39
+ from multiprocessing import Pool
40
+ from pathlib import Path
41
+ from time import sleep
42
+ except ImportError as e:
43
+ print(e)
44
+ raise ImportError("Error importing time, datetime, multiprocessing, pathlib. Please check your installation.")
35
45
 
36
46
  try:
37
47
  from OpenGL.GL import *
38
48
  from OpenGL.GLUT import *
39
- except:
49
+ except ImportError as e:
40
50
  msg=_('Error importing OpenGL library')
41
51
  msg+=_(' Python version : ' + sys.version)
42
52
  msg+=_(' Please check your version of opengl32.dll -- conflict may exist between different files present on your desktop')
43
53
  raise Exception(msg)
44
54
 
45
- import matplotlib.pyplot as plt
46
- from matplotlib.widgets import Button as mplButton
47
- from matplotlib.ticker import FormatStrFormatter
48
- from os import scandir, listdir
49
- from os.path import exists, join, normpath
50
- from pptx import Presentation
51
- import threading
52
- from enum import Enum
53
- from typing import Literal, Union
54
- import logging
55
-
56
- from .wolf_texture import genericImagetexture,imagetexture,Text_Image_Texture
57
- from .xyz_file import xyz_scandir, XYZFile
58
- from .mesh2d import wolf2dprev
59
- from .PyPalette import wolfpalette
60
- from .wolfresults_2D import Wolfresults_2D, views_2D
61
- from .PyTranslate import _
62
- from .PyVertex import cloud_vertices, getIfromRGB
63
- from .RatingCurve import SPWMIGaugingStations, SPWDCENNGaugingStations
64
- from .wolf_array import WOLF_ARRAY_MB, SelectionData, WolfArray, WolfArrayMB, CropDialog, header_wolf, WolfArrayMNAP, WOLF_ARRAY_FULL_SINGLE, WOLF_ARRAY_FULL_INTEGER8, WOLF_ARRAY_FULL_INTEGER16, WOLF_ARRAY_FULL_DOUBLE, WOLF_ARRAY_FULL_INTEGER
65
- from .PyParams import Wolf_Param, key_Param, Type_Param
66
- from .mesh2d.bc_manager import BcManager
67
- from .PyVertexvectors import *
68
- from .Results2DGPU import wolfres2DGPU
69
- from .PyCrosssections import crosssections, profile, Interpolator, Interpolators
70
- from .GraphNotebook import PlotNotebook
71
- from .lazviewer.laz_viewer import myviewer, read_laz, clip_data_xyz, xyz_laz_grids, choices_laz_colormap, Classification_LAZ
72
- from . import Lidar2002
73
- from .picc import Picc_data, Cadaster_data
74
- from .wolf_zi_db import ZI_Databse_Elt, PlansTerrier
75
- from .math_parser.calculator import Calculator
76
- from .wintab.wintab import Wintab
77
-
78
- # try:
79
- # from .hydrometry_hece.kiwis_hece import hydrometry_hece as hydrometry
80
- # except:
81
- # logging.debug(_('Hydrometry HECE module not found - Load hydrometry instead of hydrometry_hece'))
82
- # from .hydrometry.kiwis import hydrometry
83
-
84
- from .hydrometry.kiwis_wolfgui import hydrometry_wolfgui
85
-
86
- from .pyshields import get_d_cr
87
- from .pyviews import WolfViews
88
- from .PyConfig import handle_configuration_dialog, WolfConfiguration, ConfigurationKeys
89
- from .GraphProfile import ProfileNotebook
90
- from .pybridges import Bridges, Bridge, Weirs, Weir
91
- from .tools_mpl import *
92
- from .wolf_tiles import Tiles
93
- from .lagrangian.particle_system_ui import Particle_system_to_draw as Particle_system
94
- from .opengl.py3d import Wolf_Viewer3D
95
- from .pyGui1D import GuiNotebook1D
55
+ try:
56
+ import matplotlib.pyplot as plt
57
+ from matplotlib.widgets import Button as mplButton
58
+ from matplotlib.ticker import FormatStrFormatter
59
+ from os import scandir, listdir
60
+ from os.path import exists, join, normpath
61
+ from pptx import Presentation
62
+ import threading
63
+ from enum import Enum
64
+ from typing import Literal, Union
65
+ import logging
66
+ except ImportError as e:
67
+ print(e)
68
+ raise ImportError("Error importing matplotlib, os, threading, enum, typing, logging. Please check your installation.")
69
+
70
+ try:
71
+ from .wolf_texture import genericImagetexture,imagetexture,Text_Image_Texture
72
+ from .xyz_file import xyz_scandir, XYZFile
73
+ from .mesh2d import wolf2dprev
74
+ from .PyPalette import wolfpalette
75
+ from .wolfresults_2D import Wolfresults_2D, views_2D
76
+ from .PyTranslate import _
77
+ from .PyVertex import cloud_vertices, getIfromRGB
78
+ from .RatingCurve import SPWMIGaugingStations, SPWDCENNGaugingStations
79
+ from .wolf_array import WOLF_ARRAY_MB, SelectionData, WolfArray, WolfArrayMB, CropDialog, header_wolf, WolfArrayMNAP, WOLF_ARRAY_FULL_SINGLE, WOLF_ARRAY_FULL_INTEGER8, WOLF_ARRAY_FULL_INTEGER16, WOLF_ARRAY_FULL_DOUBLE, WOLF_ARRAY_FULL_INTEGER
80
+ from .PyParams import Wolf_Param, key_Param, Type_Param
81
+ from .mesh2d.bc_manager import BcManager
82
+ from .PyVertexvectors import *
83
+ from .Results2DGPU import wolfres2DGPU
84
+ from .PyCrosssections import crosssections, profile, Interpolator, Interpolators
85
+ from .GraphNotebook import PlotNotebook
86
+ from .lazviewer.laz_viewer import myviewer, read_laz, clip_data_xyz, xyz_laz_grids, choices_laz_colormap, Classification_LAZ
87
+ from . import Lidar2002
88
+ from .picc import Picc_data, Cadaster_data
89
+ from .wolf_zi_db import ZI_Databse_Elt, PlansTerrier
90
+ from .math_parser.calculator import Calculator
91
+ from .wintab.wintab import Wintab
92
+ except ImportError as e:
93
+ print(e)
94
+ raise ImportError("Error importing wolf_texture, xyz_file, mesh2d, PyPalette, wolfresults_2D, PyTranslate, PyVertex, RatingCurve, wolf_array, PyParams, mesh2d.bc_manager, PyVertexvectors, Results2DGPU, PyCrosssections, GraphNotebook, lazviewer, picc, wolf_zi_db, math_parser.calculator, wintab. Please check your installation.")
95
+
96
+ try:
97
+ from .hydrometry.kiwis_wolfgui import hydrometry_wolfgui
98
+ except ImportError as e:
99
+ print(e)
100
+ raise ImportError("Error importing hydrometry.kiwis_wolfgui. Please check your installation.")
101
+
102
+ try:
103
+ from .pyshields import get_d_cr
104
+ from .pyviews import WolfViews
105
+ from .PyConfig import handle_configuration_dialog, WolfConfiguration, ConfigurationKeys
106
+ from .GraphProfile import ProfileNotebook
107
+ from .pybridges import Bridges, Bridge, Weirs, Weir
108
+ from .tools_mpl import *
109
+ from .wolf_tiles import Tiles
110
+ from .lagrangian.particle_system_ui import Particle_system_to_draw as Particle_system
111
+ from .opengl.py3d import Wolf_Viewer3D
112
+ from .pyGui1D import GuiNotebook1D
113
+ except ImportError as e:
114
+ print(e)
115
+ raise ImportError("Error importing pyshields, pyviews, PyConfig, GraphProfile, pybridges, tools_mpl, wolf_tiles, lagrangian.particle_system_ui, opengl.py3d, pyGui1D. Please check your installation.")
96
116
 
97
117
  ID_SELECTCS = 1000
98
118
  ID_SORTALONG = 1001
@@ -33,6 +33,13 @@ def main():
33
33
  ret += 'Wolfhece not installed properly\n Retry installation : pip install wolfhece or pip install wolfhece --upgrade\n\n'
34
34
  ret += 'Error : ' + str(e) + '\n\n'
35
35
 
36
+ try:
37
+ from ..lazviewer.processing.estimate_normals.estimate_normals import estimate_normals
38
+ except ImportError as e:
39
+ ret += 'Could not import estimate_normals\n\n'
40
+ ret += 'Wolfhece not installed properly\n Please install the VC++ redistributable\n from https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads\n\n'
41
+ ret += 'Error : ' + str(e) + '\n\n'
42
+
36
43
  print(ret)
37
44
 
38
45
  if __name__=='__main__':
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 = 62
8
+ self.patch = 63
9
9
 
10
10
  def __str__(self):
11
11
 
@@ -3,4 +3,11 @@ from .viewer.viewer import *
3
3
  from .points.points import *
4
4
  from .points.expr import *
5
5
  from scipy.spatial import kdtree
6
- from .processing.estimate_normals.estimate_normals import estimate_normals
6
+
7
+ try:
8
+ from .processing.estimate_normals.estimate_normals import estimate_normals
9
+ except Exception as e:
10
+ print(e)
11
+ print('Could not import estimate_normals')
12
+ print('Please installed the VC++ redistributable from https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads')
13
+
wolfhece/wolf_array.py CHANGED
@@ -49,16 +49,39 @@ from copy import deepcopy
49
49
  from osgeo import gdal
50
50
  from enum import Enum
51
51
 
52
+ try:
53
+ from .Coordinates_operations import reproject_and_resample_raster
54
+ except ImportError as e:
55
+ print(e)
56
+ raise Exception(_('Error importing modules'))
52
57
 
53
- from .Coordinates_operations import reproject_and_resample_raster
54
- from .PyTranslate import _
55
- from .GraphNotebook import PlotPanel
56
- from .CpGrid import CpGrid
57
- from .drawing_obj import Element_To_Draw
58
+ try:
59
+ from .PyTranslate import _
60
+ except ImportError as e:
61
+ print(e)
62
+ raise Exception(_('Error importing modules'))
63
+
64
+ try:
65
+ from .GraphNotebook import PlotPanel
66
+ except ImportError as e:
67
+ print(e)
68
+ raise Exception(_('Error importing modules GraphNotebook'))
69
+
70
+ try:
71
+ from .CpGrid import CpGrid
72
+ except ImportError as e:
73
+ print(e)
74
+ raise Exception(_('Error importing modules'))
75
+
76
+ try:
77
+ from .drawing_obj import Element_To_Draw
78
+ except ImportError as e:
79
+ print(e)
80
+ raise Exception(_('Error importing modules'))
58
81
 
59
82
  try:
60
83
  from .libs import wolfogl
61
- except ImportError:
84
+ except ImportError as e:
62
85
  msg=_('Error importing wolfogl.pyd')
63
86
  msg+=_(' Python version : ' + sys.version)
64
87
  msg+=_(' If your Python version is not 3.10.x, you need to get an adapted library in wolfhece library path libs')
@@ -68,11 +91,15 @@ except ImportError:
68
91
 
69
92
  raise Exception(msg)
70
93
 
71
- from .xyz_file import XYZFile
72
- from .PyPalette import wolfpalette
73
- from .PyVertexvectors import Zones, vector, wolfvertex, zone, Triangulation
74
- from .PyVertex import cloud_vertices
75
- from .opengl.py3d import Cache_WolfArray_plot3D, WolfArray_plot3D
94
+ try:
95
+ from .xyz_file import XYZFile
96
+ from .PyPalette import wolfpalette
97
+ from .PyVertexvectors import Zones, vector, wolfvertex, zone, Triangulation
98
+ from .PyVertex import cloud_vertices
99
+ from .opengl.py3d import Cache_WolfArray_plot3D, WolfArray_plot3D
100
+ except ImportError as e:
101
+ print(e)
102
+ raise Exception(_('Error importing modules'))
76
103
 
77
104
  WOLF_ARRAY_HILLSHAPE = -1
78
105
  WOLF_ARRAY_FULL_SINGLE = 1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wolfhece
3
- Version: 2.1.62
3
+ Version: 2.1.63
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: msvc-runtime
16
17
  Requires-Dist: colorlog==6.7.*
17
18
  Requires-Dist: intel-fortran-rt
18
19
  Requires-Dist: scikit-learn
@@ -1,13 +1,13 @@
1
1
  wolfhece/Coordinates_operations.py,sha256=YyWlAwKManb-ReQrmP37rEXxehunUCihmkeDYX6qTAQ,8037
2
2
  wolfhece/CpGrid.py,sha256=ke4n1khTUoed2asJl1GR25PsEkI4TpiBDCo4u0aSo9M,10658
3
- wolfhece/GraphNotebook.py,sha256=V1_Ak4F_hoIpKm2GAakuyKOALhujjIXB5FwzFHtM5-8,28021
3
+ wolfhece/GraphNotebook.py,sha256=2TR8qjEwpMtl34QWgYNVe_PgTnuwhUxT5f9Y2zrmN2U,28257
4
4
  wolfhece/GraphProfile.py,sha256=OCgJo0YFFBI6H1z-5egJsOOoWF_iziiza0-bbPejNMc,69656
5
5
  wolfhece/Lidar2002.py,sha256=bX-nIzdpjD7rOfEgJpTeaW6rIdAXwDp_z4YTM9CgANY,6068
6
6
  wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
7
7
  wolfhece/Model1D.py,sha256=uL1DJVmDI2xVSE7H6n3icn3QbsPtTHeg8E-6wkDloKw,476914
8
8
  wolfhece/PyConfig.py,sha256=FB8u0belXOXTb03Ln6RdVWvMgjzi3oGPCmw2dWa3lNg,8332
9
9
  wolfhece/PyCrosssections.py,sha256=FnmM9DWY_SAF2EDH9Gu2PojXNtSTRF4-aYQuAAJXBh4,112771
10
- wolfhece/PyDraw.py,sha256=OWcScU6OB2PSOizOBFc7ilSwpPrWfDYBhJAIxQ7lA-Q,407210
10
+ wolfhece/PyDraw.py,sha256=hcQbGY8IUnVY-Kf_4l-bHkYxIry2z0WKqt15M3rrDfY,408502
11
11
  wolfhece/PyGui.py,sha256=oBIBpgBQRR_XXucKE5-RFrtqKj0DRg9VlUCRo8Mzalc,105009
12
12
  wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
13
13
  wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
@@ -48,7 +48,7 @@ wolfhece/pywalous.py,sha256=yRaWJjKckXef1d9D5devP0yFHC9uc6kRV4G5x9PNq9k,18972
48
48
  wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
49
49
  wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
50
50
  wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
51
- wolfhece/wolf_array.py,sha256=rHuPaSRTsTxQll8luqk5fdnAWRrEh73e30rdxjxA2Ls,375234
51
+ wolfhece/wolf_array.py,sha256=igy6c79MXgrM5xxpOjx79f24qSdk40Rgag-vcw0eCKU,375881
52
52
  wolfhece/wolf_hist.py,sha256=7jeVrgSkM3ErJO6SRMH_PGzfLjIdw8vTy87kesldggk,3582
53
53
  wolfhece/wolf_texture.py,sha256=DS5eobLxrq9ljyebYfpMSQPn8shkUAZZVfqrOKN_QUU,16951
54
54
  wolfhece/wolf_tiles.py,sha256=2Ho2I20rHRY81KXxjgLOYISdF4OkJ2d6omeY4shDoGI,10386
@@ -68,11 +68,11 @@ wolfhece/apps/WolfPython.png,sha256=K3dcbeZUiJCFNwOAAlGMaRGLJ56yM8WD2I_0bk0xT1g,
68
68
  wolfhece/apps/WolfPython2.png,sha256=VMPV-M-3BCOg8zOJss8bXwPmzRYZy8Fo-XtnVYNgbaw,618073
69
69
  wolfhece/apps/WolfPython3.png,sha256=3G84zx14HnlB9YXMY4VUAO7IB3eu7JFvi4Kpmc_4zBE,403298
70
70
  wolfhece/apps/__init__.py,sha256=OzzKItATWV0mDkz_LC2L3w5sgT2rt8ExXXCbR_FwvlY,24
71
- wolfhece/apps/check_install.py,sha256=SG024u18G7VRLKynbp7DKD1jImtHwuWwN4bJWHm-YHE,1271
71
+ wolfhece/apps/check_install.py,sha256=Xoi_d8MzKzNAy2xqEpERdsqgRPu0hbBWukI0WkIYzD0,1701
72
72
  wolfhece/apps/curvedigitizer.py,sha256=Yps4bcayzbsz0AoVc_dkSk35dEhhn_esIBy1Ziefgmk,5334
73
73
  wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
74
74
  wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
75
- wolfhece/apps/version.py,sha256=2Eqfk37LOVeJu7LaxMXP5FneU0J06xuUj1Lm1dSfARM,388
75
+ wolfhece/apps/version.py,sha256=S884W0AFFwHVDK4rOm8wy0J-K8Ne5INr1lVKsRKri6A,388
76
76
  wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
77
77
  wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
78
78
  wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
@@ -144,7 +144,7 @@ wolfhece/lagrangian/particle_system.py,sha256=ZwlgwH8JuBh3KBzxBZzSZi6ya3ftvk-4P3
144
144
  wolfhece/lagrangian/particle_system_ui.py,sha256=9timXQdnW2i-qsME-psMvTt9_o0qX5sUB9EfMmP8ytY,29602
145
145
  wolfhece/lagrangian/particles.py,sha256=S52_-3rzgVhift6l4Gznvsf_RTggzvNaD1dPvQUrFG0,9954
146
146
  wolfhece/lagrangian/velocity_field.py,sha256=oGVjNm98gEpawreFIrC1lDyC5bEhkk2CsyYAlF1Kq50,10574
147
- wolfhece/lazviewer/__init__.py,sha256=0SNDEKGad6e2AwxjalcPqb2bdW6crmXQFxWUY13PiVU,223
147
+ wolfhece/lazviewer/__init__.py,sha256=lz60EpQOBZ-zjvYzff6Y11jzAmC7mjOaxRYAfoqizQs,473
148
148
  wolfhece/lazviewer/_add_path.py,sha256=GDwPnzHuGRXGriDNcu1SQ6HetFDGIApeAQZEzYArGvI,605
149
149
  wolfhece/lazviewer/laz_viewer.py,sha256=zuXMSh50HZGcduD5dWsrxrNu9qcxg-NfQr6Rg5sKxO8,42746
150
150
  wolfhece/lazviewer/libs/Qt5Core.dll,sha256=sTJ_ctYFY9KHMNytF-lzH_078zIvnKTjN-71FDkOWPw,4924928
@@ -283,8 +283,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
283
283
  wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
284
284
  wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
285
  wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
286
- wolfhece-2.1.62.dist-info/METADATA,sha256=xLug9OiofWGaHbIy0NuNvpS_V4S2ujMvlRV1JVz3Byw,2541
287
- wolfhece-2.1.62.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
288
- wolfhece-2.1.62.dist-info/entry_points.txt,sha256=Q5JuIWV4odeIJI3qc6fV9MwRoz0ezqPVlFC1Ppm_vdQ,395
289
- wolfhece-2.1.62.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
290
- wolfhece-2.1.62.dist-info/RECORD,,
286
+ wolfhece-2.1.63.dist-info/METADATA,sha256=ApSF782MQeDeIKrxEhyuiZAYmL9UV2h5IQ96kHtB9rg,2570
287
+ wolfhece-2.1.63.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
288
+ wolfhece-2.1.63.dist-info/entry_points.txt,sha256=Q5JuIWV4odeIJI3qc6fV9MwRoz0ezqPVlFC1Ppm_vdQ,395
289
+ wolfhece-2.1.63.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
290
+ wolfhece-2.1.63.dist-info/RECORD,,