wolfhece 2.1.80__py3-none-any.whl → 2.1.82__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 +9 -6
- wolfhece/PyGui.py +9 -1
- wolfhece/PyVertexvectors.py +2 -2
- wolfhece/apps/acceptability.py +1 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/gpuview.py +2 -0
- wolfhece/mesh2d/wolf2dprev.py +2 -2
- wolfhece/pyviews.py +30 -5
- wolfhece/wolf_array.py +30 -4
- wolfhece/wolfresults_2D.py +22 -8
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.82.dist-info}/METADATA +1 -1
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.82.dist-info}/RECORD +15 -15
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.82.dist-info}/WHEEL +1 -1
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.82.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.82.dist-info}/top_level.txt +0 -0
wolfhece/PyDraw.py
CHANGED
@@ -9602,6 +9602,14 @@ class WolfMapViewer(wx.Frame):
|
|
9602
9602
|
|
9603
9603
|
return self.canvas.SetCurrent(self.context)
|
9604
9604
|
|
9605
|
+
def _set_gl_projection_matrix(self):
|
9606
|
+
glMatrixMode(GL_PROJECTION)
|
9607
|
+
glLoadIdentity()
|
9608
|
+
glOrtho(self.xmin, self.xmax, self.ymin, self.ymax, -99999, 99999)
|
9609
|
+
|
9610
|
+
glMatrixMode(GL_MODELVIEW)
|
9611
|
+
glLoadIdentity()
|
9612
|
+
|
9605
9613
|
def Paint(self):
|
9606
9614
|
""" Dessin des éléments ajoutés au viewer """
|
9607
9615
|
|
@@ -9626,12 +9634,7 @@ class WolfMapViewer(wx.Frame):
|
|
9626
9634
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
|
9627
9635
|
glViewport(0, 0, int(width), int(height))
|
9628
9636
|
|
9629
|
-
|
9630
|
-
glLoadIdentity()
|
9631
|
-
glOrtho(self.xmin, self.xmax, self.ymin, self.ymax, -99999, 99999)
|
9632
|
-
|
9633
|
-
glMatrixMode(GL_MODELVIEW)
|
9634
|
-
glLoadIdentity()
|
9637
|
+
self._set_gl_projection_matrix()
|
9635
9638
|
|
9636
9639
|
# dessin du background
|
9637
9640
|
self._plotting(draw_type.WMSBACK)
|
wolfhece/PyGui.py
CHANGED
@@ -875,6 +875,7 @@ class Wolf2DModel(GenMapManager):
|
|
875
875
|
super(Wolf2DModel, self).__init__(*args, **kw)
|
876
876
|
|
877
877
|
self._ref_block = None
|
878
|
+
self._prop_frame = None
|
878
879
|
|
879
880
|
# Gauging stations - SPW
|
880
881
|
self.SPWstations = SPWMIGaugingStations()
|
@@ -957,7 +958,7 @@ class Wolf2DModel(GenMapManager):
|
|
957
958
|
logging.info(_('Creating GUI'))
|
958
959
|
|
959
960
|
# Initilisation d'une simulation 2D sur base des fichiers
|
960
|
-
self.sim = prev_sim2D(self.filenamegen)
|
961
|
+
self.sim:prev_sim2D = prev_sim2D(self.filenamegen)
|
961
962
|
|
962
963
|
# Liste des objets à ajouter au GUI
|
963
964
|
self.fines_array=[]
|
@@ -1185,6 +1186,11 @@ class Wolf2DModel(GenMapManager):
|
|
1185
1186
|
|
1186
1187
|
if self.wx_exists:
|
1187
1188
|
|
1189
|
+
if self._prop_frame is not None:
|
1190
|
+
self._prop_frame.CenterOnScreen()
|
1191
|
+
self._prop_frame.Show()
|
1192
|
+
return
|
1193
|
+
|
1188
1194
|
# Création d'un wx Frame pour les paramètres
|
1189
1195
|
self._prop_frame = wx.Frame(self,
|
1190
1196
|
title=_('Parameters') + self.filenamegen,
|
@@ -1594,6 +1600,8 @@ class Wolf2DModel(GenMapManager):
|
|
1594
1600
|
self.mapviewer.add_object(which='res2d',
|
1595
1601
|
filename=self.filenamegen,
|
1596
1602
|
id='Results')
|
1603
|
+
self.mapviewer.menu_wolf2d()
|
1604
|
+
self.mapviewer.Refresh()
|
1597
1605
|
|
1598
1606
|
def _results2ic(self, e:wx.EVT_BUTTON):
|
1599
1607
|
""" Choose one result as initial conditions """
|
wolfhece/PyVertexvectors.py
CHANGED
@@ -2643,7 +2643,7 @@ class zone:
|
|
2643
2643
|
|
2644
2644
|
if prep:
|
2645
2645
|
if len(self.myvectors) == 0:
|
2646
|
-
logging.
|
2646
|
+
logging.debug(_('No vector in zone -- {}').format(self.myname))
|
2647
2647
|
return
|
2648
2648
|
|
2649
2649
|
try:
|
@@ -2663,7 +2663,7 @@ class zone:
|
|
2663
2663
|
logging.error(_('OpenGL error in zone.plot'))
|
2664
2664
|
else:
|
2665
2665
|
if len(self.myvectors) == 0:
|
2666
|
-
logging.
|
2666
|
+
logging.debug(_('No vector in zone -- {}').format(self.myname))
|
2667
2667
|
return
|
2668
2668
|
|
2669
2669
|
if self.idgllist!=-99999:
|
wolfhece/apps/acceptability.py
CHANGED
wolfhece/apps/version.py
CHANGED
wolfhece/gpuview.py
CHANGED
@@ -522,6 +522,8 @@ class VectorField(Element_To_Draw):
|
|
522
522
|
# broken.
|
523
523
|
glMatrixMode(GL_PROJECTION)
|
524
524
|
# glPopMatrix()
|
525
|
+
# glLoadIdentity()
|
526
|
+
self.get_mapviewer()._set_gl_projection_matrix()
|
525
527
|
|
526
528
|
def _plot(self, projection_matrix):
|
527
529
|
assert self._gl_texture is not None, "Did you set the data ?"
|
wolfhece/mesh2d/wolf2dprev.py
CHANGED
@@ -9488,7 +9488,7 @@ class prev_sim2D():
|
|
9488
9488
|
""" Common mask for multiblock arrays """
|
9489
9489
|
|
9490
9490
|
if self.mymnap is not None:
|
9491
|
-
return
|
9491
|
+
return self.mymnap.get_all_masks()
|
9492
9492
|
else:
|
9493
9493
|
return None
|
9494
9494
|
|
@@ -11101,7 +11101,7 @@ class prev_sim2D():
|
|
11101
11101
|
which = '.' + which
|
11102
11102
|
|
11103
11103
|
if Path(self.filenamegen + which).exists():
|
11104
|
-
myarray =WolfArrayMB()
|
11104
|
+
myarray = WolfArrayMB()
|
11105
11105
|
myarray.set_header(self.get_header_MB())
|
11106
11106
|
myarray.filename = self.filenamegen+which
|
11107
11107
|
myarray.read_data()
|
wolfhece/pyviews.py
CHANGED
@@ -27,8 +27,17 @@ class WolfViews(Element_To_Draw):
|
|
27
27
|
|
28
28
|
super().__init__(idx, plotted, mapviewer, need_for_wx)
|
29
29
|
|
30
|
-
self.view = []
|
31
|
-
self.pals = []
|
30
|
+
self.view = [] # list of elements to plot
|
31
|
+
self.pals = [] # list of palettes to use for the elements
|
32
|
+
self.fix = [] # list of boolean to fix some elements - avoid to delete OpenGL lists during "delete_lists"
|
33
|
+
|
34
|
+
def delete_lists(self):
|
35
|
+
""" Delete the lists of elements and palettes."""
|
36
|
+
|
37
|
+
for cur, fix in zip(self.view, self.fix):
|
38
|
+
if not fix:
|
39
|
+
if isinstance(cur, WolfArray) or isinstance(cur, WolfArrayMB):
|
40
|
+
cur.delete_lists()
|
32
41
|
|
33
42
|
def read_from_file(self, fn):
|
34
43
|
myproject = Wolf_Param(None, filename=fn, toShow=False)
|
@@ -174,7 +183,7 @@ class WolfViews(Element_To_Draw):
|
|
174
183
|
else:
|
175
184
|
cur.mapviewer = newmapviewer
|
176
185
|
|
177
|
-
def add_elemt(self, added_elemt, pal=None):
|
186
|
+
def add_elemt(self, added_elemt, pal= None, fix= False):
|
178
187
|
""" Add an element to the view.
|
179
188
|
|
180
189
|
:param added_elemt: Element to add.
|
@@ -185,8 +194,9 @@ class WolfViews(Element_To_Draw):
|
|
185
194
|
|
186
195
|
self.view.append(added_elemt)
|
187
196
|
self.pals.append(pal)
|
197
|
+
self.fix.append(fix)
|
188
198
|
|
189
|
-
def add_elemts(self, added_elemts: list, pals=None):
|
199
|
+
def add_elemts(self, added_elemts: list, pals=None, fixes=None):
|
190
200
|
""" Add a list of elements to the view.
|
191
201
|
|
192
202
|
:param added_elemts: List of elements to add.
|
@@ -213,6 +223,21 @@ class WolfViews(Element_To_Draw):
|
|
213
223
|
|
214
224
|
self.pals += pals
|
215
225
|
|
226
|
+
if fixes is None:
|
227
|
+
self.fix += [False]*len(added_elemts)
|
228
|
+
else:
|
229
|
+
if len(fixes) != len(added_elemts):
|
230
|
+
logging.warning('The number of fixes must be the same as the number of elements.')
|
231
|
+
|
232
|
+
if len(fixes) < len(added_elemts):
|
233
|
+
logging.warning('The missing fixes will be set to None.')
|
234
|
+
fixes += [False]*(len(added_elemts)-len(fixes))
|
235
|
+
else:
|
236
|
+
logging.warning('The extra fixes will be ignored.')
|
237
|
+
fixes = fixes[:len(added_elemts)]
|
238
|
+
|
239
|
+
self.fix += fixes
|
240
|
+
|
216
241
|
def plot(self, sx=None, sy=None, xmin=None, ymin=None, xmax=None, ymax=None, size=None):
|
217
242
|
""" Plot the view. """
|
218
243
|
|
@@ -236,7 +261,7 @@ class WolfViews(Element_To_Draw):
|
|
236
261
|
cur.mypal.defaultgray_minmax(cur.array)
|
237
262
|
cur.rgb = cur.mypal.get_rgba(cur.array)
|
238
263
|
cur.plot(sx, sy, xmin, ymin, xmax, ymax)
|
239
|
-
elif VERSION_RGB
|
264
|
+
elif VERSION_RGB in [2,3]:
|
240
265
|
if pal is None:
|
241
266
|
# using the current palette
|
242
267
|
cur.plot(sx, sy, xmin, ymin, xmax, ymax)
|
wolfhece/wolf_array.py
CHANGED
@@ -8277,7 +8277,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
8277
8277
|
self._tmp_float32 = None
|
8278
8278
|
self.rgb = self.mypal.get_rgba(self.array)
|
8279
8279
|
if self.nbx * self.nby > 1_000_000 : logging.info(_('Colors computed'))
|
8280
|
-
elif VERSION_RGB
|
8280
|
+
elif VERSION_RGB in [2 ,3]:
|
8281
8281
|
if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
|
8282
8282
|
WOLF_ARRAY_FULL_INTEGER8,
|
8283
8283
|
WOLF_ARRAY_FULL_INTEGER16,
|
@@ -8993,6 +8993,7 @@ class WolfArrayMB(WolfArray):
|
|
8993
8993
|
|
8994
8994
|
super().__init__(fname, mold, masknull, crop, whichtype, preload, create, mapviewer, nullvalue, srcheader)
|
8995
8995
|
|
8996
|
+
self.mngselection = SelectionDataMB(self)
|
8996
8997
|
self._active_blocks = 0
|
8997
8998
|
|
8998
8999
|
if self.myblocks is None:
|
@@ -9514,8 +9515,8 @@ class WolfArrayMB(WolfArray):
|
|
9514
9515
|
self.mimic_plotdata()
|
9515
9516
|
|
9516
9517
|
# Plot selected nodes
|
9517
|
-
if self.
|
9518
|
-
self.
|
9518
|
+
if self.SelectionData is not None:
|
9519
|
+
self.SelectionData.plot_selection()
|
9519
9520
|
|
9520
9521
|
# Plot zones attached to array
|
9521
9522
|
if self.myops is not None:
|
@@ -10094,7 +10095,13 @@ class WolfArrayMNAP(WolfArrayMB):
|
|
10094
10095
|
myarray.append(newline)
|
10095
10096
|
decal += 1
|
10096
10097
|
|
10097
|
-
curarray.array = np.flipud(np.ma.asarray(myarray, order='F')).transpose()
|
10098
|
+
curarray.array = np.flipud(np.ma.asarray(myarray, order='F', dtype=np.int8)).transpose()
|
10099
|
+
|
10100
|
+
# curarray.array[curarray.array < 0] = 0
|
10101
|
+
|
10102
|
+
assert curarray.dtype == np.int8, "Type de block incorrect"
|
10103
|
+
assert curarray.array.dtype == np.int8
|
10104
|
+
assert curarray.wolftype == WOLF_ARRAY_FULL_INTEGER8, "Type de block incorrect"
|
10098
10105
|
|
10099
10106
|
#Lecture du contour de block
|
10100
10107
|
curzone = zone(name=curkey)
|
@@ -10158,3 +10165,22 @@ class WolfArrayMNAP(WolfArrayMB):
|
|
10158
10165
|
|
10159
10166
|
# Imposition du type de stockage
|
10160
10167
|
self.wolftype = WOLF_ARRAY_MNAP_INTEGER
|
10168
|
+
|
10169
|
+
def get_one_mask(self, which:int | str):
|
10170
|
+
"""
|
10171
|
+
Return the mask of the block `which`
|
10172
|
+
"""
|
10173
|
+
|
10174
|
+
if isinstance(which, int):
|
10175
|
+
key = getkeyblock(which)
|
10176
|
+
else:
|
10177
|
+
key = which
|
10178
|
+
|
10179
|
+
return self.myblocks[key].array.data != 1
|
10180
|
+
|
10181
|
+
def get_all_masks(self):
|
10182
|
+
"""
|
10183
|
+
Return all masks
|
10184
|
+
"""
|
10185
|
+
|
10186
|
+
return [curblock.array.data != 1 for curblock in self.myblocks.values()]
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -2026,6 +2026,19 @@ class OneWolfResult:
|
|
2026
2026
|
|
2027
2027
|
return myval,mylab
|
2028
2028
|
|
2029
|
+
def delete_lists(self):
|
2030
|
+
"""
|
2031
|
+
Reset des listes OpenGL de la matrice/vue courante
|
2032
|
+
"""
|
2033
|
+
|
2034
|
+
if self._which_current in VIEWS_VECTOR_FIELD:
|
2035
|
+
self._view.delete_lists()
|
2036
|
+
elif self._which_current in VIEWS_COMPLEX:
|
2037
|
+
self._view.delete_lists()
|
2038
|
+
else:
|
2039
|
+
self._current.delete_lists()
|
2040
|
+
|
2041
|
+
|
2029
2042
|
class Wolfresults_2D(Element_To_Draw):
|
2030
2043
|
"""
|
2031
2044
|
Manipulation des résultats d'un modèle WOLF2D en multiblocs
|
@@ -2265,7 +2278,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2265
2278
|
""" Common mask for multiblock arrays """
|
2266
2279
|
|
2267
2280
|
if self.mymnap is not None:
|
2268
|
-
return
|
2281
|
+
return self.mymnap.get_all_masks()
|
2269
2282
|
else:
|
2270
2283
|
return None
|
2271
2284
|
|
@@ -2806,6 +2819,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2806
2819
|
self.mimic_plotdata()
|
2807
2820
|
|
2808
2821
|
if self.mapviewer is not None:
|
2822
|
+
self.reset_plot()
|
2809
2823
|
self.mapviewer.Refresh()
|
2810
2824
|
|
2811
2825
|
def allocate_ressources(self):
|
@@ -4062,14 +4076,14 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4062
4076
|
Retourne la valeur min et max de la topo, de la hauteur d'eau ou de la matrice courante
|
4063
4077
|
"""
|
4064
4078
|
if which == views_2D.TOPOGRAPHY:
|
4065
|
-
min = np.min([np.min(curblock.top.array) for curblock in self.myblocks.values()])
|
4066
|
-
max = np.max([np.max(curblock.top.array) for curblock in self.myblocks.values()])
|
4079
|
+
min = np.ma.min([np.ma.min(curblock.top.array) for curblock in self.myblocks.values()])
|
4080
|
+
max = np.ma.max([np.ma.max(curblock.top.array) for curblock in self.myblocks.values()])
|
4067
4081
|
elif which == views_2D.WATERDEPTH:
|
4068
|
-
min = np.min([np.min(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4069
|
-
max = np.max([np.max(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4082
|
+
min = np.ma.min([np.ma.min(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4083
|
+
max = np.ma.max([np.ma.max(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4070
4084
|
elif which == 'current':
|
4071
|
-
min = np.min([np.min(curblock.current.array) for curblock in self.myblocks.values()])
|
4072
|
-
max = np.max([np.max(curblock.current.array) for curblock in self.myblocks.values()])
|
4085
|
+
min = np.ma.min([np.ma.min(curblock.current.array) for curblock in self.myblocks.values()])
|
4086
|
+
max = np.ma.max([np.ma.max(curblock.current.array) for curblock in self.myblocks.values()])
|
4073
4087
|
|
4074
4088
|
return min,max
|
4075
4089
|
|
@@ -4146,7 +4160,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4146
4160
|
Reset des listes OpenGL de la matrice courante
|
4147
4161
|
"""
|
4148
4162
|
for curblock in self.myblocks.values():
|
4149
|
-
curblock.
|
4163
|
+
curblock.delete_lists()
|
4150
4164
|
|
4151
4165
|
def mimic_plotdata(self, plotting=False):
|
4152
4166
|
"""
|
@@ -7,8 +7,8 @@ wolfhece/ManageParams.py,sha256=EeuUI5Vvh9ixCvYf8YShMC1s1Yacc7OxOCN7q81gqiQ,517
|
|
7
7
|
wolfhece/Model1D.py,sha256=SI4oNF_J3MdjiWZoizS8kuRXLMVyymX9dYfYJNVCQVI,476989
|
8
8
|
wolfhece/PyConfig.py,sha256=FB8u0belXOXTb03Ln6RdVWvMgjzi3oGPCmw2dWa3lNg,8332
|
9
9
|
wolfhece/PyCrosssections.py,sha256=FnmM9DWY_SAF2EDH9Gu2PojXNtSTRF4-aYQuAAJXBh4,112771
|
10
|
-
wolfhece/PyDraw.py,sha256
|
11
|
-
wolfhece/PyGui.py,sha256=
|
10
|
+
wolfhece/PyDraw.py,sha256=-Qq81Eo4BDNDTinvjboJFY3gadWQNPyZER06sCtsPCw,422883
|
11
|
+
wolfhece/PyGui.py,sha256=HY0beOMSp1JEyq8-vfVynzVrmKxvaO_sJSMwlNqCNrg,105289
|
12
12
|
wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
|
13
13
|
wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
|
14
14
|
wolfhece/PyPalette.py,sha256=3ehK6H2PvqSe0zICR1HyNs6KQokR1DmnAh4LwYnLIcU,28009
|
@@ -16,7 +16,7 @@ wolfhece/PyParams.py,sha256=LGt9uBFRVeS0F_kObJw8bPkWFqYSzf5pUTscxVU5Mxo,97725
|
|
16
16
|
wolfhece/PyPictures.py,sha256=m1kY0saW6Y9Q0bDCo47lW6XxDkBrbQG-Fd8uVn8G5ic,2514
|
17
17
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
18
18
|
wolfhece/PyVertex.py,sha256=MtZVjIWIi62QX_oqNosb56xPgjhOGVeGz-XsD82tsNg,40614
|
19
|
-
wolfhece/PyVertexvectors.py,sha256=
|
19
|
+
wolfhece/PyVertexvectors.py,sha256=CHeZZ7hYcPf-9ljJSQa8rlDvFB344ZTRCvXM00xoeQ0,238667
|
20
20
|
wolfhece/PyWMS.py,sha256=fyyzm2HFwq8aRwVYHKiBatcZOeKnFi6DWhv4nfscySQ,4602
|
21
21
|
wolfhece/RatingCurve.py,sha256=bUjIrQjvIjkD4V-z8bZmA6pe1ILtYNM0-3fT6YUY1RU,22498
|
22
22
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
@@ -30,7 +30,7 @@ wolfhece/color_constants.py,sha256=Snc5RX11Ydi756EkBp_83C7DiAQ_Z1aHD9jFIBsosAU,3
|
|
30
30
|
wolfhece/drawing_obj.py,sha256=7vY04B6r08nurTTFmBXHyR5tVIF1YzAEw_uz4pqTDIw,4233
|
31
31
|
wolfhece/flow_SPWMI.py,sha256=XDAelwAY-3rYOR0WKW3fgYJ_r8DU4IP6Y5xULW421tk,20956
|
32
32
|
wolfhece/friction_law.py,sha256=MtZJLo-pTj3-Fw-w12z1LSgSIDrH-JGR0iD9wer_fpQ,5498
|
33
|
-
wolfhece/gpuview.py,sha256=
|
33
|
+
wolfhece/gpuview.py,sha256=ggFoxBntUjHqsoxwTZQOE-UsbtC8YAIwZD1i3veAe-o,24204
|
34
34
|
wolfhece/import_ascfiles.py,sha256=6Zl8qBR9c6VtyziookQ8YE9KC0GtW_J9WFt5ubyGp-s,4465
|
35
35
|
wolfhece/ins.py,sha256=0aU1mo4tYbw64Gwzrqbh-NCTH1tukmk0mpPHjRPHZXU,12661
|
36
36
|
wolfhece/irm_qdf.py,sha256=gDuM9sEowQndLTL8vzbZW879M1go2xiKeE4EAJD2bA4,16532
|
@@ -43,18 +43,18 @@ wolfhece/pydike.py,sha256=hPBQsmSTW4QAp1wcOzb-TL3L7eet2WT1sJx2q-WNQ-Q,2241
|
|
43
43
|
wolfhece/pylogging.py,sha256=4TI8hgBB65z-zpvU5Rfa2jkPXPhJaqXjHVPwbcdzTNc,4528
|
44
44
|
wolfhece/pypolygons_scen.py,sha256=x-tnYLNq3MPV51NbaU14trgRj8qyUyOrMdF1zDsUX3I,37444
|
45
45
|
wolfhece/pyshields.py,sha256=7k-qe2EJgr9fJE62jyPmlWQwRj8T0DK4iuMU844ZhYs,23281
|
46
|
-
wolfhece/pyviews.py,sha256=
|
46
|
+
wolfhece/pyviews.py,sha256=5Hqqo9MRw1eiomYkmc7QywNu1KmEkytLJG-wH_aG38Y,13748
|
47
47
|
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=
|
51
|
+
wolfhece/wolf_array.py,sha256=L6OV70nFSmzfO_beNbPRQ_VoklC_cx6fyhoslI3AMXg,401812
|
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
|
55
55
|
wolfhece/wolf_vrt.py,sha256=89XoDhCJMHiwPQUuOduxtTRKuIa8RDxgNqX65S4xp9M,10569
|
56
56
|
wolfhece/wolf_zi_db.py,sha256=baE0niMCzybWGSvPJc5FNxo9ZxsGfU4p-FmfiavFHAs,12967
|
57
|
-
wolfhece/wolfresults_2D.py,sha256=
|
57
|
+
wolfhece/wolfresults_2D.py,sha256=Iq_eOcQ_UkgfWN386oFt_VZysMt8uyYrqd36iAkkM2Q,168473
|
58
58
|
wolfhece/xyz_file.py,sha256=Se4nCPwYAYLSA5i0zsbnZUKoAMAD0mK1FJea5WSZUkk,5755
|
59
59
|
wolfhece/acceptability/Parallels.py,sha256=h4tu3SpC_hR5Hqa68aruxhtAyhs8u666YuZ40_fR5zg,3979
|
60
60
|
wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
|
@@ -68,13 +68,13 @@ 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/acceptability.py,sha256=
|
71
|
+
wolfhece/apps/acceptability.py,sha256=hMIxTRNQARTTWJJaakb6kEK9udNh-w64VDgxxezVk3k,790
|
72
72
|
wolfhece/apps/check_install.py,sha256=Xoi_d8MzKzNAy2xqEpERdsqgRPu0hbBWukI0WkIYzD0,1701
|
73
73
|
wolfhece/apps/curvedigitizer.py,sha256=Yps4bcayzbsz0AoVc_dkSk35dEhhn_esIBy1Ziefgmk,5334
|
74
74
|
wolfhece/apps/hydrometry.py,sha256=lhhJsFeb4zGL4bNQTs0co85OQ_6ssL1Oy0OUJCzhfYE,656
|
75
75
|
wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
|
76
76
|
wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
|
77
|
-
wolfhece/apps/version.py,sha256=
|
77
|
+
wolfhece/apps/version.py,sha256=SpIz9DzdUfm6CdBEDSCQMvpAeu_I5QhRFbGY92mw1h0,388
|
78
78
|
wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
|
79
79
|
wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
|
80
80
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -220,7 +220,7 @@ wolfhece/mesh2d/bc_manager.py,sha256=QTGkb5TR8Y5xVnGUXPXzscGyTEQ6PA8CZPkVNwrlR1Y
|
|
220
220
|
wolfhece/mesh2d/cell_tracker.py,sha256=mPmnD5lEf3gLPuLqtAIo-Gp-ipAwQdPxzjWOGt0b7jM,8958
|
221
221
|
wolfhece/mesh2d/config_manager.py,sha256=DcdxCIIs_dyC6ayJOBULeY364LONogL9PBaqBtC9eQ4,14736
|
222
222
|
wolfhece/mesh2d/cst_2D_boundary_conditions.py,sha256=Y4DF68uAklF3fXJgf05nb_JvJk2pvzcu_wu5nFXpWJo,5008
|
223
|
-
wolfhece/mesh2d/wolf2dprev.py,sha256=
|
223
|
+
wolfhece/mesh2d/wolf2dprev.py,sha256=CvCsutTwLr-BIxzYpzbg3YxIASJtMMtJpuZ77gxCue8,491460
|
224
224
|
wolfhece/models/5_coul.pal,sha256=OI1UqcNIDBpJn2k_VDel__r-hKjjvdob0eqinGCI3QY,160
|
225
225
|
wolfhece/models/6_coul.pal,sha256=z7NK2dg0tAQBUweRQV54dIwJbPM1U5y1AR2LLw19Idw,148
|
226
226
|
wolfhece/models/7_coul.pal,sha256=XTnnUyCE8ONokScB2YzYDnSTft7E6sppmr7P-XwMsCE,205
|
@@ -284,8 +284,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
|
|
284
284
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
285
285
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
286
286
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
287
|
-
wolfhece-2.1.
|
288
|
-
wolfhece-2.1.
|
289
|
-
wolfhece-2.1.
|
290
|
-
wolfhece-2.1.
|
291
|
-
wolfhece-2.1.
|
287
|
+
wolfhece-2.1.82.dist-info/METADATA,sha256=CoPxo3FK2QOAflVM4viGV2e3I5l5YcQICTzfwm2FXcg,2570
|
288
|
+
wolfhece-2.1.82.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
289
|
+
wolfhece-2.1.82.dist-info/entry_points.txt,sha256=ZZ-aSfbpdcmo-wo84lRFzBN7LaSnD1XRGSaAKVX-Gpc,522
|
290
|
+
wolfhece-2.1.82.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
291
|
+
wolfhece-2.1.82.dist-info/RECORD,,
|
File without changes
|
File without changes
|