datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__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.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.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.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -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="svg6"
|
|
9
|
+
sodipodi:docname="delete_results.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="defs10" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview8"
|
|
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="5.2499999"
|
|
28
|
+
inkscape:cy="4.4927884"
|
|
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="svg6"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<g
|
|
38
|
+
id="g1"
|
|
39
|
+
transform="matrix(0.77403846,0,0,0.77403846,1.5930314,1.5817308)">
|
|
40
|
+
<path
|
|
41
|
+
d="M 0.45591186,0 C 0.20418398,0 0,0.1689063 0,0.3789063 V 13.621094 C 0,13.831194 0.20418398,14 0.45591186,14 H 4.6167432 c 0.2518147,0 0.4542171,-0.168806 0.4542171,-0.378906 V 0.3789063 C 5.0709603,0.1689063 4.8685579,0 4.6167432,0 Z M 1.0508006,1.0585938 H 4.0201597 V 4.2734376 H 1.0508006 Z m 0,4.2832032 H 4.0201597 V 8.5566407 H 1.0508006 Z m 0,4.2832026 H 4.0201597 V 12.841797 H 1.0508006 Z"
|
|
42
|
+
id="path2"
|
|
43
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#80b3ff;fill-opacity:1;stroke:#d45500;stroke-width:0.0120351"
|
|
46
|
+
d="M 0.58881375,2.5672787 V 0.5737384 H 2.5354802 4.4821465 V 2.5672787 4.5608189 H 2.5354802 0.58881375 Z"
|
|
47
|
+
id="path1898" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#e6cccc;fill-opacity:1;stroke:#d45500;stroke-width:0.012067"
|
|
50
|
+
d="M 0.58870016,6.9646774 V 4.9711544 H 2.5354802 4.4822601 v 1.993523 1.9935231 H 2.5354802 0.58870016 Z"
|
|
51
|
+
id="path1974" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d45500;stroke-width:0.0120347"
|
|
54
|
+
d="M 0.58894791,11.362075 V 9.3685358 H 2.5354801 4.4820123 v 1.9935392 1.99354 H 2.5354801 0.58894791 Z"
|
|
55
|
+
id="path2050" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 4.9876524,0 C 4.7359245,0 4.5317405,0.1689063 4.5317405,0.3789063 V 13.621094 C 4.5317405,13.831194 4.7359245,14 4.9876524,14 H 9.1484835 C 9.4002982,14 9.602701,13.831194 9.602701,13.621094 V 0.3789063 C 9.602701,0.1689063 9.4002982,0 9.1484835,0 Z M 5.5825411,1.0585938 H 8.5519002 V 4.2734376 H 5.5825411 Z m 0,4.2832032 H 8.5519002 V 8.5566407 H 5.5825411 Z m 0,4.2832026 H 8.5519002 V 12.841797 H 5.5825411 Z"
|
|
58
|
+
id="path2-7"
|
|
59
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
60
|
+
<path
|
|
61
|
+
style="fill:#e9afaf;fill-opacity:1;stroke:#d45500;stroke-width:0.0120351"
|
|
62
|
+
d="M 5.1205543,2.5672787 V 0.5737384 H 7.0672208 9.0138873 V 2.5672787 4.5608189 H 7.0672208 5.1205543 Z"
|
|
63
|
+
id="path1898-8" />
|
|
64
|
+
<path
|
|
65
|
+
style="fill:#aaccff;fill-opacity:1;stroke:#d45500;stroke-width:0.012067"
|
|
66
|
+
d="M 5.1204407,6.9646774 V 4.9711544 H 7.0672208 9.014001 v 1.993523 1.9935231 H 7.0672208 5.1204407 Z"
|
|
67
|
+
id="path1974-1" />
|
|
68
|
+
<path
|
|
69
|
+
style="fill:#0066ff;fill-opacity:1;stroke:#d45500;stroke-width:0.0120347"
|
|
70
|
+
d="M 5.1206884,11.362075 V 9.3685358 h 1.9465323 1.9465321 v 1.9935392 1.99354 H 7.0672207 5.1206884 Z"
|
|
71
|
+
id="path2050-7" />
|
|
72
|
+
<path
|
|
73
|
+
d="M 9.4849749,0 C 9.233247,0 9.0290627,0.1689063 9.0290627,0.3789063 V 13.621094 C 9.0290627,13.831194 9.233247,14 9.4849749,14 h 4.1608311 c 0.251815,0 0.454217,-0.168806 0.454217,-0.378906 V 0.3789063 C 14.100023,0.1689063 13.897621,0 13.645806,0 Z m 0.5948891,1.0585938 h 2.969359 v 3.2148438 h -2.969359 z m 0,4.2832032 h 2.969359 v 3.2148438 h -2.969359 z m 0,4.2832027 h 2.969359 v 3.2167973 h -2.969359 z"
|
|
74
|
+
id="path2-3"
|
|
75
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
76
|
+
<path
|
|
77
|
+
style="fill:#aaccff;fill-opacity:1;stroke:#d45500;stroke-width:0.0120351"
|
|
78
|
+
d="M 9.6178763,2.5672788 V 0.5737384 h 1.9466667 1.946666 V 2.5672788 4.5608189 H 11.564543 9.6178763 Z"
|
|
79
|
+
id="path1898-1" />
|
|
80
|
+
<path
|
|
81
|
+
style="fill:#e6cccc;fill-opacity:1;stroke:#d45500;stroke-width:0.012067"
|
|
82
|
+
d="m 9.6177626,6.9646774 v -1.993523 h 1.9467804 1.94678 v 1.993523 1.9935232 h -1.94678 -1.9467804 z"
|
|
83
|
+
id="path1974-4" />
|
|
84
|
+
<path
|
|
85
|
+
style="fill:#afdde9;fill-opacity:1;stroke:#d45500;stroke-width:0.0120347"
|
|
86
|
+
d="M 9.6180108,11.362075 V 9.3685358 h 1.9465322 1.946532 v 1.9935392 1.99354 H 11.564543 9.6180108 Z"
|
|
87
|
+
id="path2050-4" />
|
|
88
|
+
</g>
|
|
89
|
+
<g
|
|
90
|
+
transform="translate(9.0021101,-1035.6192)"
|
|
91
|
+
id="g10">
|
|
92
|
+
<circle
|
|
93
|
+
cx="1.7804884"
|
|
94
|
+
cy="1046.4354"
|
|
95
|
+
r="2.9268293"
|
|
96
|
+
fill="#f44336"
|
|
97
|
+
id="circle2" />
|
|
98
|
+
<g
|
|
99
|
+
fill="#ffffff"
|
|
100
|
+
id="g8">
|
|
101
|
+
<path
|
|
102
|
+
d="m 3.334781,1047.3665 -0.6207805,0.6208 -2.48312193,-2.4831 0.6207805,-0.6208 z"
|
|
103
|
+
id="path4" />
|
|
104
|
+
<path
|
|
105
|
+
d="m 0.8493176,1047.9896 -0.6207805,-0.6207 2.483122,-2.4832 0.6207805,0.6208 z"
|
|
106
|
+
id="path6-2" />
|
|
107
|
+
</g>
|
|
108
|
+
</g>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,156 @@
|
|
|
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="fw1e2.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="45.254834"
|
|
28
|
+
inkscape:cx="5.203864"
|
|
29
|
+
inkscape:cy="6.9053397"
|
|
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
|
+
<path
|
|
37
|
+
d="M 5.6548842,9.6861357 V 9.3813886 h 2.6901959 v 0.3047471 c 0,0.041251 0.016641,0.076989 0.049919,0.1071126 0.033277,0.030108 0.072681,0.045199 0.1182114,0.045199 0.045531,0 0.084934,-0.015001 0.1182434,-0.045255 L 9.3039948,9.1838146 c 0.033277,-0.030125 0.049919,-0.065858 0.049919,-0.1071165 0,-0.041251 -0.016641,-0.07696 -0.049919,-0.1071126 L 8.6314511,8.3601771 c -0.033308,-0.030148 -0.072713,-0.045227 -0.118244,-0.045227 -0.045531,0 -0.084934,0.015074 -0.1182115,0.045227 -0.033277,0.030181 -0.049919,0.06589 -0.049919,0.107144 V 8.7720402 H 5.6548844 V 8.4673497 c 0,-0.041285 -0.016637,-0.076989 -0.049884,-0.1071412 -0.033306,-0.030148 -0.072746,-0.045233 -0.1182434,-0.045233 -0.045531,0 -0.084934,0.015074 -0.1182435,0.045233 L 4.6960052,8.9696141 c -0.033277,0.030142 -0.049919,0.065858 -0.049919,0.1071126 0,0.041257 0.016636,0.076992 0.049919,0.1071165 l 0.672509,0.6094051 c 0.033305,0.030108 0.072713,0.045199 0.1182434,0.045199 0.045498,0 0.084934,-0.015074 0.1182434,-0.045199 0.033278,-0.030108 0.049884,-0.065829 0.049883,-0.1071126 z"
|
|
38
|
+
id="path1"
|
|
39
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.373449" />
|
|
40
|
+
<g
|
|
41
|
+
id="g2"
|
|
42
|
+
transform="translate(-4.1723251e-7,2.051538)">
|
|
43
|
+
<g
|
|
44
|
+
id="g3-8"
|
|
45
|
+
transform="matrix(1.1543813,0,0,2.3267748,-1.4939666,-10.848016)"
|
|
46
|
+
style="stroke:#0000ff">
|
|
47
|
+
<path
|
|
48
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.184658;stroke-opacity:1"
|
|
49
|
+
d="M 1.7590282,8.3181038 C 3.5157466,8.3066902 4.3365731,8.1572145 4.7032298,7.9275705 5.194894,7.6196319 5.0924775,7.5686178 5.3419317,7.1937674 5.6210089,6.6893723 5.8086099,6.3627729 5.8086099,6.3627729 L 6.4789548,5.5325897 7.3699451,5.2718121"
|
|
50
|
+
id="path32265-5"
|
|
51
|
+
sodipodi:nodetypes="cszccc" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.184658;stroke-opacity:1"
|
|
54
|
+
d="M 12.951628,8.3181038 C 11.194909,8.3066902 10.374083,8.1572145 10.007426,7.9275705 9.515762,7.6196319 9.6181785,7.5686178 9.3687243,7.1937674 9.0896471,6.6893723 8.9020461,6.3627729 8.9020461,6.3627729 L 8.2317012,5.5325897 7.3407109,5.2718121"
|
|
55
|
+
id="path32265-7-0"
|
|
56
|
+
sodipodi:nodetypes="cszccc" />
|
|
57
|
+
</g>
|
|
58
|
+
<circle
|
|
59
|
+
cx="6.0936546"
|
|
60
|
+
cy="2.0128746"
|
|
61
|
+
r="0.30922806"
|
|
62
|
+
id="circle20-2-2"
|
|
63
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
64
|
+
<circle
|
|
65
|
+
cx="5.1986403"
|
|
66
|
+
cy="3.9998255"
|
|
67
|
+
r="0.30922806"
|
|
68
|
+
id="circle22-3-5"
|
|
69
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
70
|
+
<circle
|
|
71
|
+
cx="4.3036265"
|
|
72
|
+
cy="7.0663824"
|
|
73
|
+
r="0.30922806"
|
|
74
|
+
id="circle24-6-1"
|
|
75
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
76
|
+
<circle
|
|
77
|
+
cx="3.4086125"
|
|
78
|
+
cy="8.0471239"
|
|
79
|
+
r="0.30922806"
|
|
80
|
+
id="circle26-0-3"
|
|
81
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
82
|
+
<circle
|
|
83
|
+
cx="2.5135987"
|
|
84
|
+
cy="8.3438177"
|
|
85
|
+
r="0.30922806"
|
|
86
|
+
id="circle28-1-9"
|
|
87
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
88
|
+
<circle
|
|
89
|
+
cx="0.7235707"
|
|
90
|
+
cy="8.4973612"
|
|
91
|
+
r="0.30922806"
|
|
92
|
+
id="circle28-1-1-0"
|
|
93
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
94
|
+
<circle
|
|
95
|
+
cx="1.6185848"
|
|
96
|
+
cy="8.4735785"
|
|
97
|
+
r="0.30922806"
|
|
98
|
+
id="circle28-1-31-5"
|
|
99
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
100
|
+
<circle
|
|
101
|
+
cx="-7.9063458"
|
|
102
|
+
cy="2.0128746"
|
|
103
|
+
r="0.30922806"
|
|
104
|
+
id="circle20-2-0-7"
|
|
105
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
106
|
+
transform="scale(-1,1)" />
|
|
107
|
+
<circle
|
|
108
|
+
cx="-8.8013601"
|
|
109
|
+
cy="3.9998255"
|
|
110
|
+
r="0.30922806"
|
|
111
|
+
id="circle22-3-2-7"
|
|
112
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
113
|
+
transform="scale(-1,1)" />
|
|
114
|
+
<circle
|
|
115
|
+
cx="-9.6963739"
|
|
116
|
+
cy="7.0663824"
|
|
117
|
+
r="0.30922806"
|
|
118
|
+
id="circle24-6-9-9"
|
|
119
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
120
|
+
transform="scale(-1,1)" />
|
|
121
|
+
<circle
|
|
122
|
+
cx="-10.591388"
|
|
123
|
+
cy="8.0471239"
|
|
124
|
+
r="0.30922806"
|
|
125
|
+
id="circle26-0-2-8"
|
|
126
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
127
|
+
transform="scale(-1,1)" />
|
|
128
|
+
<circle
|
|
129
|
+
cx="-11.486402"
|
|
130
|
+
cy="8.3438177"
|
|
131
|
+
r="0.30922806"
|
|
132
|
+
id="circle28-1-5-1"
|
|
133
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
134
|
+
transform="scale(-1,1)" />
|
|
135
|
+
<circle
|
|
136
|
+
cx="-13.27643"
|
|
137
|
+
cy="8.4973612"
|
|
138
|
+
r="0.30922806"
|
|
139
|
+
id="circle28-1-1-8-6"
|
|
140
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
141
|
+
transform="scale(-1,1)" />
|
|
142
|
+
<circle
|
|
143
|
+
cx="-12.381415"
|
|
144
|
+
cy="8.4735785"
|
|
145
|
+
r="0.30922806"
|
|
146
|
+
id="circle28-1-31-2-3"
|
|
147
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
148
|
+
transform="scale(-1,1)" />
|
|
149
|
+
<circle
|
|
150
|
+
cx="6.9886684"
|
|
151
|
+
cy="1.5026389"
|
|
152
|
+
r="0.30922806"
|
|
153
|
+
id="circle28-1-2-4"
|
|
154
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
155
|
+
</g>
|
|
156
|
+
</svg>
|
|
@@ -0,0 +1,156 @@
|
|
|
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="fwhm.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="45.254834"
|
|
28
|
+
inkscape:cx="5.203864"
|
|
29
|
+
inkscape:cy="6.9053397"
|
|
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
|
+
<path
|
|
37
|
+
d="M 5.7811553,8.1835338 V 7.8787867 h 2.4376569 v 0.3047471 c 0,0.041251 0.015079,0.076989 0.045233,0.1071126 0.030153,0.030108 0.065858,0.045199 0.1071145,0.045199 0.041257,0 0.076961,-0.015001 0.1071434,-0.045255 l 0.609407,-0.6093777 c 0.030153,-0.030125 0.045233,-0.065858 0.045233,-0.1071165 0,-0.041251 -0.015079,-0.07696 -0.045233,-0.1071126 L 8.4783006,6.8575752 c -0.030181,-0.030148 -0.065887,-0.045227 -0.107144,-0.045227 -0.041257,0 -0.076961,0.015074 -0.1071145,0.045227 -0.030153,0.030181 -0.045233,0.06589 -0.045233,0.107144 V 7.2694383 H 5.7811555 V 6.9647478 c 0,-0.041285 -0.015075,-0.076989 -0.045201,-0.1071412 -0.030179,-0.030148 -0.065917,-0.045233 -0.1071434,-0.045233 -0.041257,0 -0.076961,0.015074 -0.1071435,0.045233 L 4.9122899,7.4670122 c -0.030153,0.030142 -0.045233,0.065858 -0.045233,0.1071126 0,0.041257 0.015074,0.076992 0.045233,0.1071165 l 0.609378,0.6094051 c 0.030179,0.030108 0.065887,0.045199 0.1071435,0.045199 0.041227,0 0.076961,-0.015074 0.1071434,-0.045199 0.030154,-0.030108 0.045201,-0.065829 0.0452,-0.1071126 z"
|
|
38
|
+
id="path1"
|
|
39
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.355489" />
|
|
40
|
+
<g
|
|
41
|
+
id="g2"
|
|
42
|
+
transform="translate(-4.1723251e-7,2.051538)">
|
|
43
|
+
<g
|
|
44
|
+
id="g3-8"
|
|
45
|
+
transform="matrix(1.1543813,0,0,2.3267748,-1.4939666,-10.848016)"
|
|
46
|
+
style="stroke:#0000ff">
|
|
47
|
+
<path
|
|
48
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.184658;stroke-opacity:1"
|
|
49
|
+
d="M 1.7590282,8.3181038 C 3.5157466,8.3066902 4.3365731,8.1572145 4.7032298,7.9275705 5.194894,7.6196319 5.0924775,7.5686178 5.3419317,7.1937674 5.6210089,6.6893723 5.8086099,6.3627729 5.8086099,6.3627729 L 6.4789548,5.5325897 7.3699451,5.2718121"
|
|
50
|
+
id="path32265-5"
|
|
51
|
+
sodipodi:nodetypes="cszccc" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.184658;stroke-opacity:1"
|
|
54
|
+
d="M 12.951628,8.3181038 C 11.194909,8.3066902 10.374083,8.1572145 10.007426,7.9275705 9.515762,7.6196319 9.6181785,7.5686178 9.3687243,7.1937674 9.0896471,6.6893723 8.9020461,6.3627729 8.9020461,6.3627729 L 8.2317012,5.5325897 7.3407109,5.2718121"
|
|
55
|
+
id="path32265-7-0"
|
|
56
|
+
sodipodi:nodetypes="cszccc" />
|
|
57
|
+
</g>
|
|
58
|
+
<circle
|
|
59
|
+
cx="6.0936546"
|
|
60
|
+
cy="2.0128746"
|
|
61
|
+
r="0.30922806"
|
|
62
|
+
id="circle20-2-2"
|
|
63
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
64
|
+
<circle
|
|
65
|
+
cx="5.1986403"
|
|
66
|
+
cy="3.9998255"
|
|
67
|
+
r="0.30922806"
|
|
68
|
+
id="circle22-3-5"
|
|
69
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
70
|
+
<circle
|
|
71
|
+
cx="4.3036265"
|
|
72
|
+
cy="7.0663824"
|
|
73
|
+
r="0.30922806"
|
|
74
|
+
id="circle24-6-1"
|
|
75
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
76
|
+
<circle
|
|
77
|
+
cx="3.4086125"
|
|
78
|
+
cy="8.0471239"
|
|
79
|
+
r="0.30922806"
|
|
80
|
+
id="circle26-0-3"
|
|
81
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
82
|
+
<circle
|
|
83
|
+
cx="2.5135987"
|
|
84
|
+
cy="8.3438177"
|
|
85
|
+
r="0.30922806"
|
|
86
|
+
id="circle28-1-9"
|
|
87
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
88
|
+
<circle
|
|
89
|
+
cx="0.7235707"
|
|
90
|
+
cy="8.4973612"
|
|
91
|
+
r="0.30922806"
|
|
92
|
+
id="circle28-1-1-0"
|
|
93
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
94
|
+
<circle
|
|
95
|
+
cx="1.6185848"
|
|
96
|
+
cy="8.4735785"
|
|
97
|
+
r="0.30922806"
|
|
98
|
+
id="circle28-1-31-5"
|
|
99
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
100
|
+
<circle
|
|
101
|
+
cx="-7.9063458"
|
|
102
|
+
cy="2.0128746"
|
|
103
|
+
r="0.30922806"
|
|
104
|
+
id="circle20-2-0-7"
|
|
105
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
106
|
+
transform="scale(-1,1)" />
|
|
107
|
+
<circle
|
|
108
|
+
cx="-8.8013601"
|
|
109
|
+
cy="3.9998255"
|
|
110
|
+
r="0.30922806"
|
|
111
|
+
id="circle22-3-2-7"
|
|
112
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
113
|
+
transform="scale(-1,1)" />
|
|
114
|
+
<circle
|
|
115
|
+
cx="-9.6963739"
|
|
116
|
+
cy="7.0663824"
|
|
117
|
+
r="0.30922806"
|
|
118
|
+
id="circle24-6-9-9"
|
|
119
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
120
|
+
transform="scale(-1,1)" />
|
|
121
|
+
<circle
|
|
122
|
+
cx="-10.591388"
|
|
123
|
+
cy="8.0471239"
|
|
124
|
+
r="0.30922806"
|
|
125
|
+
id="circle26-0-2-8"
|
|
126
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
127
|
+
transform="scale(-1,1)" />
|
|
128
|
+
<circle
|
|
129
|
+
cx="-11.486402"
|
|
130
|
+
cy="8.3438177"
|
|
131
|
+
r="0.30922806"
|
|
132
|
+
id="circle28-1-5-1"
|
|
133
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
134
|
+
transform="scale(-1,1)" />
|
|
135
|
+
<circle
|
|
136
|
+
cx="-13.27643"
|
|
137
|
+
cy="8.4973612"
|
|
138
|
+
r="0.30922806"
|
|
139
|
+
id="circle28-1-1-8-6"
|
|
140
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
141
|
+
transform="scale(-1,1)" />
|
|
142
|
+
<circle
|
|
143
|
+
cx="-12.381415"
|
|
144
|
+
cy="8.4735785"
|
|
145
|
+
r="0.30922806"
|
|
146
|
+
id="circle28-1-31-2-3"
|
|
147
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076"
|
|
148
|
+
transform="scale(-1,1)" />
|
|
149
|
+
<circle
|
|
150
|
+
cx="6.9886684"
|
|
151
|
+
cy="1.5026389"
|
|
152
|
+
r="0.30922806"
|
|
153
|
+
id="circle28-1-2-4"
|
|
154
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.103076" />
|
|
155
|
+
</g>
|
|
156
|
+
</svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
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="svg3"
|
|
9
|
+
sodipodi:docname="histogram.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="defs3" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview3"
|
|
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
|
+
inkscape:zoom="58.071429"
|
|
27
|
+
inkscape:cx="6.9913899"
|
|
28
|
+
inkscape:cy="7"
|
|
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="svg3" />
|
|
35
|
+
<g
|
|
36
|
+
id="g3"
|
|
37
|
+
transform="matrix(1,0,0,1.0782849,-0.22386224,1.2226322)">
|
|
38
|
+
<path
|
|
39
|
+
fill="#4caf50"
|
|
40
|
+
d="M 6.8715867,0 H 7.5239852 V 10.998401 H 6.8715867 Z M 5.8929889,3.3473394 H 6.5453875 V 10.998401 H 5.8929889 Z M 4.9143911,0.9563827 H 5.5667897 V 10.998401 H 4.9143911 Z M 3.9357934,3.8255308 H 4.5881919 V 10.998401 H 3.9357934 Z M 2.9571956,5.2601048 H 3.6095941 V 10.998401 H 2.9571956 Z M 1.9785978,4.3037221 H 2.6309963 V 10.998401 H 1.9785978 Z M 1,6.2164875 H 1.6523985 V 10.998401 H 1 Z"
|
|
41
|
+
id="path1"
|
|
42
|
+
style="stroke-width:0.93091" />
|
|
43
|
+
<path
|
|
44
|
+
fill="#4caf50"
|
|
45
|
+
d="m 7.5318564,0 h -0.652398 v 10.998401 h 0.652398 z m 0.978598,3.3473394 h -0.652399 v 7.6510616 h 0.652399 z M 9.4890524,0.9563827 H 8.8366534 V 10.998401 h 0.652399 z M 10.467649,3.8255308 H 9.8152514 v 7.1728702 h 0.6523976 z m 0.978598,1.434574 h -0.652398 v 5.7382962 h 0.652398 z m 0.978598,-0.9563827 h -0.652398 v 6.6946789 h 0.652398 z m 0.978598,1.9127654 h -0.652398 v 4.7819135 h 0.652398 z"
|
|
46
|
+
id="path1-5"
|
|
47
|
+
style="stroke-width:0.93091" />
|
|
48
|
+
</g>
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
role="img"
|
|
11
|
+
focusable="false"
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
viewBox="0 0 14 14"
|
|
14
|
+
id="svg2"
|
|
15
|
+
version="1.1"
|
|
16
|
+
inkscape:version="0.48.4 r9939"
|
|
17
|
+
width="100%"
|
|
18
|
+
height="100%"
|
|
19
|
+
sodipodi:docname="peak_detect.svg">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata36">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs34" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1600"
|
|
43
|
+
inkscape:window-height="837"
|
|
44
|
+
id="namedview32"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="-2.2542372"
|
|
48
|
+
inkscape:cy="7.0000001"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2" />
|
|
53
|
+
<circle
|
|
54
|
+
sodipodi:ry="3"
|
|
55
|
+
sodipodi:rx="3"
|
|
56
|
+
sodipodi:cy="20"
|
|
57
|
+
sodipodi:cx="8"
|
|
58
|
+
style="fill:#0000ff"
|
|
59
|
+
d="m 11,20 c 0,1.656854 -1.3431458,3 -3,3 -1.6568542,0 -3,-1.343146 -3,-3 0,-1.656854 1.3431458,-3 3,-3 1.6568542,0 3,1.343146 3,3 z"
|
|
60
|
+
id="circle20"
|
|
61
|
+
r="3"
|
|
62
|
+
cy="20"
|
|
63
|
+
cx="8"
|
|
64
|
+
transform="matrix(0.31579,0,0,0.31579,-0.57894728,-0.57894728)" />
|
|
65
|
+
<circle
|
|
66
|
+
sodipodi:ry="3"
|
|
67
|
+
sodipodi:rx="3"
|
|
68
|
+
sodipodi:cy="22"
|
|
69
|
+
sodipodi:cx="16"
|
|
70
|
+
style="fill:#0000ff"
|
|
71
|
+
d="m 19,22 c 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 z"
|
|
72
|
+
id="circle22"
|
|
73
|
+
r="3"
|
|
74
|
+
cy="22"
|
|
75
|
+
cx="16"
|
|
76
|
+
transform="matrix(0.31579,0,0,0.31579,-0.57894728,3.4210527)" />
|
|
77
|
+
<circle
|
|
78
|
+
sodipodi:ry="3"
|
|
79
|
+
sodipodi:rx="3"
|
|
80
|
+
sodipodi:cy="15"
|
|
81
|
+
sodipodi:cx="24"
|
|
82
|
+
style="fill:#0000ff"
|
|
83
|
+
d="m 27,15 c 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 z"
|
|
84
|
+
id="circle24"
|
|
85
|
+
r="3"
|
|
86
|
+
cy="15"
|
|
87
|
+
cx="24"
|
|
88
|
+
transform="matrix(0.31579,0,0,0.31579,-0.57894728,1.4210527)" />
|
|
89
|
+
<circle
|
|
90
|
+
sodipodi:ry="3"
|
|
91
|
+
sodipodi:rx="3"
|
|
92
|
+
sodipodi:cy="20"
|
|
93
|
+
sodipodi:cx="32"
|
|
94
|
+
style="fill:#0000ff"
|
|
95
|
+
d="m 35,20 c 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 1.656854,0 3,1.343146 3,3 z"
|
|
96
|
+
id="circle26"
|
|
97
|
+
r="3"
|
|
98
|
+
cy="20"
|
|
99
|
+
cx="32"
|
|
100
|
+
transform="matrix(0.31579,0,0,0.31579,-0.57894728,1.4210527)" />
|
|
101
|
+
<circle
|
|
102
|
+
sodipodi:ry="3"
|
|
103
|
+
sodipodi:rx="3"
|
|
104
|
+
sodipodi:cy="8"
|
|
105
|
+
sodipodi:cx="40"
|
|
106
|
+
style="fill:#0000ff"
|
|
107
|
+
d="m 43,8 c 0,1.6568542 -1.343146,3 -3,3 -1.656854,0 -3,-1.3431458 -3,-3 0,-1.6568542 1.343146,-3 3,-3 1.656854,0 3,1.3431458 3,3 z"
|
|
108
|
+
id="circle28"
|
|
109
|
+
r="3"
|
|
110
|
+
cy="8"
|
|
111
|
+
cx="40"
|
|
112
|
+
transform="matrix(0.31579,0,0,0.31579,-0.57894728,-0.57894728)" />
|
|
113
|
+
<rect
|
|
114
|
+
style="fill:#0000ff;fill-opacity:1;stroke:#ff6600;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
115
|
+
id="rect3001"
|
|
116
|
+
width="8.1864405"
|
|
117
|
+
height="0.88983053"
|
|
118
|
+
x="-14"
|
|
119
|
+
y="1.5024575"
|
|
120
|
+
transform="matrix(0,-1,1,0,0,0)" />
|
|
121
|
+
<rect
|
|
122
|
+
style="fill:#0000ff;fill-opacity:1;stroke:#ff6600;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
123
|
+
id="rect3001-1"
|
|
124
|
+
width="3.6186438"
|
|
125
|
+
height="0.88983053"
|
|
126
|
+
x="-14"
|
|
127
|
+
y="4.0287776"
|
|
128
|
+
transform="matrix(0,-1,1,0,0,0)" />
|
|
129
|
+
<rect
|
|
130
|
+
style="fill:#0000ff;fill-opacity:1;stroke:#ff6600;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
131
|
+
id="rect3001-7"
|
|
132
|
+
width="7.7118645"
|
|
133
|
+
height="0.88983053"
|
|
134
|
+
x="-14"
|
|
135
|
+
y="6.5550976"
|
|
136
|
+
transform="matrix(0,-1,1,0,0,0)" />
|
|
137
|
+
<rect
|
|
138
|
+
style="fill:#0000ff;fill-opacity:1;stroke:#ff6600;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
139
|
+
id="rect3001-4"
|
|
140
|
+
width="6.2881355"
|
|
141
|
+
height="0.88983053"
|
|
142
|
+
x="-14"
|
|
143
|
+
y="9.0814171"
|
|
144
|
+
transform="matrix(0,-1,1,0,0,0)" />
|
|
145
|
+
<rect
|
|
146
|
+
style="fill:#0000ff;fill-opacity:1;stroke:#ff6600;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
147
|
+
id="rect3001-0"
|
|
148
|
+
width="11.923729"
|
|
149
|
+
height="0.88983053"
|
|
150
|
+
x="-14"
|
|
151
|
+
y="11.607738"
|
|
152
|
+
transform="matrix(0,-1,1,0,0,0)" />
|
|
153
|
+
<rect
|
|
154
|
+
style="fill:none;stroke:#ff0000;stroke-width:0.53350627;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.53350631, 0.53350631;stroke-dashoffset:0"
|
|
155
|
+
id="rect3001-9"
|
|
156
|
+
width="12.327156"
|
|
157
|
+
height="0.46274883"
|
|
158
|
+
x="0.92540509"
|
|
159
|
+
y="8.4889641" />
|
|
160
|
+
</svg>
|