wolfhece 2.2.7__py3-none-any.whl → 2.2.9__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 +1 -1
- wolfhece/PyVertex.py +105 -19
- wolfhece/PyVertexvectors.py +73 -21
- wolfhece/apps/version.py +1 -1
- wolfhece/hydrology/Internal_variables.py +283 -0
- wolfhece/hydrology/Models_characteristics.py +223 -0
- wolfhece/hydrology/Optimisation.py +324 -14
- wolfhece/hydrology/SubBasin.py +112 -28
- wolfhece/hydrology/cst_exchanges.py +1 -0
- wolfhece/libs/WolfDll.dll +0 -0
- wolfhece/lifewatch.py +4 -0
- wolfhece/pydike.py +1 -1
- wolfhece/wolf_array.py +145 -15
- wolfhece/wolfresults_2D.py +7 -7
- {wolfhece-2.2.7.dist-info → wolfhece-2.2.9.dist-info}/METADATA +1 -1
- {wolfhece-2.2.7.dist-info → wolfhece-2.2.9.dist-info}/RECORD +19 -17
- {wolfhece-2.2.7.dist-info → wolfhece-2.2.9.dist-info}/WHEEL +0 -0
- {wolfhece-2.2.7.dist-info → wolfhece-2.2.9.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.2.7.dist-info → wolfhece-2.2.9.dist-info}/top_level.txt +0 -0
wolfhece/wolf_array.py
CHANGED
@@ -1256,7 +1256,9 @@ class header_wolf():
|
|
1256
1256
|
def _rasterize_segment(self,
|
1257
1257
|
x1:float, y1:float,
|
1258
1258
|
x2:float, y2:float,
|
1259
|
-
xstart:float=None,
|
1259
|
+
xstart:float=None,
|
1260
|
+
ystart:float=None,
|
1261
|
+
n_packet:int = 10) -> list[list[float]]:
|
1260
1262
|
"""
|
1261
1263
|
Rasterize a segment according to the grid
|
1262
1264
|
where the grid is defined by the borders of the array.
|
@@ -1288,11 +1290,55 @@ class header_wolf():
|
|
1288
1290
|
while length >= prec:
|
1289
1291
|
|
1290
1292
|
if np.abs(direction[0])>= np.abs(direction[1]):
|
1291
|
-
|
1293
|
+
|
1294
|
+
if length > n_packet*prec:
|
1295
|
+
# I we are far from the end of the segment, we can use the n_packet to rasterize
|
1296
|
+
# this will be used to avoid to many straight lines
|
1297
|
+
nx = np.abs(int(direction[0] * (n_packet-1))) # number of points in x direction
|
1298
|
+
ny = np.abs(int(direction[1] * (n_packet-1))) # number of points in y direction
|
1299
|
+
|
1300
|
+
n_common = min(nx, ny) # number of common points
|
1301
|
+
|
1302
|
+
for i in range(n_common):
|
1303
|
+
xstart += self.dx * np.sign(direction[0])
|
1304
|
+
points.append([xstart, ystart])
|
1305
|
+
ystart += self.dy * np.sign(direction[1])
|
1306
|
+
points.append([xstart, ystart])
|
1307
|
+
|
1308
|
+
for i in range(nx - n_common):
|
1309
|
+
xstart += self.dx * np.sign(direction[0])
|
1310
|
+
points.append([xstart, ystart])
|
1311
|
+
|
1312
|
+
for j in range(ny - n_common):
|
1313
|
+
ystart += self.dy * np.sign(direction[1])
|
1314
|
+
points.append([xstart, ystart])
|
1315
|
+
else:
|
1316
|
+
xstart += self.dx * np.sign(direction[0])
|
1317
|
+
points.append([xstart, ystart])
|
1292
1318
|
else:
|
1293
|
-
|
1319
|
+
if length > n_packet*prec:
|
1320
|
+
nx = np.abs(int(direction[0] * (n_packet-1)))
|
1321
|
+
ny = np.abs(int(direction[1] * (n_packet-1)))
|
1322
|
+
|
1323
|
+
n_common = min(nx, ny)
|
1294
1324
|
|
1295
|
-
|
1325
|
+
for j in range(n_common):
|
1326
|
+
ystart += self.dy * np.sign(direction[1])
|
1327
|
+
points.append([xstart, ystart])
|
1328
|
+
xstart += self.dx * np.sign(direction[0])
|
1329
|
+
points.append([xstart, ystart])
|
1330
|
+
|
1331
|
+
for j in range(ny - n_common):
|
1332
|
+
ystart += self.dy * np.sign(direction[1])
|
1333
|
+
points.append([xstart, ystart])
|
1334
|
+
|
1335
|
+
for i in range(nx - n_common):
|
1336
|
+
xstart += self.dx * np.sign(direction[0])
|
1337
|
+
points.append([xstart, ystart])
|
1338
|
+
|
1339
|
+
else:
|
1340
|
+
ystart += self.dy * np.sign(direction[1])
|
1341
|
+
points.append([xstart, ystart])
|
1296
1342
|
|
1297
1343
|
direction = np.array([x2-xstart, y2-ystart])
|
1298
1344
|
|
@@ -1302,7 +1348,7 @@ class header_wolf():
|
|
1302
1348
|
|
1303
1349
|
return points
|
1304
1350
|
|
1305
|
-
def
|
1351
|
+
def rasterize_vector_along_grid(self, vector2raster:vector, outformat:Union[np.ndarray, vector]=vector) -> Union[np.ndarray,vector]:
|
1306
1352
|
"""
|
1307
1353
|
Rasterize a vector according to the grid
|
1308
1354
|
|
@@ -1337,6 +1383,14 @@ class header_wolf():
|
|
1337
1383
|
|
1338
1384
|
return newvector
|
1339
1385
|
|
1386
|
+
def rasterize_vector(self, vector2raster:vector, outformat:Union[np.ndarray, vector]=vector) -> Union[np.ndarray,vector]:
|
1387
|
+
""" DEPRECATED since 2.2.8 -- use rasterize_vector_along_grid instead.
|
1388
|
+
|
1389
|
+
Will be removed in 2.3.0
|
1390
|
+
"""
|
1391
|
+
logging.warning(_('rasterize_vector is deprecated since 2.2.8 -- use rasterize_vector_along_grid instead'))
|
1392
|
+
return self.rasterize_vector_along_grid(vector2raster, outformat=outformat)
|
1393
|
+
|
1340
1394
|
def get_xy_infootprint_vect(self, myvect: vector | Polygon, eps:float = 0.) -> tuple[np.ndarray,np.ndarray]:
|
1341
1395
|
"""
|
1342
1396
|
Return the coordinates of the cells in the footprint of a vector
|
@@ -5397,7 +5451,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
5397
5451
|
assert np_source.shape == (self.nbx, self.nby), _('Shape of np_source is not compatible with header')
|
5398
5452
|
|
5399
5453
|
if self.dtype != np_source.dtype:
|
5400
|
-
logging.warning(_(
|
5454
|
+
logging.warning(_(f"dtype of np_source is not compatible with header -- Conversion will be done to match wolf header's type {self.dtype}"))
|
5401
5455
|
np_source = np_source.astype(self.dtype)
|
5402
5456
|
|
5403
5457
|
self.array = ma.MaskedArray(np_source, mask= np_source[:,:] == self.nullvalue, copy=False, order='C')
|
@@ -6771,6 +6825,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6771
6825
|
return
|
6772
6826
|
|
6773
6827
|
destij = self.xy2ij_np(destxy)
|
6828
|
+
|
6774
6829
|
elif self.mngselection.myselection == 'all':
|
6775
6830
|
destij = np.where(self.array.mask == False)
|
6776
6831
|
destij = np.array(destij).transpose()
|
@@ -6792,9 +6847,6 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6792
6847
|
|
6793
6848
|
destij = self.xy2ij_np(destxy)
|
6794
6849
|
|
6795
|
-
# if convert_xy2ij:
|
6796
|
-
# destij = np.asarray([list(self.get_ij_from_xy(x, y)) for x, y in destxy])
|
6797
|
-
|
6798
6850
|
xyz = working_vector.asnparray3d()
|
6799
6851
|
|
6800
6852
|
newvalues = griddata(xyz[:, :2], xyz[:, 2], destxy, method=method, fill_value=-99999.)
|
@@ -6802,6 +6854,62 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
6802
6854
|
locmask = np.where(newvalues != -99999.)
|
6803
6855
|
self.array.data[destij[locmask][:, 0], destij[locmask][:, 1]] = newvalues[locmask]
|
6804
6856
|
|
6857
|
+
def rasterize_vector_valuebyid(self, working_vector: vector, id,
|
6858
|
+
method:Literal["nearest", "linear", "cubic"]="linear"):
|
6859
|
+
"""
|
6860
|
+
Rasterize a vector using the value of the id
|
6861
|
+
"""
|
6862
|
+
|
6863
|
+
if not isinstance(working_vector, vector):
|
6864
|
+
logging.error(_('working_vector must be a vector. You provided a {}').format(type(working_vector)))
|
6865
|
+
return
|
6866
|
+
|
6867
|
+
if working_vector.get_value(id) is None:
|
6868
|
+
logging.error(_('No value for id {}').format(id))
|
6869
|
+
return
|
6870
|
+
|
6871
|
+
val = working_vector.get_value(id)
|
6872
|
+
if val is None:
|
6873
|
+
logging.error(_('No value for id {}').format(id))
|
6874
|
+
return
|
6875
|
+
|
6876
|
+
try:
|
6877
|
+
val = float(val)
|
6878
|
+
except:
|
6879
|
+
logging.error(_('Value for id {} is not a number').format(id))
|
6880
|
+
return
|
6881
|
+
|
6882
|
+
newvec = working_vector.deepcopy()
|
6883
|
+
newvec.z = val
|
6884
|
+
|
6885
|
+
self.interpolate_on_polygon(newvec, method)
|
6886
|
+
|
6887
|
+
def rasterize_zone_valuebyid(self, working_zone: zone, id,
|
6888
|
+
method:Literal["nearest", "linear", "cubic"]="linear"):
|
6889
|
+
"""
|
6890
|
+
Rasterize a zone using the value of the id
|
6891
|
+
"""
|
6892
|
+
|
6893
|
+
if not isinstance(working_zone, zone):
|
6894
|
+
logging.error(_('working_zone must be a zone. You provided a {}').format(type(working_zone)))
|
6895
|
+
return
|
6896
|
+
|
6897
|
+
for curvec in working_zone.myvectors:
|
6898
|
+
self.rasterize_vector_valuebyid(curvec, id, method)
|
6899
|
+
|
6900
|
+
def rasterize_zones_valuebyid(self, working_zones: Zones, id,
|
6901
|
+
method:Literal["nearest", "linear", "cubic"]="linear"):
|
6902
|
+
"""
|
6903
|
+
Rasterize a zone using the value of the id
|
6904
|
+
"""
|
6905
|
+
|
6906
|
+
if not isinstance(working_zones, Zones):
|
6907
|
+
logging.error(_('working_zone must be a zone. You provided a {}').format(type(working_zones)))
|
6908
|
+
return
|
6909
|
+
|
6910
|
+
for curzone in working_zones.myzones:
|
6911
|
+
self.rasterize_zone_valuebyid(curzone, id, method)
|
6912
|
+
|
6805
6913
|
def interpolate_on_polygons(self, working_zone:zone, method:Literal["nearest", "linear", "cubic"]="linear"):
|
6806
6914
|
"""
|
6807
6915
|
Interpolation sous plusieurs polygones d'une même zone
|
@@ -9956,7 +10064,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
9956
10064
|
vmin:float=None, vmax:float=None,
|
9957
10065
|
figsize:tuple=None,
|
9958
10066
|
Walonmap:bool=False,
|
9959
|
-
cat:str='IMAGERIE/ORTHO_2022_ETE'
|
10067
|
+
cat:str='IMAGERIE/ORTHO_2022_ETE',
|
10068
|
+
first_mask_data:bool=True):
|
9960
10069
|
"""
|
9961
10070
|
Plot the array - Matplotlib version
|
9962
10071
|
|
@@ -10009,7 +10118,9 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10009
10118
|
:rtype: tuple
|
10010
10119
|
"""
|
10011
10120
|
|
10012
|
-
|
10121
|
+
if first_mask_data:
|
10122
|
+
self.mask_data(self.nullvalue)
|
10123
|
+
|
10013
10124
|
if update_palette:
|
10014
10125
|
self.updatepalette(0)
|
10015
10126
|
|
@@ -10043,7 +10154,9 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10043
10154
|
extent=(self.origx,
|
10044
10155
|
self.origx + self.dx * self.nbx,
|
10045
10156
|
self.origy,
|
10046
|
-
self.origy + self.dy * self.nby)
|
10157
|
+
self.origy + self.dy * self.nby),
|
10158
|
+
alpha=np.select([self.array.mask.T, ~self.array.mask.T],
|
10159
|
+
[np.zeros(self.shape).T, np.ones(self.shape).T]))
|
10047
10160
|
else:
|
10048
10161
|
im = ax.imshow(self.array.transpose(),
|
10049
10162
|
origin='lower',
|
@@ -10052,7 +10165,9 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
10052
10165
|
self.origx + self.dx * self.nbx,
|
10053
10166
|
self.origy,
|
10054
10167
|
self.origy + self.dy * self.nby),
|
10055
|
-
vmin=vmin, vmax=vmax
|
10168
|
+
vmin=vmin, vmax=vmax,
|
10169
|
+
alpha=np.select([self.array.mask.T, ~self.array.mask.T],
|
10170
|
+
[np.zeros(self.shape).T, np.ones(self.shape).T]) )
|
10056
10171
|
ax.set_aspect('equal')
|
10057
10172
|
|
10058
10173
|
if getdata_im:
|
@@ -11975,7 +12090,15 @@ class WolfArrayMB(WolfArray):
|
|
11975
12090
|
|
11976
12091
|
return newArray
|
11977
12092
|
|
11978
|
-
def plot_matplotlib(self,
|
12093
|
+
def plot_matplotlib(self,
|
12094
|
+
figax:tuple=None,
|
12095
|
+
getdata_im:bool=False,
|
12096
|
+
update_palette:bool=True,
|
12097
|
+
vmin:float=None, vmax:float=None,
|
12098
|
+
figsize:tuple=None,
|
12099
|
+
Walonmap:bool=False,
|
12100
|
+
cat:str='IMAGERIE/ORTHO_2022_ETE',
|
12101
|
+
first_mask_data:bool=True):
|
11979
12102
|
"""
|
11980
12103
|
Plot the multi-block (MB) array - Matplotlib version
|
11981
12104
|
|
@@ -12034,7 +12157,14 @@ class WolfArrayMB(WolfArray):
|
|
12034
12157
|
# Convert to single block
|
12035
12158
|
single_block = self.as_WolfArray()
|
12036
12159
|
|
12037
|
-
return single_block.plot_matplotlib(figax=figax,
|
12160
|
+
return single_block.plot_matplotlib(figax=figax,
|
12161
|
+
getdata_im=getdata_im,
|
12162
|
+
update_palette=update_palette,
|
12163
|
+
vmin=vmin, vmax=vmax,
|
12164
|
+
figsize=figsize,
|
12165
|
+
Walonmap=Walonmap,
|
12166
|
+
cat=cat,
|
12167
|
+
first_mask_data=first_mask_data)
|
12038
12168
|
|
12039
12169
|
|
12040
12170
|
class WolfArrayMNAP(WolfArrayMB):
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -3797,7 +3797,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3797
3797
|
|
3798
3798
|
myhead = self.get_header_block(1)
|
3799
3799
|
if to_rasterize:
|
3800
|
-
myvect = myhead.
|
3800
|
+
myvect = myhead.rasterize_vector_along_grid(myvect)
|
3801
3801
|
|
3802
3802
|
mynormals = myvect.get_normal_segments()
|
3803
3803
|
xy_center = myvect.get_center_segments()
|
@@ -3877,7 +3877,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3877
3877
|
for i in tqdm(range(nb)):
|
3878
3878
|
if i == 0:
|
3879
3879
|
myhead = self.get_header_block(1)
|
3880
|
-
vect_raster = myhead.
|
3880
|
+
vect_raster = myhead.rasterize_vector_along_grid(vect)
|
3881
3881
|
self.read_oneresult(i)
|
3882
3882
|
q.append(self._plot_one_q_raster_splitting(vect_raster, True, to_rasterize=False))
|
3883
3883
|
|
@@ -3892,7 +3892,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3892
3892
|
|
3893
3893
|
for i in range(len(vect)):
|
3894
3894
|
q[vect[i].myname] = []
|
3895
|
-
vect_raster.append(myhead.
|
3895
|
+
vect_raster.append(myhead.rasterize_vector_along_grid(vect[i]))
|
3896
3896
|
|
3897
3897
|
for i in tqdm(range(nb)):
|
3898
3898
|
self.read_oneresult(i)
|
@@ -3982,7 +3982,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
3982
3982
|
elif x_or_y == 'border':
|
3983
3983
|
if i==0:
|
3984
3984
|
myhead = self.get_header_block(1)
|
3985
|
-
vect_raster = myhead.
|
3985
|
+
vect_raster = myhead.rasterize_vector_along_grid(vect)
|
3986
3986
|
q.append(self._plot_one_q_raster_splitting(vect_raster, absolute, to_rasterize = False))
|
3987
3987
|
|
3988
3988
|
ax.plot(times,q, c='blue', label=vect.myname)
|
@@ -4000,7 +4000,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4000
4000
|
for i in range(len(vect)):
|
4001
4001
|
q[i]= []
|
4002
4002
|
if x_or_y[i] == 'border':
|
4003
|
-
vect_raster.append(myhead.
|
4003
|
+
vect_raster.append(myhead.rasterize_vector_along_grid(vect[i]))
|
4004
4004
|
|
4005
4005
|
for i in tqdm(range(nb)):
|
4006
4006
|
self.read_oneresult(i)
|
@@ -4063,7 +4063,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4063
4063
|
elif x_or_y == 'border':
|
4064
4064
|
if i==0:
|
4065
4065
|
myhead = self.get_header_block(1)
|
4066
|
-
vect_raster = myhead.
|
4066
|
+
vect_raster = myhead.rasterize_vector_along_grid(vect)
|
4067
4067
|
q.append(self._plot_one_q_raster_splitting(vect_raster, absolute, to_rasterize = False))
|
4068
4068
|
|
4069
4069
|
fig.plot(times,q, c='blue', label=vect.myname)
|
@@ -4081,7 +4081,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4081
4081
|
for i in range(len(vect)):
|
4082
4082
|
q[i]= []
|
4083
4083
|
if x_or_y[i] == 'border':
|
4084
|
-
vect_raster.append(myhead.
|
4084
|
+
vect_raster.append(myhead.rasterize_vector_along_grid(vect[i]))
|
4085
4085
|
|
4086
4086
|
for i in tqdm(range(nb)):
|
4087
4087
|
self.read_oneresult(i)
|
@@ -8,7 +8,7 @@ wolfhece/Model1D.py,sha256=SI4oNF_J3MdjiWZoizS8kuRXLMVyymX9dYfYJNVCQVI,476989
|
|
8
8
|
wolfhece/PandasGrid.py,sha256=YIleVkUkoP2MjtQBZ9Xgwk61zbgMj4Pmjj-clVTfPRs,2353
|
9
9
|
wolfhece/PyConfig.py,sha256=Y0wtSIFpAMYa7IByh7hbW-WEOVjNsQEduq7vhIYdZQw,16716
|
10
10
|
wolfhece/PyCrosssections.py,sha256=igU_ELrg5VrHU6RNbF5tHxPyVImpR3xdpfopJYc7haw,114711
|
11
|
-
wolfhece/PyDraw.py,sha256=
|
11
|
+
wolfhece/PyDraw.py,sha256=F2iKDT-hqIgBTFfq5ochWSQsrPgRjgiYWRoG7Fg16DQ,631736
|
12
12
|
wolfhece/PyGui.py,sha256=IU97wVlmer3Q2MpWbJv4MQWH7nYbc5uN4pRzhr4jdlM,145197
|
13
13
|
wolfhece/PyGuiHydrology.py,sha256=sKafpOopBg50L5llZCI_fZtbebVTDtxvoRI6-osUwhg,14745
|
14
14
|
wolfhece/PyHydrographs.py,sha256=1P5XAURNqCvtSsMQXhOn1ihjTpr725sRsZdlCEhhk6M,3730
|
@@ -16,8 +16,8 @@ wolfhece/PyPalette.py,sha256=k9b_95GYD0USQ8DS5zGXeZ577712U6772kmhEbJtlXw,35406
|
|
16
16
|
wolfhece/PyParams.py,sha256=Dh9C_WYICMjo3m9roRySsu8ZgFzzYhSr6RpbaXZni0M,99423
|
17
17
|
wolfhece/PyPictures.py,sha256=m1kY0saW6Y9Q0bDCo47lW6XxDkBrbQG-Fd8uVn8G5ic,2514
|
18
18
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
19
|
-
wolfhece/PyVertex.py,sha256=
|
20
|
-
wolfhece/PyVertexvectors.py,sha256=
|
19
|
+
wolfhece/PyVertex.py,sha256=XGmTP35UTe94904Q7Wpg0J5WiifW_xxmMZgENcrUoew,49792
|
20
|
+
wolfhece/PyVertexvectors.py,sha256=yPqE1rmqCSAucjNjSo1_srKHMwjqYWe0lx7S2Wbpryw,327905
|
21
21
|
wolfhece/PyWMS.py,sha256=LWkQk3R7miiVal-n5K5P5ClSQJA_vi5ImBxYGuxCx9A,9122
|
22
22
|
wolfhece/RatingCurve.py,sha256=bUjIrQjvIjkD4V-z8bZmA6pe1ILtYNM0-3fT6YUY1RU,22498
|
23
23
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
@@ -41,14 +41,14 @@ wolfhece/ins.py,sha256=uUeLMS1n3GPnfJhxl0Z2l-UXpmPUgthuwct282OOEzk,36184
|
|
41
41
|
wolfhece/irm_qdf.py,sha256=DMdDEAYbgYxApObm6w-dZbBmA8ec6PghBLXR2lUEZLc,27457
|
42
42
|
wolfhece/ismember.py,sha256=fkLvaH9fhx-p0QrlEzqa6ySO-ios3ysjAgXVXzLgSpY,2482
|
43
43
|
wolfhece/lagrange_multiplier.py,sha256=0G-M7b2tGzLx9v0oNYYq4_tLAiHcs_39B4o4W3TUVWM,6567
|
44
|
-
wolfhece/lifewatch.py,sha256=
|
44
|
+
wolfhece/lifewatch.py,sha256=Q_Wy6VGkrD-xxY0fv3PKpT8U8oXxNMgiLlrAE3bMheo,16340
|
45
45
|
wolfhece/matplotlib_fig.py,sha256=vnFI6sghw9N9jKhR8X1Z4aWli_5fPNylZQtFuujFJDY,84075
|
46
46
|
wolfhece/multiprojects.py,sha256=Sd6Bl6YP33jlR79A6rvSLu23vq8sqbFYL8lWuVPkEpE,21549
|
47
47
|
wolfhece/picc.py,sha256=0X_pzhSBoVxgtTfJ37pkOQO3Vbr9yurPaD1nVeurx8k,8531
|
48
48
|
wolfhece/pidcontroller.py,sha256=PHYenOdzfyPK2pXAhyRolCxMSMRd2AFza0eVMafpPHk,5205
|
49
49
|
wolfhece/pyGui1D.py,sha256=9g7OS3YiKsqy--6y0cBD7x2gaqTTYFXWkxImpgnTA20,121937
|
50
50
|
wolfhece/pybridges.py,sha256=bFAqjL4ColeJtwvyCPGQ8VllWoq1RbVWXxFrdfrvqm8,65954
|
51
|
-
wolfhece/pydike.py,sha256=
|
51
|
+
wolfhece/pydike.py,sha256=bKUwVvFMtAI4np4JJAkIa4xBDLw9l4py3l-Mjlfr_rM,2242
|
52
52
|
wolfhece/pylogging.py,sha256=4TI8hgBB65z-zpvU5Rfa2jkPXPhJaqXjHVPwbcdzTNc,4528
|
53
53
|
wolfhece/pypolygons_scen.py,sha256=WubNPQEk4fC--4qIHZK6mJqQnRs4mAWUpmjRL8q33Sw,46069
|
54
54
|
wolfhece/pyshields.py,sha256=6YncgmcA6QvbyIl4jbFRf24uJVjhiSplQKWtZH42lXI,24108
|
@@ -58,13 +58,13 @@ wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
|
|
58
58
|
wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
|
59
59
|
wolfhece/tools2d_dll.py,sha256=oU0m9XYAf4CZsMoB68IuKeE6SQh-AqY7O5NVED8r9uw,13125
|
60
60
|
wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
|
61
|
-
wolfhece/wolf_array.py,sha256=
|
61
|
+
wolfhece/wolf_array.py,sha256=PlImSCX5lUeoqPR7ogqak_Zl6dLyGn5EXUzeD_6-xAU,497218
|
62
62
|
wolfhece/wolf_hist.py,sha256=7jeVrgSkM3ErJO6SRMH_PGzfLjIdw8vTy87kesldggk,3582
|
63
63
|
wolfhece/wolf_texture.py,sha256=IvFtekT5iLU2sivZOOlJXpE4CevjTQYSxHaOp4cH_wI,17723
|
64
64
|
wolfhece/wolf_tiles.py,sha256=v-HohqaWuMYdn75XLnA22dlloAG90iwnIqrgnB0ASQ4,10488
|
65
65
|
wolfhece/wolf_vrt.py,sha256=wbxXVN7TL9zgdyF79S-4e3pje6wJEAgBEfF_Y8kkzxs,14271
|
66
66
|
wolfhece/wolf_zi_db.py,sha256=baE0niMCzybWGSvPJc5FNxo9ZxsGfU4p-FmfiavFHAs,12967
|
67
|
-
wolfhece/wolfresults_2D.py,sha256=
|
67
|
+
wolfhece/wolfresults_2D.py,sha256=N-L9gmurQEMUjrC23HJjWRRaIxvcdhk6R8KKcb94LJw,218231
|
68
68
|
wolfhece/xyz_file.py,sha256=1pzLFmmdHca4yBVR9Jitic6N82rY28mRytGC1zMbY28,6615
|
69
69
|
wolfhece/acceptability/Parallels.py,sha256=2wVkfJYor4yl7VYiAZiGGTFwtAab2z66ZfRtBliVweE,4088
|
70
70
|
wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
|
@@ -86,7 +86,7 @@ wolfhece/apps/curvedigitizer.py,sha256=lEJJwgAfulrrWQc-U6ij6sj59hWN3SZl4Yu1kQxVz
|
|
86
86
|
wolfhece/apps/hydrometry.py,sha256=lhhJsFeb4zGL4bNQTs0co85OQ_6ssL1Oy0OUJCzhfYE,656
|
87
87
|
wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
|
88
88
|
wolfhece/apps/splashscreen.py,sha256=eCPAUYscZPWDYKBHDBWum_VIcE7WXOCBe1GLHL3KUmU,3088
|
89
|
-
wolfhece/apps/version.py,sha256=
|
89
|
+
wolfhece/apps/version.py,sha256=o3OeBwd6Tgmc0fmEMZt8FtBtsdsee74REzxvxPvGof4,387
|
90
90
|
wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
|
91
91
|
wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
|
92
92
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -130,15 +130,17 @@ wolfhece/ftp/downloader.py,sha256=NANzxSzdcp25dFMYin5QA9UnFexNe6-W2AqqTzUE4f4,52
|
|
130
130
|
wolfhece/hydrology/Catchment.py,sha256=AKMIkGyMUK1TC_lKNZxFYwPt9bYtLOf0vLXILmZuTas,144465
|
131
131
|
wolfhece/hydrology/Comparison.py,sha256=5uHQlKZgNUzpUM0xmLZUePuhq38x7w_hsIPO5Lm8lTE,84244
|
132
132
|
wolfhece/hydrology/Dumping.py,sha256=SHGYXr30nMOGPSLArMvAzVxGyLywLf4i267166oUHhQ,2403
|
133
|
-
wolfhece/hydrology/
|
133
|
+
wolfhece/hydrology/Internal_variables.py,sha256=F-eLtV3pjzkPkp12qxSDYJsiInvGx-IPqIouTmaQMjg,10141
|
134
|
+
wolfhece/hydrology/Models_characteristics.py,sha256=qBvmyjpND_hPybR8M5s-FckUViwGdjxr3vv6PvtdQ-s,12614
|
135
|
+
wolfhece/hydrology/Optimisation.py,sha256=6UEeWmNfuuDUnyIVZAkSMy74PCl5nub8Pz4xvCoVDAQ,166919
|
134
136
|
wolfhece/hydrology/Outlet.py,sha256=jdjYN2gIolQJ5prf1wVfxm7cp_YguwQ0JMRsC9ks-Tg,10519
|
135
137
|
wolfhece/hydrology/PostProcessHydrology.py,sha256=GS2dm9ahDb856apXvTM-oyusTn0xj-ySNpKbHa_jQdw,7419
|
136
138
|
wolfhece/hydrology/PyWatershed.py,sha256=a26M6tVe4hrQ-a8FyAx7H9-RZcVCU5BBzFff4_YT0UU,97665
|
137
139
|
wolfhece/hydrology/RetentionBasin.py,sha256=vFvpnomo5h8ZWq3Hq-YlxRnyqyQqHrojABMKzu3RP6E,83358
|
138
|
-
wolfhece/hydrology/SubBasin.py,sha256=
|
140
|
+
wolfhece/hydrology/SubBasin.py,sha256=_grNjUSgFVViH0HDmRKyYt-ag9Y63y9hVOqVXOfk2OQ,182478
|
139
141
|
wolfhece/hydrology/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
142
|
wolfhece/hydrology/constant.py,sha256=0o6l8zwLESlW6G9vYNFlUJV4YhcDq6_jnCN28DNchmU,1634
|
141
|
-
wolfhece/hydrology/cst_exchanges.py,sha256=
|
143
|
+
wolfhece/hydrology/cst_exchanges.py,sha256=yT2cSIXjlfshPkSAdhyBxYwCPZ5L9s75BYM24tEO6_4,39699
|
142
144
|
wolfhece/hydrology/data_treatment.py,sha256=vHNtEvXHJOdGHjaNjbTTvVoFQjVee-AdspJEesxVNuQ,34967
|
143
145
|
wolfhece/hydrology/forcedexchanges.py,sha256=MrzMqKISX6G6t3XwkyFQa6tVFfTTC8ifm_nSvrOy5-8,2259
|
144
146
|
wolfhece/hydrology/plot_hydrology.py,sha256=M1cujLxA03SG8P7CkIPVIsrbfsbCwZPpLHQHN2xxm4w,35708
|
@@ -196,7 +198,7 @@ wolfhece/lazviewer/viewer/viewer.exe,sha256=jRy4FhrTa7yN0Cp5dBvCGAL_oBOCqMYbu-dS
|
|
196
198
|
wolfhece/lazviewer/viewer/viewer.py,sha256=5igxFDFZMnnnhF3oFbEHKLfgiK4TUgXEZHsgOJbtNY4,25319
|
197
199
|
wolfhece/lazviewer/viewer/viewer_np1_23_5.exe,sha256=pF5nwE8vMWlEzkk-SOekae9zpOsPhTWhZbqaJntumJc,202240
|
198
200
|
wolfhece/libs/MSVCP140.dll,sha256=2GrBWBI6JFuSdZLIDMAg_qKcjErdwURGbEYloAypx3o,565640
|
199
|
-
wolfhece/libs/WolfDll.dll,sha256=
|
201
|
+
wolfhece/libs/WolfDll.dll,sha256=DlSlpFVicaGgBImvKSXHExgNNKphDwzCYW_w4EVrl8g,134153216
|
200
202
|
wolfhece/libs/Wolf_tools.dll,sha256=HN4spQRt0f2hWm_4FsYdRuBo0hiCKFYnD0rOnJGJcAU,144569856
|
201
203
|
wolfhece/libs/__init__.py,sha256=x7QvPd7hjL-Xl7RjlA8y6rcvKCkYu3JpFE3YnzUJeCY,3326
|
202
204
|
wolfhece/libs/api-ms-win-crt-heap-l1-1-0.dll,sha256=r0euvgZa8vBFoZ8g7H5Upuc8DD6aUQimMJWnIyt1OBo,19720
|
@@ -314,8 +316,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
|
|
314
316
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
315
317
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
318
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
317
|
-
wolfhece-2.2.
|
318
|
-
wolfhece-2.2.
|
319
|
-
wolfhece-2.2.
|
320
|
-
wolfhece-2.2.
|
321
|
-
wolfhece-2.2.
|
319
|
+
wolfhece-2.2.9.dist-info/METADATA,sha256=74AfxciyoQG4-CEALkQzsakBxo5x04S9O2ZXDjoLWgc,2744
|
320
|
+
wolfhece-2.2.9.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
321
|
+
wolfhece-2.2.9.dist-info/entry_points.txt,sha256=ZZ-aSfbpdcmo-wo84lRFzBN7LaSnD1XRGSaAKVX-Gpc,522
|
322
|
+
wolfhece-2.2.9.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
323
|
+
wolfhece-2.2.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|