wolfhece 2.1.50__py3-none-any.whl → 2.1.52__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/PyPalette.py +3 -3
- wolfhece/apps/version.py +1 -1
- wolfhece/libs/wolfogl.cp310-win_amd64.pyd +0 -0
- wolfhece/models/blues.pal +65 -0
- wolfhece/models/mako.pal +1025 -0
- wolfhece/rem/REMMaker.py +14 -24
- wolfhece/rem/RasterViz.py +18 -28
- wolfhece/wolf_array.py +85 -43
- wolfhece/wolfresults_2D.py +49 -2
- {wolfhece-2.1.50.dist-info → wolfhece-2.1.52.dist-info}/METADATA +8 -8
- {wolfhece-2.1.50.dist-info → wolfhece-2.1.52.dist-info}/RECORD +14 -12
- {wolfhece-2.1.50.dist-info → wolfhece-2.1.52.dist-info}/WHEEL +0 -0
- {wolfhece-2.1.50.dist-info → wolfhece-2.1.52.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.50.dist-info → wolfhece-2.1.52.dist-info}/top_level.txt +0 -0
wolfhece/PyPalette.py
CHANGED
@@ -515,9 +515,9 @@ class wolfpalette(wx.Frame, LinearSegmentedColormap):
|
|
515
515
|
def defaultgray(self):
|
516
516
|
"""Palette grise par défaut dans WOLF"""
|
517
517
|
|
518
|
-
self.nb =
|
519
|
-
self.values = np.asarray([0., 1.], dtype=np.float64)
|
520
|
-
self.colors = np.asarray([[0, 0, 0, 255], [255, 255, 255, 255]], dtype=np.int32)
|
518
|
+
self.nb = 3
|
519
|
+
self.values = np.asarray([0., 0.5, 1.], dtype=np.float64)
|
520
|
+
self.colors = np.asarray([[0, 0, 0, 255], [128, 128, 128, 255], [255, 255, 255, 255]], dtype=np.int32)
|
521
521
|
|
522
522
|
# self.nb = 11
|
523
523
|
# self.values = np.asarray([0., 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.], dtype=np.float64)
|
wolfhece/apps/version.py
CHANGED
Binary file
|
@@ -0,0 +1,65 @@
|
|
1
|
+
16
|
2
|
+
0.0
|
3
|
+
247
|
4
|
+
251
|
5
|
+
255
|
6
|
+
0.06666666666666667
|
7
|
+
233
|
8
|
+
242
|
9
|
+
250
|
10
|
+
0.13333333333333333
|
11
|
+
220
|
12
|
+
233
|
13
|
+
246
|
14
|
+
0.2
|
15
|
+
207
|
16
|
+
225
|
17
|
+
242
|
18
|
+
0.26666666666666666
|
19
|
+
192
|
20
|
+
216
|
21
|
+
237
|
22
|
+
0.3333333333333333
|
23
|
+
171
|
24
|
+
207
|
25
|
+
229
|
26
|
+
0.39999999999999997
|
27
|
+
147
|
28
|
+
196
|
29
|
+
222
|
30
|
+
0.4666666666666666
|
31
|
+
120
|
32
|
+
181
|
33
|
+
216
|
34
|
+
0.5333333333333333
|
35
|
+
96
|
36
|
+
166
|
37
|
+
209
|
38
|
+
0.6
|
39
|
+
74
|
40
|
+
151
|
41
|
+
201
|
42
|
+
0.6666666666666666
|
43
|
+
55
|
44
|
+
135
|
45
|
+
192
|
46
|
+
0.7333333333333333
|
47
|
+
37
|
48
|
+
117
|
49
|
+
183
|
50
|
+
0.7999999999999999
|
51
|
+
23
|
52
|
+
100
|
53
|
+
171
|
54
|
+
0.8666666666666666
|
55
|
+
9
|
56
|
+
83
|
57
|
+
157
|
58
|
+
0.9333333333333332
|
59
|
+
8
|
60
|
+
65
|
61
|
+
133
|
62
|
+
0.9999999999999999
|
63
|
+
8
|
64
|
+
48
|
65
|
+
107
|