datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.1__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 +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.1.dist-info/METADATA +121 -0
- datalab_platform-1.0.1.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="imag.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="4.3245192"
|
|
85
|
+
inkscape:cy="3.6514423"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="g1"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 12.554478,2.0387287 v 9.9225423 c 0,0.682175 -0.588123,1.240318 -1.306937,1.240318 H 2.752458 c -0.7188147,0 -1.3069358,-0.558143 -1.3069358,-1.240318 V 2.0387287 c 0,-0.6821756 0.5881211,-1.24031765 1.3069358,-1.24031765 h 8.495083 c 0.718814,0 1.306937,0.55814205 1.306937,1.24031765 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.10273" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="1.2992173"
|
|
102
|
+
y="7.3985667"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="1.2992173"
|
|
107
|
+
y="7.3985667"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393" /></text>
|
|
109
|
+
<g
|
|
110
|
+
id="g1"
|
|
111
|
+
transform="matrix(1.1223136,0,0,1.1223136,-2.773605,-0.87418734)">
|
|
112
|
+
<text
|
|
113
|
+
xml:space="preserve"
|
|
114
|
+
style="font-size:10.7232px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.469139"
|
|
115
|
+
x="5.0380516"
|
|
116
|
+
y="10.893243"
|
|
117
|
+
id="text1-9"><tspan
|
|
118
|
+
sodipodi:role="line"
|
|
119
|
+
id="tspan1-6"
|
|
120
|
+
x="5.0380516"
|
|
121
|
+
y="10.893243"
|
|
122
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.7232px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.469139">ℑ</tspan></text>
|
|
123
|
+
</g>
|
|
124
|
+
</svg>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="integral.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview10"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="29.714286"
|
|
27
|
+
inkscape:cx="4.3245192"
|
|
28
|
+
inkscape:cy="3.6514423"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg8"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<path
|
|
38
|
+
d="M 11.015682,1.4879184 V 12.568154 c 0,0.761766 -0.433117,1.385029 -0.96248,1.385029 H 3.7970898 c -0.5293633,0 -0.9624788,-0.623263 -0.9624788,-1.385029 V 1.4879184 c 0,-0.76176703 0.4331155,-1.38502903 0.9624788,-1.38502903 h 6.2561122 c 0.529363,0 0.96248,0.623262 0.96248,1.38502903 z"
|
|
39
|
+
id="path2-7"
|
|
40
|
+
style="fill:#f99090;fill-opacity:1" />
|
|
41
|
+
<g
|
|
42
|
+
transform="matrix(0.02558303,0,0,-0.02558303,-0.7381483,17.276922)"
|
|
43
|
+
fill="#000000"
|
|
44
|
+
stroke="none"
|
|
45
|
+
id="g2">
|
|
46
|
+
<path
|
|
47
|
+
d="M 342,648 C 318,619 293,518 255,305 236,198 222,150 209,150 c -5,0 -8,3 -7,7 2,5 0,9 -4,11 -5,1 -8,0 -8,-3 0,-3 0,-9 0,-15 0,-5 9,-10 20,-10 32,0 48,47 90,262 40,203 59,271 67,236 6,-23 26,-23 21,-1 -4,22 -31,28 -46,11 z"
|
|
48
|
+
id="path1" />
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="inverse.svg"
|
|
10
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="4.3413461"
|
|
85
|
+
inkscape:cy="3.6514423"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="g1"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 12.554478,2.0387287 v 9.9225423 c 0,0.682175 -0.588123,1.240318 -1.306937,1.240318 H 2.752458 c -0.7188147,0 -1.3069358,-0.558143 -1.3069358,-1.240318 V 2.0387287 c 0,-0.6821756 0.5881211,-1.24031765 1.3069358,-1.24031765 h 8.495083 c 0.718814,0 1.306937,0.55814205 1.306937,1.24031765 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.10273" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="1.2992173"
|
|
102
|
+
y="7.3985667"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="1.2992173"
|
|
107
|
+
y="7.3985667"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393" /></text>
|
|
109
|
+
<g
|
|
110
|
+
id="g1"
|
|
111
|
+
transform="matrix(1.1223136,0,0,1.1223136,-2.773605,-0.87418734)">
|
|
112
|
+
<text
|
|
113
|
+
xml:space="preserve"
|
|
114
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
115
|
+
x="9.3216248"
|
|
116
|
+
y="3.785665"
|
|
117
|
+
id="text1-9"
|
|
118
|
+
transform="rotate(34.326031)"><tspan
|
|
119
|
+
sodipodi:role="line"
|
|
120
|
+
id="tspan1-6"
|
|
121
|
+
x="9.3216248"
|
|
122
|
+
y="3.785665"
|
|
123
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393">/</tspan></text>
|
|
124
|
+
<rect
|
|
125
|
+
style="fill:#f2f2f2;stroke-width:0.290207"
|
|
126
|
+
id="rect1-0"
|
|
127
|
+
width="3.3584471"
|
|
128
|
+
height="2.5188353"
|
|
129
|
+
x="8.5542297"
|
|
130
|
+
y="8.6395664" />
|
|
131
|
+
<text
|
|
132
|
+
xml:space="preserve"
|
|
133
|
+
x="5.4790559"
|
|
134
|
+
y="6.3145676"
|
|
135
|
+
id="text1-9-1"
|
|
136
|
+
style="font-size:11.802px;stroke-width:0.983504"><tspan
|
|
137
|
+
sodipodi:role="line"
|
|
138
|
+
id="tspan1-7-8"
|
|
139
|
+
x="5.4790559"
|
|
140
|
+
y="6.3145676"
|
|
141
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.24536px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.403623">1</tspan></text>
|
|
142
|
+
</g>
|
|
143
|
+
</svg>
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="log10.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.016827"
|
|
85
|
+
inkscape:cy="5.8725961"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 12.943198,2.7118053 v 8.5763897 c 0,0.589625 -0.629282,1.072048 -1.398403,1.072048 H 2.4552018 c -0.7691197,0 -1.3983993,-0.482423 -1.3983993,-1.072048 V 2.7118053 c 0,-0.5896271 0.6292796,-1.0720484 1.3983993,-1.0720484 h 9.0895932 c 0.769121,0 1.398403,0.4824213 1.398403,1.0720484 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.06046" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:6.18056px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.2704"
|
|
101
|
+
x="1.5385414"
|
|
102
|
+
y="9.0141287"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="1.5385414"
|
|
107
|
+
y="9.0141287"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.18056px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.2704">Log</tspan></text>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="absolute.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.016827"
|
|
85
|
+
inkscape:cy="5.8725961"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 13.498486,2.7118053 v 8.5763897 c 0,0.589625 -0.688078,1.072048 -1.529058,1.072048 H 2.0305694 c -0.8409806,0 -1.5290554,-0.482423 -1.5290554,-1.072048 V 2.7118053 c 0,-0.5896271 0.6880748,-1.0720484 1.5290554,-1.0720484 h 9.9388586 c 0.84098,0 1.529058,0.4824213 1.529058,1.0720484 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.1089" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="1.0914409"
|
|
102
|
+
y="9.6657219"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="1.0914409"
|
|
107
|
+
y="9.6657219"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393">| |</tspan></text>
|
|
109
|
+
<rect
|
|
110
|
+
style="fill:#f2f2f2;stroke-width:0.325703"
|
|
111
|
+
id="rect1"
|
|
112
|
+
width="3.7692308"
|
|
113
|
+
height="2.8269231"
|
|
114
|
+
x="5.1153846"
|
|
115
|
+
y="5.5865383" />
|
|
116
|
+
</svg>
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="power.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="4.3245192"
|
|
85
|
+
inkscape:cy="3.6514423"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 12.554478,2.0387287 v 9.9225423 c 0,0.682175 -0.588123,1.240318 -1.306937,1.240318 H 2.752458 c -0.7188147,0 -1.3069358,-0.558143 -1.3069358,-1.240318 V 2.0387287 c 0,-0.6821756 0.5881211,-1.24031765 1.3069358,-1.24031765 h 8.495083 c 0.718814,0 1.306937,0.55814205 1.306937,1.24031765 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.10273" />
|
|
98
|
+
<g
|
|
99
|
+
style="fill:#000000;fill-opacity:1"
|
|
100
|
+
id="g29"
|
|
101
|
+
transform="matrix(0.57059908,0,0,0.57059908,-44.407411,0.86812158)">
|
|
102
|
+
<g
|
|
103
|
+
id="use28"
|
|
104
|
+
transform="translate(92,8.1568356)">
|
|
105
|
+
<path
|
|
106
|
+
style="stroke:none"
|
|
107
|
+
d="M 2.664062,-5.332031 1.878906,-2.652344 C 2.613281,-3.75 3.175781,-4.46875 3.570312,-4.816406 c 0.390626,-0.34375 0.765626,-0.515625 1.125,-0.515625 0.199219,0 0.359376,0.0625 0.488282,0.191406 C 5.3125,-5.011719 5.375,-4.839844 5.375,-4.632812 c 0,0.234374 -0.058594,0.550781 -0.171875,0.945312 l -0.71875,2.480469 c -0.082031,0.285156 -0.125,0.460937 -0.125,0.523437 0,0.054688 0.015625,0.101563 0.050781,0.136719 0.03125,0.039063 0.0625,0.058594 0.097656,0.058594 0.046876,0 0.105469,-0.027344 0.171876,-0.078125 0.207031,-0.164063 0.4375,-0.414063 0.683593,-0.753906 l 0.183594,0.113281 C 5.179688,-0.683594 4.835938,-0.3125 4.507812,-0.0898438 4.28125,0.0625 4.078125,0.140625 3.894531,0.140625 3.75,0.140625 3.632812,0.0976562 3.546875,0.0078125 3.460938,-0.078125 3.417969,-0.199219 3.417969,-0.347656 c 0,-0.1875 0.066406,-0.511719 0.199219,-0.972656 L 4.300781,-3.6875 c 0.085938,-0.296875 0.132813,-0.527344 0.132813,-0.691406 0,-0.078125 -0.027344,-0.140625 -0.078125,-0.191406 -0.050781,-0.050782 -0.113281,-0.074219 -0.1875,-0.074219 -0.109375,0 -0.242188,0.046875 -0.394531,0.140625 -0.292969,0.175781 -0.59375,0.46875 -0.910157,0.875 -0.3125,0.40625 -0.644531,0.925781 -0.996093,1.558594 -0.183594,0.335937 -0.335938,0.699218 -0.457032,1.097656 L 1.113281,0 H 0.230469 l 1.070312,-3.6875 c 0.125,-0.445312 0.191407,-0.714844 0.191407,-0.804688 0,-0.085937 -0.035157,-0.160156 -0.105469,-0.226562 -0.066407,-0.0625 -0.152344,-0.097656 -0.253907,-0.097656 -0.046874,0 -0.132812,0.00781 -0.25,0.023437 L 0.660156,-4.757812 0.625,-4.96875 Z m 0,0"
|
|
108
|
+
id="path1" />
|
|
109
|
+
</g>
|
|
110
|
+
</g>
|
|
111
|
+
<rect
|
|
112
|
+
style="fill:#f2f2f2;stroke-width:0.488555"
|
|
113
|
+
id="rect1"
|
|
114
|
+
width="5.6538463"
|
|
115
|
+
height="4.2403846"
|
|
116
|
+
x="3.033654"
|
|
117
|
+
y="6.2548075" />
|
|
118
|
+
</svg>
|