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,240 @@
|
|
|
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="svg12"
|
|
9
|
+
sodipodi:docname="resampling2d.svg"
|
|
10
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs16"><filter
|
|
17
|
+
style="color-interpolation-filters:sRGB;"
|
|
18
|
+
inkscape:label="Greyscale"
|
|
19
|
+
id="filter1"
|
|
20
|
+
x="0"
|
|
21
|
+
y="0"
|
|
22
|
+
width="1"
|
|
23
|
+
height="1"><feColorMatrix
|
|
24
|
+
values="0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0 0 0 1 0 "
|
|
25
|
+
id="feColorMatrix1" /></filter></defs><sodipodi:namedview
|
|
26
|
+
id="namedview14"
|
|
27
|
+
pagecolor="#ffffff"
|
|
28
|
+
bordercolor="#000000"
|
|
29
|
+
borderopacity="0.25"
|
|
30
|
+
inkscape:showpageshadow="2"
|
|
31
|
+
inkscape:pageopacity="0.0"
|
|
32
|
+
inkscape:pagecheckerboard="0"
|
|
33
|
+
inkscape:deskcolor="#d1d1d1"
|
|
34
|
+
showgrid="false"
|
|
35
|
+
inkscape:zoom="42.274884"
|
|
36
|
+
inkscape:cx="1.5848654"
|
|
37
|
+
inkscape:cy="6.020123"
|
|
38
|
+
inkscape:window-width="1920"
|
|
39
|
+
inkscape:window-height="1009"
|
|
40
|
+
inkscape:window-x="-8"
|
|
41
|
+
inkscape:window-y="-8"
|
|
42
|
+
inkscape:window-maximized="1"
|
|
43
|
+
inkscape:current-layer="svg12" /><g
|
|
44
|
+
id="g22811-5"
|
|
45
|
+
transform="matrix(1.4849215,0,0.00170202,1.4849215,-2.8117154,-2.8004821)"
|
|
46
|
+
style="filter:url(#filter1)"><rect
|
|
47
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
48
|
+
id="rect10749-79"
|
|
49
|
+
width="2"
|
|
50
|
+
height="2"
|
|
51
|
+
x="2.5999999"
|
|
52
|
+
y="2.5999999" /><rect
|
|
53
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
54
|
+
id="rect10749-7-2"
|
|
55
|
+
width="2"
|
|
56
|
+
height="2"
|
|
57
|
+
x="2.5999999"
|
|
58
|
+
y="4.5999999" /><rect
|
|
59
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
60
|
+
id="rect10749-1-7"
|
|
61
|
+
width="2"
|
|
62
|
+
height="2"
|
|
63
|
+
x="4.5999999"
|
|
64
|
+
y="2.5999999" /><rect
|
|
65
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
66
|
+
id="rect10749-7-5-8"
|
|
67
|
+
width="2"
|
|
68
|
+
height="2"
|
|
69
|
+
x="4.5999999"
|
|
70
|
+
y="4.5999999" /><rect
|
|
71
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
72
|
+
id="rect10749-8-0"
|
|
73
|
+
width="2"
|
|
74
|
+
height="2"
|
|
75
|
+
x="6.5999999"
|
|
76
|
+
y="2.5999999" /><rect
|
|
77
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
78
|
+
id="rect10749-7-0-6"
|
|
79
|
+
width="2"
|
|
80
|
+
height="2"
|
|
81
|
+
x="6.5999999"
|
|
82
|
+
y="4.5999999" /><rect
|
|
83
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
84
|
+
id="rect10749-1-4-7"
|
|
85
|
+
width="2"
|
|
86
|
+
height="2"
|
|
87
|
+
x="8.6000004"
|
|
88
|
+
y="2.5999999" /><rect
|
|
89
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
90
|
+
id="rect10749-7-5-5-0"
|
|
91
|
+
width="2"
|
|
92
|
+
height="2"
|
|
93
|
+
x="8.6000004"
|
|
94
|
+
y="4.5999999" /><rect
|
|
95
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
96
|
+
id="rect10749-84-1"
|
|
97
|
+
width="2"
|
|
98
|
+
height="2"
|
|
99
|
+
x="2.5999999"
|
|
100
|
+
y="6.5999999" /><rect
|
|
101
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
102
|
+
id="rect10749-7-8-7"
|
|
103
|
+
width="2"
|
|
104
|
+
height="2"
|
|
105
|
+
x="2.5999999"
|
|
106
|
+
y="8.6000004" /><rect
|
|
107
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
108
|
+
id="rect10749-1-1-5"
|
|
109
|
+
width="2"
|
|
110
|
+
height="2"
|
|
111
|
+
x="4.5999999"
|
|
112
|
+
y="6.5999999" /><rect
|
|
113
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
114
|
+
id="rect10749-7-5-4-6"
|
|
115
|
+
width="2"
|
|
116
|
+
height="2"
|
|
117
|
+
x="4.5999999"
|
|
118
|
+
y="8.6000004" /><rect
|
|
119
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
120
|
+
id="rect10749-8-8-3"
|
|
121
|
+
width="2"
|
|
122
|
+
height="2"
|
|
123
|
+
x="6.5999999"
|
|
124
|
+
y="6.5999999" /><rect
|
|
125
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
126
|
+
id="rect10749-7-0-4-5"
|
|
127
|
+
width="2"
|
|
128
|
+
height="2"
|
|
129
|
+
x="6.5999999"
|
|
130
|
+
y="8.6000004" /><rect
|
|
131
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
132
|
+
id="rect10749-1-4-3-0"
|
|
133
|
+
width="2"
|
|
134
|
+
height="2"
|
|
135
|
+
x="8.6000004"
|
|
136
|
+
y="6.5999999" /><rect
|
|
137
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
138
|
+
id="rect10749-7-5-5-3-7"
|
|
139
|
+
width="2"
|
|
140
|
+
height="2"
|
|
141
|
+
x="8.6000004"
|
|
142
|
+
y="8.6000004" /></g><g
|
|
143
|
+
id="g22811"
|
|
144
|
+
transform="matrix(0.94086323,0,-1.8570871e-4,0.94086323,2.9738268,2.9665357)"><rect
|
|
145
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
146
|
+
id="rect10749"
|
|
147
|
+
width="2"
|
|
148
|
+
height="2"
|
|
149
|
+
x="2.5999999"
|
|
150
|
+
y="2.5999999" /><rect
|
|
151
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
152
|
+
id="rect10749-7"
|
|
153
|
+
width="2"
|
|
154
|
+
height="2"
|
|
155
|
+
x="2.5999999"
|
|
156
|
+
y="4.5999999" /><rect
|
|
157
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
158
|
+
id="rect10749-1"
|
|
159
|
+
width="2"
|
|
160
|
+
height="2"
|
|
161
|
+
x="4.5999999"
|
|
162
|
+
y="2.5999999" /><rect
|
|
163
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
164
|
+
id="rect10749-7-5"
|
|
165
|
+
width="2"
|
|
166
|
+
height="2"
|
|
167
|
+
x="4.5999999"
|
|
168
|
+
y="4.5999999" /><rect
|
|
169
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
170
|
+
id="rect10749-8"
|
|
171
|
+
width="2"
|
|
172
|
+
height="2"
|
|
173
|
+
x="6.5999999"
|
|
174
|
+
y="2.5999999" /><rect
|
|
175
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
176
|
+
id="rect10749-7-0"
|
|
177
|
+
width="2"
|
|
178
|
+
height="2"
|
|
179
|
+
x="6.5999999"
|
|
180
|
+
y="4.5999999" /><rect
|
|
181
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
182
|
+
id="rect10749-1-4"
|
|
183
|
+
width="2"
|
|
184
|
+
height="2"
|
|
185
|
+
x="8.6000004"
|
|
186
|
+
y="2.5999999" /><rect
|
|
187
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
188
|
+
id="rect10749-7-5-5"
|
|
189
|
+
width="2"
|
|
190
|
+
height="2"
|
|
191
|
+
x="8.6000004"
|
|
192
|
+
y="4.5999999" /><rect
|
|
193
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
194
|
+
id="rect10749-84"
|
|
195
|
+
width="2"
|
|
196
|
+
height="2"
|
|
197
|
+
x="2.5999999"
|
|
198
|
+
y="6.5999999" /><rect
|
|
199
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
200
|
+
id="rect10749-7-8"
|
|
201
|
+
width="2"
|
|
202
|
+
height="2"
|
|
203
|
+
x="2.5999999"
|
|
204
|
+
y="8.6000004" /><rect
|
|
205
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
206
|
+
id="rect10749-1-1-9"
|
|
207
|
+
width="2"
|
|
208
|
+
height="2"
|
|
209
|
+
x="4.5999999"
|
|
210
|
+
y="6.5999999" /><rect
|
|
211
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
212
|
+
id="rect10749-7-5-4-4"
|
|
213
|
+
width="2"
|
|
214
|
+
height="2"
|
|
215
|
+
x="4.5999999"
|
|
216
|
+
y="8.6000004" /><rect
|
|
217
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
218
|
+
id="rect10749-8-8-8"
|
|
219
|
+
width="2"
|
|
220
|
+
height="2"
|
|
221
|
+
x="6.5999999"
|
|
222
|
+
y="6.5999999" /><rect
|
|
223
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
224
|
+
id="rect10749-7-0-4-8"
|
|
225
|
+
width="2"
|
|
226
|
+
height="2"
|
|
227
|
+
x="6.5999999"
|
|
228
|
+
y="8.6000004" /><rect
|
|
229
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
230
|
+
id="rect10749-1-4-3-2"
|
|
231
|
+
width="2"
|
|
232
|
+
height="2"
|
|
233
|
+
x="8.6000004"
|
|
234
|
+
y="6.5999999" /><rect
|
|
235
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
236
|
+
id="rect10749-7-5-5-3-4"
|
|
237
|
+
width="2"
|
|
238
|
+
height="2"
|
|
239
|
+
x="8.6000004"
|
|
240
|
+
y="8.6000004" /></g></svg>
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg9"
|
|
9
|
+
sodipodi:docname="reset_positions.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"><sodipodi:namedview
|
|
15
|
+
id="namedview9"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1484375"
|
|
24
|
+
inkscape:cx="128"
|
|
25
|
+
inkscape:cy="127.84119"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg9" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
</defs>
|
|
46
|
+
<path
|
|
47
|
+
d="M 78.236036,78.365176 H 15.25264 V 15.38178 H 78.236036 Z M 20.251521,73.366296 H 73.237156 V 20.380661 H 20.251521 Z"
|
|
48
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path1" /><path
|
|
51
|
+
d="M 159.34954,78.365176 H 96.363646 V 15.38178 h 62.985894 z m -57.98701,-4.99888 h 52.98813 V 20.380661 h -52.98813 z"
|
|
52
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
53
|
+
stroke-linecap="round"
|
|
54
|
+
id="path2" /><path
|
|
55
|
+
d="m 240.33141,78.365176 h -62.9834 V 15.38178 h 62.9834 z m -57.98452,-4.99888 h 52.98564 V 20.380661 h -52.98564 z"
|
|
56
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
57
|
+
stroke-linecap="round"
|
|
58
|
+
id="path3" /><path
|
|
59
|
+
d="M 78.365176,159.34954 H 15.38178 V 96.363646 H 78.365176 Z M 20.380661,154.35066 H 73.366296 V 101.36253 H 20.380661 Z"
|
|
60
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
61
|
+
stroke-linecap="round"
|
|
62
|
+
id="path4" /><path
|
|
63
|
+
d="M 159.34954,159.34954 H 96.363646 V 96.363646 h 62.985894 z m -57.98701,-4.99888 h 52.98813 v -52.98813 h -52.98813 z"
|
|
64
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
65
|
+
stroke-linecap="round"
|
|
66
|
+
id="path5" /><path
|
|
67
|
+
d="m 240.33141,159.34954 h -62.9834 V 96.363646 h 62.9834 z m -57.98452,-4.99888 h 52.98564 v -52.98813 h -52.98564 z"
|
|
68
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
69
|
+
stroke-linecap="round"
|
|
70
|
+
id="path6" /><path
|
|
71
|
+
d="M 78.365176,240.33141 H 15.38178 v -62.9834 H 78.365176 Z M 20.380661,235.33253 H 73.366296 V 182.34689 H 20.380661 Z"
|
|
72
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
73
|
+
stroke-linecap="round"
|
|
74
|
+
id="path7" /><path
|
|
75
|
+
d="M 159.34954,240.33141 H 96.363646 v -62.9834 h 62.985894 z m -57.98701,-4.99888 h 52.98813 v -52.98564 h -52.98813 z"
|
|
76
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
77
|
+
stroke-linecap="round"
|
|
78
|
+
id="path8" /><path
|
|
79
|
+
d="m 240.33141,240.33141 h -62.9834 v -62.9834 h 62.9834 z m -57.98452,-4.99888 h 52.98564 v -52.98564 h -52.98564 z"
|
|
80
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
81
|
+
stroke-linecap="round"
|
|
82
|
+
id="path9" />
|
|
83
|
+
<g
|
|
84
|
+
id="g22811-1"
|
|
85
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,81.603483,81.603485)"><rect
|
|
86
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
87
|
+
id="rect10749-6"
|
|
88
|
+
width="2"
|
|
89
|
+
height="2"
|
|
90
|
+
x="2.5999999"
|
|
91
|
+
y="2.5999999" /><rect
|
|
92
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
93
|
+
id="rect10749-7-4"
|
|
94
|
+
width="2"
|
|
95
|
+
height="2"
|
|
96
|
+
x="2.5999999"
|
|
97
|
+
y="4.5999999" /><rect
|
|
98
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
99
|
+
id="rect10749-1-3"
|
|
100
|
+
width="2"
|
|
101
|
+
height="2"
|
|
102
|
+
x="4.5999999"
|
|
103
|
+
y="2.5999999" /><rect
|
|
104
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
105
|
+
id="rect10749-7-5-48"
|
|
106
|
+
width="2"
|
|
107
|
+
height="2"
|
|
108
|
+
x="4.5999999"
|
|
109
|
+
y="4.5999999" /><rect
|
|
110
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
111
|
+
id="rect10749-8-6"
|
|
112
|
+
width="2"
|
|
113
|
+
height="2"
|
|
114
|
+
x="6.5999999"
|
|
115
|
+
y="2.5999999" /><rect
|
|
116
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
117
|
+
id="rect10749-7-0-31"
|
|
118
|
+
width="2"
|
|
119
|
+
height="2"
|
|
120
|
+
x="6.5999999"
|
|
121
|
+
y="4.5999999" /><rect
|
|
122
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
123
|
+
id="rect10749-1-4-05"
|
|
124
|
+
width="2"
|
|
125
|
+
height="2"
|
|
126
|
+
x="8.6000004"
|
|
127
|
+
y="2.5999999" /><rect
|
|
128
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
129
|
+
id="rect10749-7-5-5-33"
|
|
130
|
+
width="2"
|
|
131
|
+
height="2"
|
|
132
|
+
x="8.6000004"
|
|
133
|
+
y="4.5999999" /><rect
|
|
134
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
135
|
+
id="rect10749-84-1"
|
|
136
|
+
width="2"
|
|
137
|
+
height="2"
|
|
138
|
+
x="2.5999999"
|
|
139
|
+
y="6.5999999" /><rect
|
|
140
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
141
|
+
id="rect10749-7-8-7"
|
|
142
|
+
width="2"
|
|
143
|
+
height="2"
|
|
144
|
+
x="2.5999999"
|
|
145
|
+
y="8.6000004" /><rect
|
|
146
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
147
|
+
id="rect10749-1-1-05"
|
|
148
|
+
width="2"
|
|
149
|
+
height="2"
|
|
150
|
+
x="4.5999999"
|
|
151
|
+
y="6.5999999" /><rect
|
|
152
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
153
|
+
id="rect10749-7-5-4-5"
|
|
154
|
+
width="2"
|
|
155
|
+
height="2"
|
|
156
|
+
x="4.5999999"
|
|
157
|
+
y="8.6000004" /><rect
|
|
158
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
159
|
+
id="rect10749-8-8-78"
|
|
160
|
+
width="2"
|
|
161
|
+
height="2"
|
|
162
|
+
x="6.5999999"
|
|
163
|
+
y="6.5999999" /><rect
|
|
164
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
165
|
+
id="rect10749-7-0-4-5"
|
|
166
|
+
width="2"
|
|
167
|
+
height="2"
|
|
168
|
+
x="6.5999999"
|
|
169
|
+
y="8.6000004" /><rect
|
|
170
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
171
|
+
id="rect10749-1-4-3-9"
|
|
172
|
+
width="2"
|
|
173
|
+
height="2"
|
|
174
|
+
x="8.6000004"
|
|
175
|
+
y="6.5999999" /><rect
|
|
176
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
177
|
+
id="rect10749-7-5-5-3-5"
|
|
178
|
+
width="2"
|
|
179
|
+
height="2"
|
|
180
|
+
x="8.6000004"
|
|
181
|
+
y="8.6000004" /></g><path
|
|
182
|
+
fill="#008000"
|
|
183
|
+
d="m 146.53834,126.54844 74.68975,-20.01307 -15.62187,27.05791 c 43.44579,34.10275 44.21193,79.64155 31.449,117.36949 -3.24206,-33.43937 -20.66894,-57.93173 -54.49134,-77.45903 l -16.01248,27.7343 z"
|
|
184
|
+
id="path2-9"
|
|
185
|
+
style="stroke-width:11.7164" /></svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
|
|
2
|
+
|
|
3
|
+
<defs>
|
|
4
|
+
</defs>
|
|
5
|
+
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
|
|
6
|
+
<path d="M 37.631 50.017 c 0.017 0.087 0.05 0.168 0.075 0.253 c 0.03 0.103 0.054 0.207 0.095 0.307 c 0.042 0.102 0.1 0.194 0.153 0.29 c 0.041 0.075 0.074 0.153 0.122 0.225 c 0.22 0.329 0.503 0.612 0.832 0.832 c 0.071 0.047 0.148 0.08 0.222 0.121 c 0.097 0.054 0.191 0.112 0.294 0.155 c 0.098 0.04 0.199 0.063 0.3 0.093 c 0.087 0.026 0.17 0.059 0.26 0.077 c 0.194 0.039 0.39 0.059 0.587 0.059 h 24.253 c 1.657 0 3 -1.343 3 -3 s -1.343 -3 -3 -3 H 47.814 l 28.952 -28.954 c 1.172 -1.171 1.172 -3.071 0 -4.243 c -1.172 -1.171 -3.07 -1.171 -4.242 0 L 43.572 42.186 V 25.174 c 0 -1.657 -1.343 -3 -3 -3 s -3 1.343 -3 3 v 24.254 C 37.572 49.626 37.592 49.823 37.631 50.017 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
7
|
+
<path d="M 87 0 H 3 C 1.343 0 0 1.343 0 3 v 84 c 0 1.657 1.343 3 3 3 h 84 c 1.657 0 3 -1.343 3 -3 V 3 C 90 1.343 88.657 0 87 0 z M 84 84 H 6 V 6 h 78 V 84 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,0,0); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,171 @@
|
|
|
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="svg12"
|
|
9
|
+
sodipodi:docname="reverse_signal_x.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="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="3.9030267"
|
|
29
|
+
inkscape:cy="7.2738224"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
id="g3"
|
|
38
|
+
transform="matrix(1.1242236,0,0,1.1242236,-0.49159064,-0.86978801)">
|
|
39
|
+
<g
|
|
40
|
+
id="g2">
|
|
41
|
+
<rect
|
|
42
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
43
|
+
id="rect28089"
|
|
44
|
+
width="0.47309414"
|
|
45
|
+
height="7.6168156"
|
|
46
|
+
x="3.3329601"
|
|
47
|
+
y="3.1933856" />
|
|
48
|
+
<rect
|
|
49
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.354924"
|
|
50
|
+
id="rect28089-7"
|
|
51
|
+
width="0.47309414"
|
|
52
|
+
height="5.9373312"
|
|
53
|
+
x="6.6469727"
|
|
54
|
+
y="-6.5286999"
|
|
55
|
+
transform="rotate(90)" />
|
|
56
|
+
</g>
|
|
57
|
+
<g
|
|
58
|
+
id="g1"
|
|
59
|
+
transform="matrix(0.7628232,0,0,0.7628232,-1.7600818,1.8046239)">
|
|
60
|
+
<path
|
|
61
|
+
style="fill:none;fill-opacity:0.817241;stroke:#ff0000;stroke-width:0.402;stroke-opacity:1"
|
|
62
|
+
d="m 3.5245514,10.005941 c 0,0.09462 1.5139012,-0.5677129 1.5139012,-0.5677129 L 5.9846409,8.2081834 7.0727574,5.653475 8.2554928,4.4234302 10.195179,3.8557173"
|
|
63
|
+
id="path32265" />
|
|
64
|
+
<circle
|
|
65
|
+
cx="8.2457867"
|
|
66
|
+
cy="4.4486394"
|
|
67
|
+
r="0.58283854"
|
|
68
|
+
id="circle20-2"
|
|
69
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
70
|
+
<circle
|
|
71
|
+
cx="7.0560775"
|
|
72
|
+
cy="5.641458"
|
|
73
|
+
r="0.58283854"
|
|
74
|
+
id="circle22-3"
|
|
75
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
76
|
+
<circle
|
|
77
|
+
cx="6.0082951"
|
|
78
|
+
cy="8.2554922"
|
|
79
|
+
r="0.58283854"
|
|
80
|
+
id="circle24-6"
|
|
81
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
82
|
+
<circle
|
|
83
|
+
cx="5.0078225"
|
|
84
|
+
cy="9.4161282"
|
|
85
|
+
r="0.58283854"
|
|
86
|
+
id="circle26-0"
|
|
87
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
88
|
+
<circle
|
|
89
|
+
cx="3.534256"
|
|
90
|
+
cy="10.017958"
|
|
91
|
+
r="0.58283854"
|
|
92
|
+
id="circle28-1"
|
|
93
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
94
|
+
<circle
|
|
95
|
+
cx="10.147869"
|
|
96
|
+
cy="3.9030263"
|
|
97
|
+
r="0.58283854"
|
|
98
|
+
id="circle28-1-2"
|
|
99
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
100
|
+
</g>
|
|
101
|
+
</g>
|
|
102
|
+
<g
|
|
103
|
+
id="g4"
|
|
104
|
+
transform="matrix(1.1242236,0,0,1.1242236,-1.2485413,-0.86978801)">
|
|
105
|
+
<g
|
|
106
|
+
id="g2-3"
|
|
107
|
+
transform="translate(6.8923756)">
|
|
108
|
+
<rect
|
|
109
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
110
|
+
id="rect28089-3"
|
|
111
|
+
width="0.47309414"
|
|
112
|
+
height="7.6168156"
|
|
113
|
+
x="3.3329601"
|
|
114
|
+
y="3.1933856" />
|
|
115
|
+
<rect
|
|
116
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.354924"
|
|
117
|
+
id="rect28089-7-3"
|
|
118
|
+
width="0.47309414"
|
|
119
|
+
height="5.9373312"
|
|
120
|
+
x="6.6469727"
|
|
121
|
+
y="-6.5286999"
|
|
122
|
+
transform="rotate(90)" />
|
|
123
|
+
</g>
|
|
124
|
+
<path
|
|
125
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.306655;stroke-opacity:1"
|
|
126
|
+
d="m 13.079535,9.4373878 c 0,0.072178 -1.154839,-0.4330645 -1.154839,-0.4330645 L 11.202922,8.0660166 10.372882,6.1172258 9.4706636,5.1789191 7.9910259,4.7458545"
|
|
127
|
+
id="path32265-2" />
|
|
128
|
+
<circle
|
|
129
|
+
cx="-9.4780674"
|
|
130
|
+
cy="5.1981492"
|
|
131
|
+
r="0.44460276"
|
|
132
|
+
id="circle20-2-9"
|
|
133
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
134
|
+
transform="scale(-1,1)" />
|
|
135
|
+
<circle
|
|
136
|
+
cx="-10.385606"
|
|
137
|
+
cy="6.1080589"
|
|
138
|
+
r="0.44460276"
|
|
139
|
+
id="circle22-3-0"
|
|
140
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
141
|
+
transform="scale(-1,1)" />
|
|
142
|
+
<circle
|
|
143
|
+
cx="-11.184878"
|
|
144
|
+
cy="8.1021051"
|
|
145
|
+
r="0.44460276"
|
|
146
|
+
id="circle24-6-4"
|
|
147
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
148
|
+
transform="scale(-1,1)" />
|
|
149
|
+
<circle
|
|
150
|
+
cx="-11.948062"
|
|
151
|
+
cy="8.9874649"
|
|
152
|
+
r="0.44460276"
|
|
153
|
+
id="circle26-0-6"
|
|
154
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
155
|
+
transform="scale(-1,1)" />
|
|
156
|
+
<circle
|
|
157
|
+
cx="-13.072132"
|
|
158
|
+
cy="9.4465542"
|
|
159
|
+
r="0.44460276"
|
|
160
|
+
id="circle28-1-8"
|
|
161
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
162
|
+
transform="scale(-1,1)" />
|
|
163
|
+
<circle
|
|
164
|
+
cx="-8.0271149"
|
|
165
|
+
cy="4.7819428"
|
|
166
|
+
r="0.44460276"
|
|
167
|
+
id="circle28-1-2-8"
|
|
168
|
+
style="fill:#5599ff;stroke-width:0.148201"
|
|
169
|
+
transform="scale(-1,1)" />
|
|
170
|
+
</g>
|
|
171
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
|
|
2
|
+
<!-- Circle representing the clock face -->
|
|
3
|
+
<circle cx="50" cy="50" r="45" stroke="black" stroke-width="2" fill="none"/>
|
|
4
|
+
|
|
5
|
+
<!-- Sine wave line -->
|
|
6
|
+
<path d="M 10 50 Q 25 30, 40 50 T 70 50 T 90 50" stroke="black" stroke-width="2" fill="none"/>
|
|
7
|
+
|
|
8
|
+
<!-- Clock hands -->
|
|
9
|
+
<line x1="50" y1="50" x2="50" y2="20" stroke="black" stroke-width="2"/>
|
|
10
|
+
<line x1="50" y1="50" x2="70" y2="50" stroke="black" stroke-width="2"/>
|
|
11
|
+
</svg>
|