datalab-platform 1.0.3__py3-none-any.whl → 1.0.4__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.
- datalab/__init__.py +1 -1
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/gui/docks.py +3 -2
- datalab/locale/fr/LC_MESSAGES/datalab.mo +0 -0
- datalab/locale/fr/LC_MESSAGES/datalab.po +10 -2
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/METADATA +7 -7
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/RECORD +12 -12
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/WHEEL +1 -1
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/entry_points.txt +0 -0
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-1.0.3.dist-info → datalab_platform-1.0.4.dist-info}/top_level.txt +0 -0
datalab/__init__.py
CHANGED
|
@@ -24,7 +24,7 @@ except RuntimeError:
|
|
|
24
24
|
# this module is imported more than once, e.g. when running tests)
|
|
25
25
|
pass
|
|
26
26
|
|
|
27
|
-
__version__ = "1.0.
|
|
27
|
+
__version__ = "1.0.4"
|
|
28
28
|
__docurl__ = __homeurl__ = "https://datalab-platform.com/"
|
|
29
29
|
__supporturl__ = "https://github.com/DataLab-Platform/DataLab/issues/new/choose"
|
|
30
30
|
|
datalab/data/doc/DataLab_en.pdf
CHANGED
|
Binary file
|
datalab/data/doc/DataLab_fr.pdf
CHANGED
|
Binary file
|
datalab/gui/docks.py
CHANGED
|
@@ -213,8 +213,9 @@ def get_more_image_stats(
|
|
|
213
213
|
if xunit and zunit:
|
|
214
214
|
densityfmt += " " + zunit + "/" + xunit + "²"
|
|
215
215
|
info = info + f"<br>ρ = {densityfmt % density}"
|
|
216
|
-
|
|
217
|
-
|
|
216
|
+
# Convert data (ndarray) to a simple array to compute centroid with the new
|
|
217
|
+
# einsum optimisation introduce in numpy 2.4.0 and scikit-image 0.26.0
|
|
218
|
+
c_i, c_j = measure.centroid(np.array(data))
|
|
218
219
|
c_x, c_y = item.get_plot_coordinates(c_j + ix0, c_i + iy0)
|
|
219
220
|
info += "<br>" + "<br>".join(
|
|
220
221
|
[
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# French translations for datalab.
|
|
2
|
-
# Copyright (C)
|
|
2
|
+
# Copyright (C) 2026 DataLab Platform Developers
|
|
3
3
|
# This file is distributed under the same license as the datalab project.
|
|
4
4
|
#
|
|
5
5
|
msgid ""
|
|
@@ -1031,6 +1031,9 @@ msgstr "Propriétés"
|
|
|
1031
1031
|
msgid "Parameters for function `%s`"
|
|
1032
1032
|
msgstr "Paramètres pour la fonction `%s`"
|
|
1033
1033
|
|
|
1034
|
+
msgid "Created"
|
|
1035
|
+
msgstr "Création de"
|
|
1036
|
+
|
|
1034
1037
|
msgid "Original object"
|
|
1035
1038
|
msgstr "Objet original"
|
|
1036
1039
|
|
|
@@ -1294,6 +1297,9 @@ msgstr "L'étiquette a été ajoutée comme annotation. Vous pouvez la modifier
|
|
|
1294
1297
|
msgid "Macro panel"
|
|
1295
1298
|
msgstr "Panneau des macros"
|
|
1296
1299
|
|
|
1300
|
+
msgid "Python files"
|
|
1301
|
+
msgstr "Fichiers Python""
|
|
1302
|
+
|
|
1297
1303
|
msgid "-***- Macro Console -***-"
|
|
1298
1304
|
msgstr "-***- Console des macros -***-"
|
|
1299
1305
|
|
|
@@ -2993,6 +2999,9 @@ msgstr "Distance minimale :"
|
|
|
2993
2999
|
msgid "Signal peak detection"
|
|
2994
3000
|
msgstr "Détection de pics 1D"
|
|
2995
3001
|
|
|
3002
|
+
msgid "Peaks:"
|
|
3003
|
+
msgstr "Pics :"
|
|
3004
|
+
|
|
2996
3005
|
msgid "Internal console"
|
|
2997
3006
|
msgstr "Console interne"
|
|
2998
3007
|
|
|
@@ -3285,4 +3294,3 @@ msgstr "Merci de sélectionner le fichier à importer."
|
|
|
3285
3294
|
|
|
3286
3295
|
msgid "Example Wizard"
|
|
3287
3296
|
msgstr "Assistant exemple"
|
|
3288
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datalab-platform
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: DataLab is a data processing and analysis software for scientific and industrial applications
|
|
5
5
|
Author-email: Pierre Raybaut <p.raybaut@codra.fr>
|
|
6
6
|
Maintainer-email: DataLab Platform Developers <p.raybaut@codra.fr>
|
|
@@ -34,12 +34,12 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
License-File: LICENSE
|
|
35
35
|
Requires-Dist: guidata>=3.13.4
|
|
36
36
|
Requires-Dist: PlotPy>=2.8.2
|
|
37
|
-
Requires-Dist: Sigima>=1.0.
|
|
38
|
-
Requires-Dist: NumPy
|
|
39
|
-
Requires-Dist: SciPy
|
|
40
|
-
Requires-Dist: scikit-image
|
|
41
|
-
Requires-Dist: pandas
|
|
42
|
-
Requires-Dist: PyWavelets
|
|
37
|
+
Requires-Dist: Sigima>=1.0.6
|
|
38
|
+
Requires-Dist: NumPy<2.5,>=1.22
|
|
39
|
+
Requires-Dist: SciPy<1.17,>=1.10.1
|
|
40
|
+
Requires-Dist: scikit-image<0.27,>=0.19.2
|
|
41
|
+
Requires-Dist: pandas<3.0,>=1.4
|
|
42
|
+
Requires-Dist: PyWavelets<2.0,>=1.2
|
|
43
43
|
Requires-Dist: psutil>=5.8
|
|
44
44
|
Requires-Dist: packaging>=21.3
|
|
45
45
|
Provides-Extra: qt
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
datalab/__init__.py,sha256=
|
|
1
|
+
datalab/__init__.py,sha256=gPvlWGJhrRo0b4jOfSEhAkL8QeJnKVHTiFL4rKelCvw,1245
|
|
2
2
|
datalab/app.py,sha256=DEr6IQ211YfltLD8xdHngb5-Zv8Tng9G2t2snW-AowQ,3004
|
|
3
3
|
datalab/config.py,sha256=TFh_rItt2S285gdA-_A0_J1vixbxw0AJqHupn8sZKN0,37435
|
|
4
4
|
datalab/env.py,sha256=gWfLH7wWdj7b7nTocvSi1ptEF1KkGZry5Sw9g7ND2N8,18769
|
|
@@ -29,8 +29,8 @@ datalab/control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
29
29
|
datalab/control/baseproxy.py,sha256=-T_R2JgC_gXx1HAfd28nWqDWG439mF9OhY4jVPO8ctY,27545
|
|
30
30
|
datalab/control/proxy.py,sha256=Aj7xOr04QVNXtYs4aHCrhMl-BOKNB21nDEy3BotHeVU,12257
|
|
31
31
|
datalab/control/remote.py,sha256=DcklNCDILT1uQlV0ydaaMvQv2Zn3E66jODXoSSHTixE,36718
|
|
32
|
-
datalab/data/doc/DataLab_en.pdf,sha256=
|
|
33
|
-
datalab/data/doc/DataLab_fr.pdf,sha256=
|
|
32
|
+
datalab/data/doc/DataLab_en.pdf,sha256=S99dLpi0O7iiNUhvd9P30oO7cEPA0zGVMyzLWUpK8YI,17330153
|
|
33
|
+
datalab/data/doc/DataLab_fr.pdf,sha256=UCgrsJ_KZLYJJ2W3IYPA9WczWM1Vy4BiLzlfmvX1blg,17424616
|
|
34
34
|
datalab/data/icons/analysis.svg,sha256=jDZAqd1UpSfyiIPXnk3AyUcxqYByYvcKlJ61PI3g7bE,6592
|
|
35
35
|
datalab/data/icons/apply.svg,sha256=VQQxY3a2UA7Chu5gJ7XQUwiRHdqfkOmmRNhv34PA0SY,471
|
|
36
36
|
datalab/data/icons/check_all.svg,sha256=pe7FtRiD64KvzBPh3JJpQN9tDmdwtbTHy3YHx90KGq8,4254
|
|
@@ -299,7 +299,7 @@ datalab/data/tutorials/laser_beam/TEM00_z_75.jpg,sha256=4sQ17VWtte7E6RbMWiUcluGC
|
|
|
299
299
|
datalab/data/tutorials/laser_beam/TEM00_z_80.jpg,sha256=5KMSrqB02sAyOqytQyRgMsTfrRT3Cna9vhcBRL4PWis,80464
|
|
300
300
|
datalab/gui/__init__.py,sha256=ueRKAHh4jpIM7psJWmn-ddRpTU9Yy7gUljWJb6uluJw,2923
|
|
301
301
|
datalab/gui/actionhandler.py,sha256=SOTI5KUJt_XbHiJ5qpWv6J3Aba7mRww9P4NhpCZBWIs,73498
|
|
302
|
-
datalab/gui/docks.py,sha256=
|
|
302
|
+
datalab/gui/docks.py,sha256=KTD18gr_7nuy3_zCFgSox0C-THunuVqlyOMqE0V7Ucc,17329
|
|
303
303
|
datalab/gui/h5io.py,sha256=_h930rKql0pzXohovfqGx7tOQQ7k6ANfwGemPWk3Cow,6710
|
|
304
304
|
datalab/gui/macroeditor.py,sha256=XLb1EbVPC2oPFSgqWGVZFG9707StwPuuChQrRxnN0hY,10649
|
|
305
305
|
datalab/gui/main.py,sha256=8F698RBG4GFFF8l9OCpgs1mxBdBux0MGpv_emBvMB1E,84307
|
|
@@ -326,8 +326,8 @@ datalab/h5/common.py,sha256=zfXNZT4ZnTlLCe5Hz2vv44FXSKJqhpidUiRqY8CYCLI,10268
|
|
|
326
326
|
datalab/h5/generic.py,sha256=s51etvOl2acgkvqhhq_o_VxldmPCj3TsK6_N_2U4l8E,20737
|
|
327
327
|
datalab/h5/native.py,sha256=xXQ7R5gT3iGQBPolpWovB8texJrPItJ4RUo01VDxPdA,991
|
|
328
328
|
datalab/h5/utils.py,sha256=PWwNKwsuEgL1Ofx638omTDwhCYcgA-mkl38vZAzjhiE,2858
|
|
329
|
-
datalab/locale/fr/LC_MESSAGES/datalab.mo,sha256=
|
|
330
|
-
datalab/locale/fr/LC_MESSAGES/datalab.po,sha256=
|
|
329
|
+
datalab/locale/fr/LC_MESSAGES/datalab.mo,sha256=PGuIGrKWGgdmjKxuWj0-hTbNrU5PHkg40cgjKzZ4Q3Y,99060
|
|
330
|
+
datalab/locale/fr/LC_MESSAGES/datalab.po,sha256=lzKbgCwZQ-U1P7AiZdx7NvqH3eACOHWyj3kSH1Jj6tw,106116
|
|
331
331
|
datalab/plugins/_readme_.txt,sha256=9SOgCDB34veOgCmYrA3ZTzYbv5ywraJGkgNislN9ogg,278
|
|
332
332
|
datalab/plugins/datalab_imageformats.py,sha256=0_GxhtWLLE3Lii-ej2pkehsJpi7NBBGj1gj8GtPSXTA,5788
|
|
333
333
|
datalab/plugins/datalab_testdata.py,sha256=IiRuPrz6iWxm8UL44hCtccEutlX-420KfB1lLko7IYg,7697
|
|
@@ -493,9 +493,9 @@ datalab/widgets/status.py,sha256=LopY06Mom3RqvxGCdqKJUobH3-7OxCNz5YGeAY_EQHE,803
|
|
|
493
493
|
datalab/widgets/textimport.py,sha256=NqJH8JsqEoIvjZeebW4GZkCD4ubxBuDJih6RzFki1K0,27997
|
|
494
494
|
datalab/widgets/warningerror.py,sha256=KiPagfry7-OJ7bHPw9r6RqhJm5e8SZfrjrC_DuNtVJw,8258
|
|
495
495
|
datalab/widgets/wizard.py,sha256=KN7NYadQuxO921WK9q0NfWAlw66l4c8JF4yeOhcRaAo,9904
|
|
496
|
-
datalab_platform-1.0.
|
|
497
|
-
datalab_platform-1.0.
|
|
498
|
-
datalab_platform-1.0.
|
|
499
|
-
datalab_platform-1.0.
|
|
500
|
-
datalab_platform-1.0.
|
|
501
|
-
datalab_platform-1.0.
|
|
496
|
+
datalab_platform-1.0.4.dist-info/licenses/LICENSE,sha256=iMgU90_yimtLdU_nI3rWUq2mDMCvdm_EOVliNKyNLXo,1565
|
|
497
|
+
datalab_platform-1.0.4.dist-info/METADATA,sha256=8Bd6WRgSfinO4CWtHGewohoYx7mgcK7286F9EGM2sls,6972
|
|
498
|
+
datalab_platform-1.0.4.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
499
|
+
datalab_platform-1.0.4.dist-info/entry_points.txt,sha256=9qI5xVtl8G_ivVnsIYV-v2rPZ98HVO1WF1Of78ZxZhg,122
|
|
500
|
+
datalab_platform-1.0.4.dist-info/top_level.txt,sha256=sK3HGZNGMtLR-m29UNms9QgVzVqwSNCtmuR-_hmamdc,8
|
|
501
|
+
datalab_platform-1.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|