From 873091504c7abe05eb147819c03bade34ca67b36 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 11:47:17 +0100 Subject: [PATCH 01/11] renamed the "parser" module to "csv_parser" The "csv_parser" module will be used as a backup if the analysis xml file is not present. --- src/sensospot_parser/__init__.py | 2 +- .../{parser.py => csv_parser.py} | 0 tests/{test_parser.py => test_csv_parser.py} | 42 +++++++++---------- 3 files changed, 22 insertions(+), 22 deletions(-) rename src/sensospot_parser/{parser.py => csv_parser.py} (100%) rename tests/{test_parser.py => test_csv_parser.py} (86%) diff --git a/src/sensospot_parser/__init__.py b/src/sensospot_parser/__init__.py index 8124da2..8450620 100644 --- a/src/sensospot_parser/__init__.py +++ b/src/sensospot_parser/__init__.py @@ -12,7 +12,7 @@ import click import pandas from . import columns # noqa: F401 -from .parser import parse_file, parse_folder # noqa: F401 +from .csv_parser import parse_file, parse_folder # noqa: F401 DEFAULT_OUTPUT_FILENAME = "collected_data.csv" diff --git a/src/sensospot_parser/parser.py b/src/sensospot_parser/csv_parser.py similarity index 100% rename from src/sensospot_parser/parser.py rename to src/sensospot_parser/csv_parser.py diff --git a/tests/test_parser.py b/tests/test_csv_parser.py similarity index 86% rename from tests/test_parser.py rename to tests/test_csv_parser.py index c9659b1..4ab9480 100644 --- a/tests/test_parser.py +++ b/tests/test_csv_parser.py @@ -25,7 +25,7 @@ from .conftest import ( ], ) def test_parse_csv(example_dir, sub_dir, file_name): - from sensospot_parser.parser import _parse_csv + from sensospot_parser.csv_parser import _parse_csv result = _parse_csv(example_dir / sub_dir / file_name) @@ -60,7 +60,7 @@ def test_parse_csv(example_dir, sub_dir, file_name): def test_parse_csv_no_array(example_dir): - from sensospot_parser.parser import _parse_csv + from sensospot_parser.csv_parser import _parse_csv result = _parse_csv(example_dir / "no_array_A1_1.csv") @@ -74,7 +74,7 @@ def test_parse_csv_no_array(example_dir): def test_guess_decimal_separator_returns_correct_separator(input, expected): from io import StringIO - from sensospot_parser.parser import _guess_decimal_separator + from sensospot_parser.csv_parser import _guess_decimal_separator handle = StringIO(f"header\n{input}\n") result = _guess_decimal_separator(handle) @@ -85,7 +85,7 @@ def test_guess_decimal_separator_returns_correct_separator(input, expected): def test_guess_decimal_separator_rewinds_handle(): from io import StringIO - from sensospot_parser.parser import _guess_decimal_separator + from sensospot_parser.csv_parser import _guess_decimal_separator handle = StringIO("\n".join(["header", "data_line"])) _guess_decimal_separator(handle) @@ -94,7 +94,7 @@ def test_guess_decimal_separator_rewinds_handle(): def test_well_regex_ok(): - from sensospot_parser.parser import REGEX_WELL + from sensospot_parser.csv_parser import REGEX_WELL result = REGEX_WELL.match("AbC123") @@ -104,7 +104,7 @@ def test_well_regex_ok(): @pytest.mark.parametrize("input", ["", "A", "1", "1A", "-1", "A-"]) def test_well_regex_no_match(input): - from sensospot_parser.parser import REGEX_WELL + from sensospot_parser.csv_parser import REGEX_WELL result = REGEX_WELL.match(input) @@ -116,7 +116,7 @@ def test_well_regex_no_match(input): [("A1_1.csv", ("A", 1, 1)), ("test/measurement_1_H12_2", ("H", 12, 2))], ) def test_extract_measurement_info_ok(filename, expected): - from sensospot_parser.parser import _extract_measurement_info + from sensospot_parser.csv_parser import _extract_measurement_info result = _extract_measurement_info(filename) @@ -125,7 +125,7 @@ def test_extract_measurement_info_ok(filename, expected): @pytest.mark.parametrize("filename", ["wrong_exposure_A1_B", "no_well_XX_1"]) def test_extract_measurement_info_raises_error(filename): - from sensospot_parser.parser import _extract_measurement_info + from sensospot_parser.csv_parser import _extract_measurement_info with pytest.raises(ValueError): _extract_measurement_info(filename) @@ -134,7 +134,7 @@ def test_extract_measurement_info_raises_error(filename): def test_cleanup_data_columns(): from pandas import DataFrame - from sensospot_parser.parser import _cleanup_data_columns + from sensospot_parser.csv_parser import _cleanup_data_columns columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] data = {col: [i] for i, col in enumerate(columns)} @@ -149,7 +149,7 @@ def test_cleanup_data_columns(): def test_parse_file(example_file): - from sensospot_parser.parser import parse_file + from sensospot_parser.csv_parser import parse_file result = parse_file(example_file) @@ -191,7 +191,7 @@ def test_parse_file(example_file): def test_parse_file_raises_error(example_dir): - from sensospot_parser.parser import parse_file + from sensospot_parser.csv_parser import parse_file csv_file = ( example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" @@ -202,7 +202,7 @@ def test_parse_file_raises_error(example_dir): def test_parse_file_silenced_returns_data_frame(example_file): - from sensospot_parser.parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_file_silenced result = _parse_file_silenced(example_file) @@ -212,7 +212,7 @@ def test_parse_file_silenced_returns_data_frame(example_file): def test_parse_file_silenced_returns_none_on_error(example_dir): - from sensospot_parser.parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_file_silenced csv_file = ( example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" @@ -234,7 +234,7 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): ], ) def testparse_multiple_files_ok(example_dir, file_list): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_files sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS files = [sub_dir / file for file in file_list] @@ -247,14 +247,14 @@ def testparse_multiple_files_ok(example_dir, file_list): def testparse_multiple_files_empty_file_list(): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_files with pytest.raises(ValueError): parse_multiple_files([]) def testparse_multiple_files_empty_array(example_dir): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_files files = [example_dir / "no_array_A1_1.csv"] @@ -265,7 +265,7 @@ def testparse_multiple_files_empty_array(example_dir): def test_find_csv_files(example_dir): - from sensospot_parser.parser import find_csv_files + from sensospot_parser.csv_parser import find_csv_files result = list(find_csv_files(example_dir / EXAMPLE_DIR_WITH_PARAMS)) @@ -275,7 +275,7 @@ def test_find_csv_files(example_dir): def test_parse_folder_no_datetime_records(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_folder data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_PARAMS) @@ -290,7 +290,7 @@ def test_parse_folder_no_datetime_records(example_dir): def test_parse_folder_with_datetime_records(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_folder data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_RECORD) @@ -305,7 +305,7 @@ def test_parse_folder_with_datetime_records(example_dir): def test_sanity_check_ok(example_dir): - from sensospot_parser.parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS file_list = [ @@ -321,7 +321,7 @@ def test_sanity_check_ok(example_dir): def test_sanity_check_raises_value_error(example_dir): - from sensospot_parser.parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS file_list = [ From 938b0630690150d07a0e5e8d7af15e747d2f7d37 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 11:55:31 +0100 Subject: [PATCH 02/11] removed the "recordtime" module The "recordtime" module uses the assay result xml file for retrieving the Analyses.Datetime value. This value is only available in the assay result xml. Since the "parse_csv" module will only be a backup if this xml file is not present, a separate parser for the Analysis.Datetime is not needed anymore --- src/sensospot_parser/csv_parser.py | 8 ++- src/sensospot_parser/recordtime.py | 98 ------------------------------ tests/test_csv_parser.py | 21 +------ tests/test_recordtime.py | 98 ------------------------------ 4 files changed, 7 insertions(+), 218 deletions(-) delete mode 100644 src/sensospot_parser/recordtime.py delete mode 100644 tests/test_recordtime.py diff --git a/src/sensospot_parser/csv_parser.py b/src/sensospot_parser/csv_parser.py index 73f0656..d59518c 100644 --- a/src/sensospot_parser/csv_parser.py +++ b/src/sensospot_parser/csv_parser.py @@ -12,7 +12,6 @@ import pandas from . import columns from .parameters import add_measurement_parameters -from .recordtime import add_record_time PathLike = Union[str, pathlib.Path] @@ -225,8 +224,13 @@ def parse_folder(folder: PathLike, quiet: bool = False) -> pandas.DataFrame: data_frame = parse_multiple_files(file_list) except ValueError: raise ValueError(f"No sensospot data found in folder '{folder}'") + data_frame = add_measurement_parameters(data_frame, folder_path) - data_frame = add_record_time(data_frame, folder_path) + + # The csv parser is only used if the xml analysis file is not present + # the xml file would hold the Analysis.Datetime value + data_frame[columns.ANALYSIS_DATETIME] = None + if quiet: return data_frame return _sanity_check(data_frame) diff --git a/src/sensospot_parser/recordtime.py b/src/sensospot_parser/recordtime.py deleted file mode 100644 index 6bda6c8..0000000 --- a/src/sensospot_parser/recordtime.py +++ /dev/null @@ -1,98 +0,0 @@ -""" Sensospot Data Parser - -Parsing the numerical output from Sensovations Sensospot image analysis. -""" - -import pathlib -from typing import Tuple, Union, Iterable, Optional - -import numpy -import pandas -from defusedxml import ElementTree - -from . import columns - -PathLike = Union[str, pathlib.Path] - - -def _search_records_file(folder: PathLike) -> Optional[pathlib.Path]: - """searches for a the records xml file in a folder - - Args: - folder: directory to search - - Returns: - the path to the settings file or None - """ - folder_path = pathlib.Path(folder) - files = (item for item in folder_path.iterdir() if item.suffix == ".xsl") - xls_files = [path for path in files if not path.name.startswith(".")] - if len(xls_files) == 1: - xml_file = xls_files[0].with_suffix(".xml") - if xml_file.is_file(): - return xml_file - return None - - -def _iter_records(records_file: PathLike) -> Iterable[Tuple[str, str]]: - """parses the information from a records file - - Args: - records_file: path to the records file - - Yields: - tuples, filename as first element and the datetime string as second - """ - records_path = pathlib.Path(records_file) - tree = ElementTree.parse(records_path) - for channel_config in tree.findall(".//*[ImageFileName]"): - image_tag = channel_config.find("ImageFileName") - image_name = None if image_tag is None else image_tag.text - datetime_tag = channel_config.find("Timestamp") - datetime_str = None if datetime_tag is None else datetime_tag.text - yield image_name, datetime_str - - -def _parse_records_file(records_file: PathLike) -> pandas.DataFrame: - """parses the information from a records file - - Args: - records_file: path to the records file - - Returns: - pandas data frame with the parsed information - """ - data = _iter_records(records_file) - data_frame = pandas.DataFrame( - data, columns=[columns.ANALYSIS_IMAGE, columns.ANALYSIS_DATETIME] - ) - data_frame[columns.ANALYSIS_DATETIME] = pandas.to_datetime( - data_frame[columns.ANALYSIS_DATETIME] - ) - return data_frame - - -def add_record_time( - measurement: pandas.DataFrame, folder: PathLike -) -> pandas.DataFrame: - """adds the recoding datetime to the data frame - - The returned DataFrame will contain one more column for parsed datetime - - If the parameters could not be foundor do not match up with the - measurement data, the additional collumn will contain NaN. - - Argumentss: - measurement: the parsed measurement data - folder: the folder of the measurement data - - Returns: - the measurement data with parameters added - """ - record_path = _search_records_file(folder) - if record_path is None: - measurement[columns.ANALYSIS_DATETIME] = numpy.NAN - return measurement - - data_frame = _parse_records_file(record_path) - return measurement.merge(data_frame, how="left", on=columns.ANALYSIS_IMAGE) diff --git a/tests/test_csv_parser.py b/tests/test_csv_parser.py index 4ab9480..04b0190 100644 --- a/tests/test_csv_parser.py +++ b/tests/test_csv_parser.py @@ -4,11 +4,7 @@ import numpy import pytest -from .conftest import ( - EXAMPLE_DIR_WO_PARAMS, - EXAMPLE_DIR_WITH_PARAMS, - EXAMPLE_DIR_WITH_RECORD, -) +from .conftest import EXAMPLE_DIR_WO_PARAMS, EXAMPLE_DIR_WITH_PARAMS @pytest.mark.parametrize( @@ -289,21 +285,6 @@ def test_parse_folder_no_datetime_records(example_dir): assert len(data_frame["Analysis.Datetime"].unique()) == 1 -def test_parse_folder_with_datetime_records(example_dir): - from sensospot_parser.csv_parser import parse_folder - - data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(data_frame) == 8 * 4 * 100 - assert len(data_frame["Well.Row"].unique()) == 2 - assert len(data_frame["Well.Column"].unique()) == 4 - assert len(data_frame["Exposure.Id"].unique()) == 4 - assert len(data_frame["Pos.Id"].unique()) == 100 - assert len(data_frame["Parameters.Channel"].unique()) == 1 - assert len(data_frame["Parameters.Time"].unique()) == 1 - assert len(data_frame["Analysis.Datetime"].unique()) == 8 - - def test_sanity_check_ok(example_dir): from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files diff --git a/tests/test_recordtime.py b/tests/test_recordtime.py deleted file mode 100644 index 6a998da..0000000 --- a/tests/test_recordtime.py +++ /dev/null @@ -1,98 +0,0 @@ -import pandas -import pytest - -from .conftest import EXAMPLE_DIR_WITH_PARAMS, EXAMPLE_DIR_WITH_RECORD - - -@pytest.fixture -def file_list(example_dir): - import pathlib - - path = pathlib.Path(example_dir / EXAMPLE_DIR_WITH_RECORD) - tifs = (i.with_suffix(".tif") for i in path.glob("*.csv")) - return [i.name for i in tifs] - - -def test_search_records_file_ok(example_dir): - from sensospot_parser.recordtime import _search_records_file - - result = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert result.suffix == ".xml" - - -def test_search_records_file_not_found(example_dir): - from sensospot_parser.recordtime import _search_records_file - - result = _search_records_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) - - assert result is None - - -def test_iter_records(example_dir): - from sensospot_parser.recordtime import _iter_records, _search_records_file - - path = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - result = list(_iter_records(path)) - - assert ( - result[0][0] == "220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif" - ) - assert result[0][1] == "3/7/2022 5:31:47 PM" - assert ( - result[-1][0] == "220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif" - ) - assert result[-1][1] == "3/7/2022 5:33:41 PM" - - -def test_parse_records_file(example_dir): - from sensospot_parser.recordtime import ( - _parse_records_file, - _search_records_file, - ) - - path = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - result = _parse_records_file(path) - - assert isinstance(result, pandas.DataFrame) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert len(result) == 64 - - -def test_add_record_time_ok(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - df = pandas.DataFrame(file_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert not result["Analysis.Datetime"].hasnans - - -def test_add_record_time_unknown_file(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - extended_list = file_list + ["unknown file"] - df = pandas.DataFrame(extended_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert result["Analysis.Datetime"].hasnans - - -def test_add_record_time_no_record_xml(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - df = pandas.DataFrame(file_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_PARAMS) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert result["Analysis.Datetime"].hasnans From 99d0e0fa4e64a4eae729065612c85d522f28cf76 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 12:08:16 +0100 Subject: [PATCH 03/11] renamed test cases and added a new one for xml parsing --- .pre-commit-config.yaml | 2 +- Makefile | 2 +- ...60210_SG2-010-001_Regen_cy3100_1_A10_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A10_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A10_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A11_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A11_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A11_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A12_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A12_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_A12_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A1_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A1_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A1_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A2_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A2_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A2_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A3_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A3_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A3_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A4_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A4_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A4_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A5_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A5_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A5_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A6_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A6_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A6_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A7_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A7_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A7_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A8_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A8_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A8_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A9_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A9_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_A9_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B10_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B10_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B10_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B11_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B11_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B11_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B12_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B12_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_B12_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B1_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B1_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B1_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B2_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B2_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B2_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B3_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B3_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B3_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B4_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B4_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B4_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B5_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B5_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B5_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B6_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B6_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B6_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B7_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B7_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B7_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B8_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B8_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B8_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B9_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B9_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_B9_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C10_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C10_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C10_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C11_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C11_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C11_3.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C12_1.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C12_2.csv | 0 ...60210_SG2-010-001_Regen_cy3100_1_C12_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C1_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C1_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C1_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C2_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C2_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C2_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C3_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C3_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C3_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C4_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C4_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C4_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C5_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C5_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C5_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C6_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C6_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C6_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C7_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C7_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C7_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C8_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C8_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C8_3.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C9_1.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C9_2.csv | 0 ...160210_SG2-010-001_Regen_cy3100_1_C9_3.csv | 0 .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg | 0 .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svary | 0 .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp | 0 .../PlateHolder/SinglePlateHolder.svph | 0 .../Rack/Microplate (96 wells).svmpd | 0 .../should_raise_value_error.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv | 0 ...218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv | 0 ...0218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv | 0 ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv | 101 - ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv | 101 - ...307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml | 0 ...307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl | 0 ...SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml | 0 .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg | 25 + .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svary | 27 + .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp | 19 + .../PlateHolder/SinglePlateHolder.svph | 8 + .../Rack/Microplate (96 wells).svmpd | 21 + ...307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml | 148744 +++++++++++++++ ...307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl | 118 + ...SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml | 9297 + tests/conftest.py | 17 +- tests/test_csv_parser.py | 26 +- tests/test_parameters.py | 16 +- 450 files changed, 158293 insertions(+), 3261 deletions(-) rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/Parameters/PlateHolder/SinglePlateHolder.svph (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/Parameters/Rack/Microplate (96 wells).svmpd (100%) mode change 100755 => 100644 rename example_data/{mtp_with_parameters => csv_with_parameters}/should_raise_value_error.csv (100%) rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv (100%) mode change 100755 => 100644 rename example_data/{mtp_wo_parameters => csv_wo_parameters}/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv (100%) mode change 100755 => 100644 delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv delete mode 100644 example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv rename example_data/{record_time => xml_with_parameters}/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml (100%) rename example_data/{record_time => xml_with_parameters}/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl (100%) rename example_data/{record_time => xml_with_parameters}/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml (100%) create mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg create mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary create mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp create mode 100644 example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph create mode 100644 example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 55ad1bb..372083c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,7 +33,7 @@ repos: pass_filenames: false - id: flake8 name: flake8 test - entry: flake8 --ignore S101 tests + entry: flake8 --ignore S101,W503 tests language: system pass_filenames: false - id: pytest diff --git a/Makefile b/Makefile index 866a958..be53078 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ lint: ## reformat with black and check style with flake8 isort tests black src tests flake8 --ignore E231,W503,E402 src - flake8 --ignore S101 tests + flake8 --ignore S101,W503 tests test: lint ## run tests quickly, stop on first error pytest tests -x -l --last-failed --disable-warnings -m "not functional" diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp diff --git a/example_data/mtp_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph b/example_data/csv_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph rename to example_data/csv_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph diff --git a/example_data/mtp_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd b/example_data/csv_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd rename to example_data/csv_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd diff --git a/example_data/mtp_with_parameters/should_raise_value_error.csv b/example_data/csv_with_parameters/should_raise_value_error.csv similarity index 100% rename from example_data/mtp_with_parameters/should_raise_value_error.csv rename to example_data/csv_with_parameters/should_raise_value_error.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv deleted file mode 100644 index 40b4226..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 228 232 0.235384931733497 0.950414913363403 0.234714274814984 1 0.00700611064105654 0.145736855002289 20038311 53627765 1299 861 81 True 227 233 33 {X=0,Y=0,Width=0,Height=0} -2 280 233 0.231177412089856 0.230250627451245 0.230884260318914 0.230121309224079 0.00500863872911266 0.00402261404146659 19680125 8706627 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} -3 333 233 0.229714296252794 0.230259275111834 0.229770351720455 0.230472266727703 0.0038286865702095 0.00370900107593368 19555570 8706954 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} -4 386 233 0.229662810268981 0.230139054117827 0.229587243457694 0.230289158464942 0.00378767522678395 0.00358402252212931 19551187 8702408 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} -5 439 234 0.232369307329094 0.230064213507831 0.230380712596323 0.230121309224079 0.0212765822282069 0.00460353632811885 19781591 8699578 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.230382286660167 0.230396474081679 0.230350194552529 0.230273899443046 0.00593730637130429 0.00630438389173862 19612436 8712142 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} -7 546 234 0.231750359582551 0.230316423718973 0.230960555428397 0.230090791180285 0.00719209350114273 0.00580210518679085 19728900 8709115 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} -8 599 234 0.230173617480049 0.230567708339531 0.230334935530632 0.230441748683909 0.00432629013521393 0.004444015833161 19594672 8718617 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} -9 652 234 0.231355833401318 0.230911393345718 0.231540398260472 0.230884260318914 0.00419927738804394 0.00400786867205555 19695314 8731613 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} -10 702 232 0.235054401819618 0.921638884817987 0.234729533836881 1 0.00486578771734954 0.194459810997062 20010173 58768815 1299 973 80 True 705 235 34 {X=0,Y=0,Width=0,Height=0} -11 227 285 0.230273899443046 0.23020609332148 0.230304417486839 0.229755092698558 0.00480406129937769 0.00497662437236967 19603209 8704943 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} -12 280 285 0.230155644960033 0.230304602604956 0.230106050202182 0.230289158464942 0.00401053636154393 0.003912658528098 19593142 8708668 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} -13 333 286 0.23008801894844 0.230149314950575 0.230029755092699 0.230243381399252 0.00356467395903897 0.00356565194811195 19587385 8702796 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} -14 386 286 0.230195536906423 0.230159205547091 0.230151827267872 0.230167086289769 0.00374342338211412 0.00342279687953275 19596538 8703170 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} -15 439 286 0.23070457035898 0.230356382786713 0.230685893034257 0.230319676508736 0.00398423665641129 0.00400619330353755 19639872 8710626 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} -16 492 286 0.230723036242291 0.231407139661966 0.230792706187533 0.231586175326162 0.0048932229149775 0.00518652330267933 19641444 8750359 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.230489323001601 0.231225221444241 0.230380712596323 0.231311512932021 0.00481728620728938 0.0047051380334733 19621548 8743480 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.230804030049819 0.230552978226539 0.230685893034257 0.230685893034257 0.00409917296373056 0.00454419488559169 19648339 8718060 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.230689851687358 0.230541844694098 0.23071641107805 0.230548561837186 0.00358169108212675 0.00314026712190925 19638619 8717639 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.230855563020612 0.230806457819052 0.23080796520943 0.230838483253223 0.00350349728109732 0.00375624307682139 19652726 8727645 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} -21 226 338 0.230110936848147 0.230433841495786 0.230106050202182 0.230609597924773 0.00488500439014703 0.00491136290899423 19589336 8713555 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} -22 279 338 0.230688618279122 0.230426701225574 0.23071641107805 0.230106050202182 0.00407168488992683 0.0037698511617902 19638514 8713285 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} -23 333 338 0.230712475918438 0.231260102986497 0.230685893034257 0.230960555428397 0.00365837370944228 0.00359636664341859 19640545 8744799 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} -24 386 338 0.231021262607121 0.230738281461254 0.231021591515984 0.23089951934081 0.00415662762099473 0.00386695441809965 19666832 8725067 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} -25 439 339 0.231482498553829 0.231227231298079 0.231372549019608 0.231235217822538 0.00420100895163217 0.00393307131820704 19706097 8743556 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} -26 492 339 0.231588924064517 0.23310676198134 0.231479362172885 0.232043945983062 0.00462518184881 0.00868222153120191 19715157 8814628 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} -27 545 339 0.231392823901666 0.231529238282585 0.231403067063401 0.231647211413748 0.00456168323040558 0.00434895403930853 19698463 8754976 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} -28 599 339 0.231395478666061 0.231155669923291 0.231555657282368 0.231128404669261 0.00422984588558967 0.00436950333093123 19698689 8740850 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.230924927550481 0.230742856523278 0.230914778362707 0.230640115968566 0.00369507661031607 0.00385483859271634 19658631 8725240 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.23037985508393 0.235619766859599 0.230457007705806 0.231311512932021 0.00355208348925317 0.0195091421001302 19612229 8909654 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} -31 226 390 0.230522554543515 0.230003150974799 0.230197604333562 0.229938200961318 0.00622548717410643 0.00556019588694674 19624377 8697269 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} -32 279 391 0.230775602926655 0.230649874337856 0.230746929121843 0.230197604333562 0.00468236990033911 0.00442356970601172 19645919 8721724 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} -33 332 391 0.231208681925336 0.231115287728427 0.231143663691157 0.230914778362707 0.00445057117472149 0.00454153374302205 19682787 8739323 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} -34 386 391 0.231615342494267 0.232071713700552 0.231616693369955 0.231998168917372 0.00404378025002224 0.00426611601156417 19717406 8775489 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} -35 439 391 0.233024893173632 0.232251542728104 0.232913710231174 0.231952391851682 0.0044502063333536 0.00401386773260848 19837401 8782289 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} -36 492 391 0.232229239140413 0.231959585012784 0.232227054245823 0.231876096742199 0.004490129053341 0.00446361900679392 19769667 8771249 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} -37 545 392 0.232046365812555 0.232136134805128 0.232028686961166 0.231952391851682 0.00411259168203925 0.00396601226270941 19754099 8777925 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} -38 598 392 0.231992260304583 0.232211583660364 0.231891355764096 0.232227054245823 0.00439053687322748 0.00379333194026949 19749493 8780778 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.23160803601881 0.23126856552897 0.231586175326162 0.231189440756847 0.00396859211741873 0.0038512911905237 19716784 8745119 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.23054197191318 0.230462402576633 0.23057907988098 0.230365453574426 0.00359119381069734 0.0034290066732591 19626030 8714635 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} -41 226 443 0.230443874844774 0.231000302932575 0.230380712596323 0.230930037384604 0.00582892603494328 0.0059987679533442 19617679 8734975 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} -42 279 443 0.230981452887946 0.231094660281149 0.230930037384604 0.231021591515984 0.00534110893178235 0.00532723470035292 19663443 8738543 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} -43 332 443 0.231546107178595 0.231785997110306 0.231525139238575 0.231708247501335 0.00426620149483667 0.00423411961782506 19711512 8764685 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} -44 385 444 0.232477318650372 0.232353304801342 0.23247119859617 0.232272831311513 0.00486871881946419 0.00511095023965302 19790786 8786137 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.233150442385358 0.232763817447621 0.233264667734798 0.232837415121691 0.00524391201957902 0.00517601929866542 19848089 8801660 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.233214532626673 0.233279556520462 0.232944228274968 0.233127336537728 0.00565402816768416 0.00529711262095752 19853545 8821162 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.232791297400392 0.232538052681707 0.232761120012207 0.232410162508583 0.00469100145691428 0.00472373906611299 19817515 8793123 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} -48 598 445 0.232206074559058 0.232311230097984 0.232074464026856 0.232410162508583 0.00467973879513931 0.00485163500884711 19767695 8784546 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} -49 651 445 0.23181319292214 0.231114229910618 0.231860837720302 0.231021591515984 0.00433075163343422 0.00437090026645182 19734249 8739283 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.230796089250125 0.230870640914621 0.23057907988098 0.230823224231327 0.0046161021267547 0.00485267088664183 19647663 8730072 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} -51 226 496 0.230395360787474 0.230120621642503 0.230136568245975 0.230273899443046 0.0054490931550632 0.00549033373371616 19613549 8701711 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} -52 279 496 0.231127100780554 0.231594902323087 0.231128404669261 0.231738765545129 0.00446990478605327 0.00433373500757556 19675842 8757459 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} -53 332 496 0.231983614700182 0.232432667582472 0.232074464026856 0.232394903486687 0.00388161346440716 0.0038120613126097 19748757 8789138 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} -54 385 496 0.233197358885323 0.232685168693512 0.233173113603418 0.232761120012207 0.00417438465634226 0.003930257685436 19852083 8798686 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} -55 438 496 0.233616776419443 0.234695154758084 0.233508812085145 0.234470130464637 0.00554632133722927 0.00593106226898132 19887788 8874691 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.233178834268286 0.232278411300456 0.233173113603418 0.231937132829786 0.00569646682671667 0.00595258071260882 19850506 8783305 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.232711701455533 0.233244833650877 0.232486457618067 0.233371480888075 0.00512318299416315 0.00454374608093066 19810739 8819849 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.232034466359759 0.232540300544551 0.231982909895476 0.232227054245823 0.005058751187973 0.00500216743257131 19753086 8793208 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.231293681372945 0.231985131312875 0.231250476844434 0.231937132829786 0.00452531880040403 0.004591901094222 19690023 8772215 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} -60 704 498 0.230883661234913 0.230728708210081 0.23076218814374 0.23062485694667 0.00479091175116439 0.00406251826797938 19655118 8724705 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} -61 225 548 0.230801375285424 0.230868895515236 0.230685893034257 0.230792706187533 0.00531511646843404 0.00520602254343511 19648113 8730006 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} -62 279 548 0.231458805368944 0.231513926369798 0.231631952391852 0.231418326085298 0.00418933358913604 0.00408465049004631 19704080 8754397 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} -63 332 549 0.232749666935726 0.232404080056181 0.232776379034104 0.232272831311513 0.003888340291836 0.00367910429393895 19813971 8788057 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} -64 385 549 0.233311983624098 0.232796953590491 0.233340962844282 0.232852674143587 0.00370926692352279 0.00338727216917197 19861841 8802913 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} -65 438 549 0.233638343443463 0.23356149141204 0.233508812085145 0.233493553063249 0.00473488993371286 0.00451145498983221 19889624 8831823 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} -66 491 549 0.233301822689578 0.233169093895743 0.233173113603418 0.233264667734798 0.00590312124987291 0.00633918905054195 19860976 8816985 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.233073736139795 0.232646743461595 0.233035782406348 0.23265430685893 0.00479759164608554 0.00468880258295501 19841559 8797233 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} -68 598 550 0.231939305977631 0.232142243702976 0.231937132829786 0.232227054245823 0.00410298849754429 0.00429371111049635 19744985 8778156 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} -69 651 550 0.231205933186981 0.231223052917733 0.230975814450294 0.231174181734951 0.00403228164808917 0.00383427933518497 19682553 8743398 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.230612675571992 0.230452591316453 0.230487525749599 0.230350194552529 0.00387608307255269 0.00378172089950103 19632049 8714264 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} -71 225 601 0.231825444777288 0.231816118472421 0.231708247501335 0.231723506523232 0.00497581305575875 0.00499008365405544 19735292 8765824 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} -72 278 601 0.231989664273913 0.232089590821526 0.231815060654612 0.232013427939269 0.00420004167562074 0.00391671221010806 19749272 8776165 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} -73 332 601 0.232523788774023 0.232736155511912 0.23237964446479 0.232593270771344 0.00400235181527279 0.00333904507020638 19794742 8800614 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} -74 385 601 0.233763493265855 0.233184088463188 0.233539330128939 0.233218890669108 0.00482433273950998 0.00396062868778427 19900278 8817552 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} -75 438 602 0.233194610146968 0.233091238504991 0.233295185778592 0.233051041428244 0.00422508508789747 0.00411940676552212 19851849 8814041 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} -76 491 602 0.233326044477993 0.232980564316711 0.233188372625315 0.232959487296864 0.00534161165519334 0.00546503498616257 19863038 8809856 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} -77 544 602 0.232475650612566 0.232450174467214 0.23237964446479 0.232532234683757 0.0042512606098518 0.00424797160677589 19790644 8789800 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.23180459430472 0.231597123740486 0.231754024567025 0.231677729457542 0.00401844976341071 0.00414957401455178 19733517 8757543 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.231104617510415 0.231367709503131 0.23089951934081 0.231357289997711 0.00361636789893566 0.00323007543183913 19673928 8748868 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} -80 704 603 0.230460895878437 0.230796196986303 0.230426489662013 0.230746929121843 0.00358977772474813 0.00371875106877269 19619128 8727257 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} -81 227 656 0.237967747314356 0.980028262805177 0.237613488975357 1 0.00631762091152547 0.0777810485452699 20258186 48105388 1299 749 89 True 225 653 31 {X=0,Y=0,Width=0,Height=0} -82 278 654 0.233511161434167 0.232729306141598 0.233295185778592 0.232669565880827 0.00467041195459207 0.00394289501411022 19878797 8800355 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} -83 331 654 0.232253684116985 0.231942739264174 0.232227054245823 0.231708247501335 0.00342548129794164 0.00350753332007652 19771748 8770612 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} -84 385 654 0.232376543324081 0.232579519139825 0.232318608377203 0.232593270771344 0.00401104888553049 0.00406917466283049 19782207 8794691 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} -85 438 654 0.232715014037654 0.232993363912202 0.23260852979324 0.232852674143587 0.00480402367858593 0.00480490539158847 19811021 8810340 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} -86 491 654 0.232462588232005 0.232785978730722 0.232455939574273 0.232684824902724 0.00465428047976449 0.004525459000888 19789532 8802498 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} -87 544 655 0.231725397749194 0.231878714841276 0.231647211413748 0.231967650873579 0.00388435913652843 0.00362801025348011 19726775 8768191 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} -88 597 655 0.231219160021973 0.230909277710099 0.231235217822538 0.231143663691157 0.00379610228378077 0.00334762757971261 19683679 8731533 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} -89 650 655 0.231138929752878 0.231603259083779 0.231036850537881 0.231708247501335 0.00350293004626227 0.00363562988665873 19676849 8757775 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} -90 704 655 0.231088183814007 0.23137974218071 0.231082627603571 0.231326771953918 0.00370091937712597 0.0034022859964025 19672529 8749323 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} -91 225 711 0.238222346267851 0.968247218157055 0.23736934462501 1 0.00748762946502839 0.108370305229263 20279860 47527107 1299 749 87 True 225 706 31 {X=0,Y=0,Width=0,Height=0} -92 278 706 0.232969507270442 0.232869572783088 0.232593270771344 0.232883192187381 0.00494614169591609 0.00375403689791968 19832686 8805659 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} -93 331 706 0.231531188812306 0.231753231203668 0.231479362172885 0.231921873807889 0.00414579943679099 0.00448774106167316 19710242 8763446 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} -94 384 707 0.231892706639783 0.231594452750518 0.231723506523232 0.231250476844434 0.00479846328392011 0.00501447192155902 19741018 8757442 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} -95 438 707 0.231976378705195 0.232612734619032 0.231845578698405 0.232593270771344 0.00461300150672229 0.00431468651443572 19748141 8795947 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} -96 491 707 0.231695701977559 0.233085605625158 0.231784542610819 0.233035782406348 0.0048776322082446 0.00513721503508373 19724247 8813828 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} -97 544 707 0.23134096202201 0.231391483958391 0.231342030975814 0.231082627603571 0.00420170190031827 0.00459126145511638 19694048 8749767 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} -98 597 707 0.230746682440196 0.231264440039515 0.23067063401236 0.231433585107195 0.00388768356141643 0.00355051075555696 19643457 8744963 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} -99 650 708 0.231011183899817 0.231283348532853 0.23085374227512 0.231372549019608 0.00435360556598995 0.00423666832444796 19665974 8745678 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} -100 703 710 0.234496219985525 0.961848794435366 0.234485389486534 1 0.00506929297229224 0.110539406432211 19962655 54272929 1299 861 83 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv deleted file mode 100644 index 97868a4..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 228 232 0.0235019948616213 0.162809014023502 0.0234531166552224 0.178973067826352 0.00214431523356303 0.0408537532110509 2000724 9186602 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} -2 280 233 0.023375000800247 0.0231522468248607 0.0234073395895323 0.0231631952391852 0.00166186467828235 0.00174650664682659 1989913 875472 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} -3 333 233 0.0233108988121868 0.0231505278709208 0.0233310444800488 0.0231631952391852 0.0014859575642702 0.00151900567919556 1984456 875407 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} -4 386 233 0.0232787714643134 0.0231805963421454 0.0232394903486687 0.0231937132829786 0.00154476723176754 0.00153030793833524 1981721 876544 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} -5 439 234 0.0235041797562116 0.0229467657154372 0.023270008392462 0.0228732738231479 0.00283478079160566 0.00179305956208973 2000910 867702 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.0230780900708699 0.0230060035127485 0.0231021591515984 0.0229037918669413 0.00226693917491101 0.00248134131437587 1964637 869942 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} -7 546 234 0.0232827536109054 0.0231199833816822 0.0233615625238422 0.0231937132829786 0.00215447398331304 0.00215770908687416 1982060 874252 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} -8 599 234 0.0232420746325927 0.0231910158475653 0.0232089723048753 0.023224231326772 0.00181622056975377 0.00170464586327033 1978597 876938 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} -9 652 234 0.0232658852849288 0.0234188169127614 0.0232852674143587 0.0234378576333257 0.00151686958750489 0.00148057552223031 1980624 885552 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} -10 702 232 0.0236678471558164 0.154991123342375 0.0236514839398795 0.17080949111162 0.00157374966383339 0.0453276484811716 2014843 9883095 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} -11 227 285 0.0230746482745529 0.0229028398309131 0.023071641107805 0.0230106050202182 0.00205381821108158 0.0020650412669992 1964344 866041 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} -12 280 285 0.0231488642101521 0.023232350078457 0.0231631952391852 0.0232394903486687 0.00162409413972648 0.00141828814707745 1970662 878501 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} -13 333 286 0.0232918573383649 0.0231914918655794 0.0232547493705653 0.023224231326772 0.00143939420128221 0.00147224614437767 1982835 876956 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} -14 386 286 0.0233343923024049 0.0232302344428388 0.0233157854581521 0.0232394903486687 0.00151748572153265 0.00144493048115938 1986456 878421 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} -15 439 286 0.0231422390459106 0.0232812741521293 0.0231021591515984 0.0231784542610819 0.00156653665434435 0.00144882693611263 1970098 880351 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} -16 492 286 0.0233078798986937 0.0232843418237757 0.0233005264362554 0.0232089723048753 0.00202592279390463 0.0020699916504537 1984199 880467 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.023090377166254 0.0233275007903882 0.023071641107805 0.0231937132829786 0.00190539449217742 0.0020399695964367 1965683 882099 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.0231659204840505 0.0230637074742365 0.0231326771953918 0.0230563820859083 0.00163679282532542 0.00166303309541366 1972114 872124 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.0232867944912229 0.0231070780044108 0.0232089723048753 0.0230563820859083 0.00146171525812857 0.00135877317952943 1982404 873764 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.0231750359582551 0.0232051377153172 0.0231784542610819 0.0232394903486687 0.00136229224004672 0.00135428259100909 1972890 877472 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} -21 226 338 0.0230676119742326 0.0228250902219421 0.0231174181734951 0.0228274967574578 0.00197019649348195 0.00210386546860851 1963745 863101 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} -22 279 338 0.0229337930539499 0.0233305949074799 0.022919050888838 0.0233310444800488 0.00163278041585239 0.00151151261198306 1952353 882216 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} -23 333 338 0.0231353789467669 0.0231684314373404 0.023071641107805 0.0231784542610819 0.00154268301728331 0.00148450953593377 1969514 876084 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} -24 386 338 0.0233039917260626 0.0231402405927271 0.0233005264362554 0.0231326771953918 0.00161385748122387 0.00159153367012249 1983868 875018 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} -25 439 339 0.0232653801748891 0.0235554076373652 0.0232852674143587 0.0236057068741894 0.0016053877546815 0.00143526439880838 1980581 890717 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} -26 492 339 0.0233689864667512 0.0234630865880734 0.0233157854581521 0.0233310444800488 0.00179801734769882 0.00208961926623559 1989401 887226 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} -27 545 339 0.0232343335275658 0.0232843947146662 0.0232394903486687 0.0232394903486687 0.00166350481349499 0.00165010467601623 1977938 880469 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} -28 599 339 0.023426580758021 0.0231457147998893 0.0234836346990158 0.0231326771953918 0.00167143435588018 0.00171208053414779 1994304 875225 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.0233609869333319 0.023119375136442 0.0233463035019455 0.0231174181734951 0.00145615699140462 0.00141104066172018 1988720 874229 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.0232867475042425 0.023821633934478 0.0232852674143587 0.0236514839398795 0.00141422999253559 0.00215099994992762 1982400 900784 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} -31 226 390 0.0229720052157898 0.0230625174292012 0.0229800869764248 0.022919050888838 0.00204066254262214 0.00226445449548774 1955606 872079 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} -32 279 391 0.0231934313610959 0.0231573507957897 0.0231326771953918 0.023071641107805 0.00184456278953943 0.00166931289873208 1974456 875665 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} -33 332 391 0.0233006204102163 0.0233855749881095 0.0233157854581521 0.0233615625238422 0.00160718653759161 0.00174791042820157 1983581 884295 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} -34 386 391 0.0233075509898307 0.0234273587915701 0.0232852674143587 0.0234378576333257 0.00167484132472477 0.00163132807894474 1984171 885875 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} -35 439 391 0.0234437897396058 0.0234645675330062 0.0234073395895323 0.0234378576333257 0.00165665933496495 0.00157399000064066 1995769 887282 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} -36 492 391 0.0233737791387557 0.0233045990348206 0.0233463035019455 0.0232394903486687 0.00177952566035084 0.00179335754790148 1989809 881233 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} -37 545 392 0.0234923390371416 0.0235075942723926 0.0234836346990158 0.0234531166552224 0.00153832002687231 0.00151746782714239 1999902 888909 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} -38 598 392 0.0233505793171652 0.0233125855592795 0.0232852674143587 0.0233310444800488 0.00158579040851542 0.00165972586402041 1987834 881535 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.0233119325257564 0.0231950884461304 0.0232852674143587 0.0231784542610819 0.00150289954982081 0.00158254394197202 1984544 877092 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.0232704900090115 0.0231942157464379 0.0232852674143587 0.0231326771953918 0.00147141664473154 0.00134686641643175 1981016 877059 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} -41 226 443 0.0230991754783407 0.0230982452257046 0.0231021591515984 0.023071641107805 0.00244235004931672 0.00242618356996582 1966432 873430 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} -42 279 443 0.0232094304279345 0.0232481380092583 0.0231021591515984 0.0232089723048753 0.00207205482515296 0.00215396312532988 1975818 879098 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} -43 332 443 0.0233344980231109 0.0233810528169754 0.0232394903486687 0.0232394903486687 0.00182121754035909 0.00170231557069864 1986465 884124 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} -44 385 444 0.0234126373715765 0.0233683590032659 0.0233615625238422 0.023270008392462 0.00191512441553052 0.00201826703067098 1993117 883644 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.0236514017126637 0.0236112604176873 0.023575188830396 0.0235599298084993 0.00203152731466403 0.00197846332945984 2013443 892829 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.0233910703475562 0.0235598504721636 0.0234836346990158 0.0235904478522927 0.00211619007610752 0.00205992211524448 1991281 890885 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.0233045320763376 0.0235957104958931 0.0232394903486687 0.0236057068741894 0.00192825577427125 0.00194658698043421 1983914 892241 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} -48 598 445 0.0233611161475281 0.0235010093565307 0.0233920805676356 0.023422598611429 0.00185542400380525 0.00196997040601897 1988731 888660 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} -49 651 445 0.0233160321397994 0.0233383698683771 0.023270008392462 0.0233310444800488 0.00168597074179259 0.00163352568496246 1984893 882510 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.0231960626320004 0.0233615889692874 0.0231631952391852 0.0233768215457389 0.00185890337886267 0.00192829625472393 1974680 883388 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} -51 226 496 0.0230485117666852 0.0229879148282124 0.0229800869764248 0.0228732738231479 0.00222313443296317 0.00229604696676652 1962119 869258 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} -52 279 496 0.0232544322084474 0.0232850294053517 0.0232394903486687 0.023270008392462 0.00171860246346508 0.00158423101339159 1979649 880493 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} -53 332 496 0.0234919748880432 0.0231729536084744 0.0235294117647059 0.0230563820859083 0.00155874975449248 0.0015527226855693 1999871 876255 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} -54 385 496 0.0234575216846383 0.0234853800984009 0.0234531166552224 0.0234836346990158 0.0016651188961069 0.0016381396912372 1996938 888069 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} -55 438 496 0.0235469966421342 0.0234509216832685 0.0234988937209125 0.0233310444800488 0.00215862351428425 0.00206451274048427 2004555 886766 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.0235261579163107 0.0234448921217564 0.0235141527428092 0.0233768215457389 0.00237085909267941 0.00229236707106746 2002781 886538 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.0234291885354352 0.0234282050458174 0.0234683756771191 0.0234073395895323 0.00201688091055845 0.00190551920913431 1994526 885907 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.023208185272953 0.0235189393683955 0.0231784542610819 0.0235294117647059 0.00199852340515192 0.00207654749048224 1975712 889338 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.0232999860859804 0.0234251373741709 0.023270008392462 0.0233768215457389 0.00175776862703742 0.00179342810321406 1983527 885791 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} -60 704 498 0.0231739200174698 0.0231658133382628 0.0231174181734951 0.0231784542610819 0.00179335863292672 0.00175534014250225 1972795 875985 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} -61 225 548 0.0231338518699027 0.0231455561272179 0.0231174181734951 0.0230869001297017 0.00204889763136551 0.00207255659959107 1969384 875219 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} -62 279 548 0.0233662259816505 0.0233097294511949 0.023422598611429 0.0233310444800488 0.00162133284838281 0.00158898776179553 1989166 881427 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} -63 332 549 0.0233132481612086 0.0233028800808807 0.0232547493705653 0.023270008392462 0.00139775081228169 0.00142028941808998 1984656 881168 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} -64 385 549 0.0233946883450498 0.0234683492316739 0.0233920805676356 0.0234073395895323 0.00142615052688558 0.00131066772166052 1991589 887425 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} -65 438 549 0.0234239025001361 0.0235216896946992 0.0234073395895323 0.0234988937209125 0.00184119476581415 0.00157786164972736 1994076 889442 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} -66 491 549 0.023430997534182 0.0232589541963566 0.0233463035019455 0.023270008392462 0.00232481725784486 0.00238120955971697 1994680 879507 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.0233702786087132 0.0234090056525817 0.0233920805676356 0.0234073395895323 0.00187370132354497 0.00198772240533509 1989511 885181 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} -68 598 550 0.0234055423375306 0.0234539629094697 0.0234378576333257 0.0234683756771191 0.0016496843138745 0.00171578620673456 1992513 886881 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} -69 651 550 0.0233448821457873 0.0234048272722356 0.0233768215457389 0.0234683756771191 0.00147911690556687 0.00141874525497073 1987349 885023 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.0231271914654258 0.0232881235224434 0.0230869001297017 0.023270008392462 0.00150856672623191 0.0015873681844695 1968817 880610 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} -71 225 601 0.0230658382157211 0.0232621805406745 0.0230563820859083 0.0231479362172885 0.00182537902708343 0.00179969146540031 1963594 879629 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} -72 278 601 0.0232795467494906 0.0232218776821466 0.0232394903486687 0.0231631952391852 0.00160960364387972 0.00156688046035799 1981787 878105 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} -73 332 601 0.0234360251410887 0.0233007644452625 0.0233768215457389 0.0233768215457389 0.00143253674529176 0.00137200330544231 1995108 881088 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} -74 385 601 0.0235848681483659 0.0234622932247166 0.0234988937209125 0.0234073395895323 0.00153639608216349 0.00171832084378846 2007779 887196 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} -75 438 602 0.0234098181527503 0.0235346744083063 0.0233463035019455 0.0235141527428092 0.00174234269397127 0.00167217452585569 1992877 889933 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} -76 491 602 0.0234067170120415 0.0233684118941563 0.0233768215457389 0.0234073395895323 0.00215032924709839 0.0021613730403328 1992613 883646 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} -77 544 602 0.0233925974244204 0.0233264958634696 0.0233615625238422 0.0232547493705653 0.00178775360744562 0.00186467563681124 1991411 882061 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.0233310562267939 0.0233379996321439 0.0233310444800488 0.023422598611429 0.00157540539930051 0.00172899837699854 1986172 882496 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.023377479363465 0.0233969994204481 0.0233310444800488 0.0233463035019455 0.00136424695101838 0.0013686160522513 1990124 884727 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} -80 704 603 0.0233152098676418 0.0231450801092038 0.023270008392462 0.0231631952391852 0.00147611490819175 0.00145784616754527 1984823 875201 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} -81 227 656 0.0237295410611293 0.169509316508887 0.0237125200274662 0.175661860074769 0.00193715317396258 0.0297428070383715 2020095 8320486 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} -82 278 654 0.0233493224154386 0.0233225554921306 0.0233920805676356 0.0233157854581521 0.00159905521680606 0.00161065507509953 1987727 881912 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} -83 331 654 0.0232777142572536 0.0232696646016741 0.0233310444800488 0.0232089723048753 0.00146996843999638 0.00138151972059178 1981631 879912 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} -84 385 654 0.0234161613951092 0.0234608916161195 0.023422598611429 0.0234836346990158 0.00156936971188282 0.0015147863753747 1993417 887143 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} -85 438 654 0.0235833528182468 0.023361536078397 0.023575188830396 0.0233463035019455 0.00174670882398186 0.00183868500689048 2007650 883386 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} -86 491 654 0.023367565110593 0.0234609709524552 0.023422598611429 0.023422598611429 0.00184462597238325 0.00186329545668019 1989280 887146 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} -87 544 655 0.0233234560827084 0.0232709868739355 0.0233005264362554 0.023270008392462 0.0015183515386868 0.00142172283736676 1985525 879962 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} -88 597 655 0.023208185272953 0.0231547591421574 0.023224231326772 0.0230869001297017 0.00141553128376082 0.00137647834150845 1975712 875567 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} -89 650 655 0.023395675071639 0.0234488589385407 0.0234073395895323 0.0234378576333257 0.00144391821579352 0.00145738000233183 1991673 886688 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} -90 704 655 0.0233118502985406 0.0232709075375998 0.0232394903486687 0.0233157854581521 0.00132301440647164 0.00146064168638291 1984537 879959 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} -91 225 711 0.0239962391620859 0.172312616817337 0.0240177004654002 0.18272678721294 0.00222510838337016 0.0377267518766278 2042799 8458088 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} -92 278 706 0.0234056128180013 0.0232717537918471 0.0233615625238422 0.023224231326772 0.00177494839153827 0.00155919200286629 1992519 879991 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} -93 331 706 0.023243625202947 0.0230255995876626 0.0232394903486687 0.0229953459983215 0.00157812285689627 0.00171262891893812 1978729 870683 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} -94 384 707 0.0233504383562239 0.0233424689123874 0.0232852674143587 0.0232547493705653 0.00172514504026702 0.00175159316993136 1987822 882665 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} -95 438 707 0.0234668133600196 0.0235328232271403 0.0234836346990158 0.0235446707866026 0.00174412772667397 0.00167983844207908 1997729 889863 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} -96 491 707 0.0232975662564879 0.0234418244501099 0.023270008392462 0.0233463035019455 0.00194304973084185 0.00185177878342089 1983321 886422 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} -97 544 707 0.0232212124132789 0.023315309440138 0.0231631952391852 0.0231937132829786 0.00172324383197617 0.00173987079633671 1976821 881638 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} -98 597 707 0.0231373758934354 0.0234095610069315 0.0231326771953918 0.0234073395895323 0.00147410045636148 0.00152394314554106 1969684 885202 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} -99 650 708 0.0234335700713609 0.0232674696297201 0.0234531166552224 0.0232394903486687 0.00163502482349707 0.00172815386984826 1994899 879829 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} -100 703 710 0.0235580033423014 0.152252925465526 0.0234836346990158 0.15921263447013 0.00170732172066623 0.0296905054834609 2005492 8590968 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv deleted file mode 100644 index 87a3a19..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 228 232 0.326070661487997 0.387004541464177 0.325932707713436 0.39150072480354 0.00590298238621973 0.0358530787036201 27758384 21836977 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} -2 280 233 0.325662039212632 0.32538057970796 0.325642786297398 0.325307087815671 0.00505664523698056 0.0045975815390647 27723598 12303842 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} -3 333 233 0.325021477455089 0.324881236811161 0.325047684443427 0.325108720531014 0.00455527435690669 0.00431192733972954 27669067 12284960 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} -4 386 233 0.32497151854814 0.3247438527232 0.32498664835584 0.32498664835584 0.00388031250653495 0.0040510394318923 27664814 12279765 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} -5 439 234 0.325739203581254 0.325415540586552 0.325093461509117 0.325490196078431 0.00843695444242965 0.00445432503136138 27730167 12305164 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.325022863571012 0.324846011478117 0.324925612268254 0.324315251392386 0.00632296751355181 0.00631965161197165 27669185 12283628 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} -7 546 234 0.325597984211552 0.325098063016587 0.325276569771878 0.324696726939803 0.00654898141107381 0.00683001240876388 27718145 12293159 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} -8 599 234 0.324636795046257 0.324317684373347 0.32457465476463 0.323811703669795 0.00604000562809555 0.00622526399354408 27636319 12263650 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} -9 652 234 0.324846227764806 0.325462666369949 0.32475776302739 0.325337605859464 0.00504033514736791 0.00441694970447015 27654148 12306946 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} -10 702 232 0.324434046225674 0.382015792068304 0.324315251392386 0.383749141680018 0.00475553571641277 0.031322812605381 27619059 24359449 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} -11 227 285 0.325542492587657 0.326545290006703 0.325474937056535 0.326390478370336 0.0051859760314493 0.00505090789145829 27713421 12347884 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} -12 280 285 0.325837617811778 0.325668544161051 0.325902189669642 0.325673304341192 0.00475520160950132 0.00473055977837806 27738545 12314731 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} -13 333 286 0.325410811574984 0.32518710483067 0.325383382925155 0.325322346837568 0.00439706422188717 0.00443838930122722 27702211 12296526 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} -14 386 286 0.325206982053851 0.32518588834019 0.325139238574807 0.325444419012741 0.00418583095697711 0.00420237120598232 27684859 12296480 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} -15 439 286 0.325391864075123 0.325956561505031 0.325230792706188 0.325703822384985 0.00424598690385507 0.003996790732572 27700598 12325622 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} -16 492 286 0.325549387927036 0.32533186719785 0.325474937056535 0.325200274662394 0.00529685745724639 0.00565539067038103 27714008 12302000 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.325523333646384 0.325496886776074 0.325368123903258 0.325505455100328 0.00545772873087825 0.00565085200694571 27711790 12308240 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.325314617479286 0.326075275108661 0.325261310749981 0.32632944228275 0.00561980814960726 0.00604706132216707 27694022 12330111 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.325261122802059 0.326066019202831 0.325185015640497 0.326039520866712 0.00468558206628173 0.00451580341458007 27689468 12329761 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.324450879311415 0.325143496291489 0.324483100633249 0.325246051728084 0.00432554639584007 0.00408041493179304 27620492 12294877 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} -21 226 338 0.325987788201252 0.325721937514966 0.325886930647745 0.325719081406882 0.00624758866369375 0.00581694223315537 27751329 12316750 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} -22 279 338 0.32574903560691 0.326357633127363 0.325780117494469 0.32646677347982 0.00540513130532459 0.00510692063215743 27731004 12340788 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} -23 333 338 0.326306829798415 0.326674132215855 0.326482032501717 0.326726176852064 0.00485866114491753 0.00539248294525345 27778489 12352756 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} -24 386 338 0.32643929784301 0.326225776137455 0.326482032501717 0.325749599450675 0.00482327439540929 0.00445817299750927 27789766 12335802 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} -25 439 339 0.326351209001437 0.326347134285607 0.326405737392233 0.326436255436027 0.00431729648566046 0.00386133367695446 27782267 12340391 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} -26 492 339 0.325709942439187 0.326401611902778 0.325780117494469 0.326314183260853 0.00485352444004033 0.00499505248507864 27727676 12342451 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} -27 545 339 0.325772411629677 0.32571659553503 0.325703822384985 0.325749599450675 0.00520800837875783 0.00498546351927236 27732994 12316548 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} -28 599 339 0.325483183271601 0.325732489247613 0.325627527275502 0.325642786297398 0.00525647048053288 0.00526662351880505 27708372 12317149 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.325414335598517 0.325354292935403 0.325459678034638 0.325246051728084 0.00474717603541378 0.00534042384118042 27702511 12302848 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.324932307912966 0.326960509942231 0.3247119859617 0.326054779888609 0.00423324690950673 0.00642880084441282 27661476 12363585 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} -31 226 390 0.326049352892369 0.326027858425367 0.326024261844816 0.326161593041886 0.00686736103510546 0.00688396399217042 27756570 12328318 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} -32 279 391 0.326883641970251 0.327271032360101 0.326756694895857 0.327183947508965 0.00636432182043244 0.00603354213283192 27827593 12375327 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} -33 332 391 0.326952642351022 0.32706232490636 0.326909285114824 0.327229724574655 0.00527868160582989 0.00577967400727504 27833467 12367435 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} -34 386 391 0.326424825853035 0.327079461554868 0.32651255054551 0.327046616311894 0.00533063368980838 0.00538620336733121 27788534 12368083 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} -35 439 391 0.326821442954898 0.326022754454438 0.326756694895857 0.326024261844816 0.00473957820443195 0.00432048240427571 27822298 12328125 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} -36 492 391 0.326488422731056 0.325484536753153 0.326314183260853 0.325597009231708 0.00481627021971381 0.00442701593953613 27793948 12307773 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} -37 545 392 0.326528126729525 0.326379847301355 0.326543068589303 0.326543068589303 0.00520678549888452 0.0053282643951204 27797328 12341628 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} -38 598 392 0.325523274912659 0.326045127301101 0.325230792706188 0.326268406195163 0.00559131848102917 0.00536147070633043 27711785 12328971 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.325663084672947 0.325261019850083 0.325764858472572 0.325246051728084 0.00458701769775314 0.00496221947460623 27723687 12299321 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.324957974551029 0.324747978212656 0.32498664835584 0.32484931715877 0.00406481269818873 0.00390657119691129 27663661 12279921 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} -41 226 443 0.326362791292114 0.326536139882654 0.326070038910506 0.326085297932403 0.00647094913798809 0.006807681782216 27783253 12347538 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} -42 279 443 0.326606853415246 0.327068962713112 0.326588845654994 0.327199206530861 0.00544026837498976 0.00523178801256303 27804030 12367686 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} -43 332 443 0.326767079018534 0.327419629316839 0.32664988174258 0.327260242618448 0.00503429932418817 0.00452645205416961 27817670 12380946 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} -44 385 444 0.327038475817534 0.327244957151106 0.327092393377585 0.327260242618448 0.00476213603101452 0.00482086216832896 27840774 12374341 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.326628079783658 0.326899024282076 0.32646677347982 0.326619363698787 0.00609377968693407 0.00579249409592494 27805837 12361260 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.326202976824905 0.326366333678843 0.326009002822919 0.326131074998093 0.00601337042167832 0.00602159568590431 27769648 12341117 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.326143397333712 0.326510355573556 0.325841153582055 0.326268406195163 0.00550525461617161 0.00580678292714956 27764576 12346563 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} -48 598 445 0.326126599488206 0.326224136519851 0.326100556954299 0.32646677347982 0.00581040038099868 0.00574210003041727 27763146 12335740 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} -49 651 445 0.325293720019737 0.325160315594654 0.325169756618601 0.324956130312047 0.00507701353517133 0.00527015043140836 27692243 12295513 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.325183042187319 0.324926458522501 0.325276569771878 0.325093461509117 0.00448567155989385 0.00409933778997884 27682821 12286670 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} -51 226 496 0.326290877718557 0.325965262056512 0.326482032501717 0.326131074998093 0.00582502095001721 0.00559627646338157 27777131 12325951 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} -52 279 496 0.326384123381232 0.32659307692623 0.326527809567407 0.326543068589303 0.00462612095116693 0.00461459617123102 27785069 12349691 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} -53 332 496 0.327085286596794 0.326654403913714 0.327122911421378 0.326619363698787 0.0042070178883349 0.00433137052532178 27844759 12352010 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} -54 385 496 0.326765810370062 0.326341950978343 0.326726176852064 0.326314183260853 0.00399388908438356 0.00399260061942673 27817562 12340195 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} -55 438 496 0.326625284058322 0.326869616946982 0.326497291523613 0.326832990005341 0.00554525387836706 0.00538165443031808 27805599 12360148 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.326028960542859 0.325736614737068 0.325993743801022 0.325368123903258 0.00666408233135459 0.00692795321282259 27754834 12317305 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.326692404959875 0.32648993968984 0.326665140764477 0.326451514457923 0.00585666752499696 0.0053973370145353 27811313 12345791 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.325593532195156 0.32643091345609 0.325734340428779 0.326573586633097 0.005842820633092 0.00560965770831274 27717766 12343559 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.325180035020571 0.325525897429489 0.325017166399634 0.325597009231708 0.00549183325557637 0.00557299361263366 27682565 12309337 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} -60 704 498 0.324959020011344 0.325527748610655 0.325047684443427 0.325230792706188 0.00533143362851911 0.00547913143444121 27663750 12309407 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} -61 225 548 0.326063425493009 0.326640916736648 0.326131074998093 0.326497291523613 0.00546226590475135 0.00579493590757211 27757768 12351500 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} -62 279 548 0.326308368622024 0.326269437567527 0.326268406195163 0.326436255436027 0.00458573349018953 0.00452194498177369 27778620 12337453 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} -63 332 549 0.327066233376227 0.327064414096533 0.326878767071031 0.327244983596551 0.00425336131499805 0.00404110249200733 27843137 12367514 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} -64 385 549 0.326416908546832 0.326718507672948 0.326497291523613 0.326680399786374 0.00430130894678317 0.00435400847132573 27787860 12354434 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} -65 438 549 0.326480376210656 0.326987325623693 0.326451514457923 0.327077134355688 0.00524747088555473 0.00549382570195006 27793263 12364599 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} -66 491 549 0.326075442413256 0.326329389391859 0.325963225757229 0.32623788815137 0.00682871674078395 0.00716040277620887 27758791 12339720 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.326354462849832 0.326453868102549 0.326314183260853 0.32660410467689 0.00626407693434096 0.00680360256141048 27782544 12344427 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} -68 598 550 0.32584918835571 0.32618872606869 0.325917448691539 0.325795376516365 0.00543315511279326 0.00581818482022478 27739530 12334401 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} -69 651 550 0.32593044059163 0.325852366450832 0.325703822384985 0.325688563363088 0.00531692308864492 0.00539021904804163 27746447 12321682 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.325030205286705 0.325262659467688 0.325001907377737 0.325261310749981 0.00532091175865663 0.00496795170722194 27669810 12299383 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} -71 225 601 0.325228231915754 0.325959972967466 0.325307087815671 0.325947966735332 0.00556946035276501 0.00564906676712199 27686668 12325751 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} -72 278 601 0.326078508313729 0.325690758335042 0.326054779888609 0.325612268253605 0.00479814445321714 0.00452112644317223 27759052 12315571 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} -73 332 601 0.326395811392616 0.326423799631324 0.326390478370336 0.326222629129473 0.00487920575548139 0.00470892077205264 27786064 12343290 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} -74 385 601 0.326932367468963 0.326501258340398 0.326726176852064 0.326619363698787 0.00554613198405978 0.00502204301019861 27831741 12346219 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} -75 438 602 0.326867196527098 0.326936233023512 0.326665140764477 0.326756694895857 0.00527949372019052 0.00558965818458581 27826193 12362667 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} -76 491 602 0.32650181402048 0.327378242195057 0.32642099641413 0.327687495231556 0.00598758988001548 0.00622592330999283 27795088 12379381 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} -77 544 602 0.326186061511948 0.326092861329738 0.326054779888609 0.326131074998093 0.00529457622046933 0.00577464609289617 27768208 12330776 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.326157129278745 0.325908325012935 0.326024261844816 0.325902189669642 0.00486608390552768 0.00484396495385919 27765745 12323798 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.326204868050868 0.326087519349802 0.326176852063783 0.326192111085679 0.00454740193400661 0.0044769549157903 27769809 12330574 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} -80 704 603 0.325613572142312 0.325435110216021 0.325612268253605 0.325413900968948 0.0048817733897419 0.00435192298600752 27719472 12305904 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} -81 227 656 0.324600779525752 0.396856621116755 0.32475776302739 0.402365148393988 0.00602962667954157 0.0282899289791107 27633253 19479991 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} -82 278 654 0.325936748593753 0.326203879308806 0.326009002822919 0.326070038910506 0.00496082566375003 0.00481439263238805 27746984 12334974 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} -83 331 654 0.325295411551033 0.325450422128808 0.325612268253605 0.325230792706188 0.00508969844785848 0.00503478084894872 27692387 12306483 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} -84 385 654 0.325963625146563 0.326510144009994 0.325795376516365 0.326726176852064 0.00534916615389643 0.00483902212993432 27749272 12346555 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} -85 438 654 0.326307487616141 0.327393474771508 0.326359960326543 0.327748531319142 0.00534407641435696 0.00547295293786473 27778545 12379957 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} -86 491 654 0.326316861518738 0.326479044166406 0.326268406195163 0.326253147173266 0.00507635380005021 0.00492103852317041 27779343 12345379 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} -87 544 655 0.326924520643231 0.326455904401831 0.326924544136721 0.326359960326543 0.00422289418422721 0.00424704847901409 27831073 12344504 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} -88 597 655 0.32617599455139 0.326318070741302 0.326253147173266 0.326268406195163 0.00418531177518751 0.00445792457626662 27767351 12339292 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} -89 650 655 0.325216602638096 0.325995277636846 0.325154497596704 0.326009002822919 0.00411208170038385 0.00394064317833666 27685678 12327086 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} -90 704 655 0.325255343403466 0.326181506462143 0.325215533684291 0.326100556954299 0.00461933867134434 0.00399771375793484 27688976 12334128 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} -91 225 711 0.324252547266993 0.396520555929561 0.324071107042039 0.404394598306249 0.00685736856274854 0.031910917636691 27603608 19463495 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} -92 278 706 0.325089855258369 0.325065323555394 0.325017166399634 0.325062943465324 0.00618014589633124 0.00507133928842296 27674888 12291921 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} -93 331 706 0.324592345362764 0.325538406125083 0.32466620889601 0.325642786297398 0.00592670231460427 0.00584012909911937 27632535 12309810 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} -94 384 707 0.32513627839504 0.325180995932823 0.32498664835584 0.325108720531014 0.00623659579727714 0.00600690152936907 27678840 12296295 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} -95 438 707 0.3264996056324 0.325842819645105 0.326543068589303 0.326070038910506 0.00588315258533313 0.00618095562572104 27794900 12321321 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} -96 491 707 0.326869816051258 0.332253645141 0.3265583276112 0.330907148851759 0.0057783480864112 0.00931862074100224 27826416 12563738 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} -97 544 707 0.32623418792666 0.325984699458754 0.326253147173266 0.325871671625849 0.0043053206628659 0.00459380475251768 27772305 12326686 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} -98 597 707 0.325794225335345 0.325318062675441 0.325856412603952 0.325139238574807 0.00419491038579376 0.00372344218995625 27734851 12301478 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} -99 650 708 0.325466126997703 0.325559641817601 0.325383382925155 0.325490196078431 0.00446303487200738 0.0046294075356633 27706920 12310613 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} -100 703 710 0.32526822958285 0.385958190811676 0.325246051728084 0.387060349431601 0.00481853038994439 0.0293213725829259 27690073 21777936 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv deleted file mode 100644 index 98e6db2..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 228 232 0.0342449923478766 0.040552472293843 0.0341649500267033 0.0407721065079728 0.00230299242404721 0.00454409138157464 2915275 2288199 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} -2 280 233 0.0341392833886399 0.0342078180934183 0.0341496910048066 0.0341649500267033 0.00202211856677505 0.00170956867059268 2906276 1293524 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} -3 333 233 0.0341652084550957 0.03396295971605 0.0341649500267033 0.0339818417639429 0.00173844496601942 0.00153099745147894 2908483 1284265 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} -4 386 233 0.0341480699539815 0.0339503716841213 0.0341039139391165 0.0339665827420462 0.00167493853110176 0.0013264995958777 2907024 1283789 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} -5 439 234 0.0341886901985687 0.0339391059244541 0.0340581368734264 0.0339055466544594 0.00194793883128589 0.00163693388315888 2910482 1283363 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.0340448865449434 0.0340351293360778 0.034027618829633 0.0338902876325628 0.0024571750306764 0.00252172160965156 2898240 1286994 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} -7 546 234 0.0342838858209327 0.0342391559460137 0.0342412451361868 0.0342259861142901 0.00260746122775198 0.0027915808743642 2918586 1294709 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} -8 599 234 0.0340492798276142 0.0340566559284936 0.0339665827420462 0.034027618829633 0.00231998765466994 0.00229329380100238 2898614 1287808 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} -9 652 234 0.034006181019809 0.0339344515260939 0.0340428778515297 0.0339055466544594 0.0018299940174297 0.00169125246409781 2894945 1283187 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} -10 702 232 0.0340438528313738 0.0401167683712625 0.0340733958953231 0.0403906309605554 0.00176468076197505 0.00362569223459073 2898152 2558068 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} -11 227 285 0.0339090354377568 0.0340654093708642 0.0338597695887694 0.0339513237201495 0.00201225820620702 0.00192849598443539 2886675 1288139 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} -12 280 285 0.0342353012831616 0.0341687581708162 0.0342717631799802 0.0342107270923934 0.0017979789858576 0.00190953204243661 2914450 1292047 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} -13 333 286 0.0340141922999733 0.0339856499080558 0.0339360646982528 0.0339513237201495 0.00159805430637141 0.001560961713797 2895627 1285123 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} -14 386 286 0.0342982168499658 0.0339797790192151 0.0343022812237736 0.0340123598077363 0.00158456274410405 0.00166044948808232 2919806 1284901 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} -15 439 286 0.034088349501847 0.034212419600888 0.0340733958953231 0.0341954680704967 0.00170899951741291 0.00162061333370043 2901940 1293698 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} -16 492 286 0.0340687324375148 0.034146491105934 0.0340123598077363 0.0341954680704967 0.00210306785695174 0.0019743267376091 2900270 1291205 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.0341352660018126 0.0341799974850382 0.0341649500267033 0.0341649500267033 0.00210807746430543 0.00199657753273921 2905934 1292472 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.0341891013346476 0.0343022018874379 0.0342412451361868 0.0344090943770504 0.00220449155662303 0.00250766357463059 2910517 1297093 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.0339472358528516 0.0341189878428966 0.0338750286106661 0.0341496910048066 0.00178655609061987 0.00169459698711001 2889927 1290165 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.0340357123370132 0.0339640704247495 0.034027618829633 0.0339513237201495 0.00167342091465771 0.00154482914491034 2897459 1284307 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} -21 226 338 0.0339914975884226 0.0342668443271677 0.034027618829633 0.0341802090486 0.00239165230364765 0.00242986584198843 2893695 1295756 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} -22 279 338 0.0342380147812818 0.0343127271746387 0.0342412451361868 0.0343022812237736 0.00209791636335119 0.00208910126623916 2914681 1297491 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} -23 333 338 0.0341450275469983 0.0343863512941541 0.0341802090486 0.0344701304646372 0.00188638745997883 0.00198428610277453 2906765 1300275 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} -24 386 338 0.0342956912997674 0.0343804539598682 0.0342870222018769 0.0344396124208438 0.00165724522307763 0.00176393715985412 2919591 1300052 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} -25 439 339 0.0342360765683388 0.0341706093519821 0.0341802090486 0.0342717631799802 0.00166728635428068 0.00162080576509457 2914516 1292117 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} -26 492 339 0.0343040902225204 0.0343551985596753 0.0342259861142901 0.034378576333257 0.00183107263025821 0.00187755753592163 2920306 1299097 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} -27 545 339 0.0341081545141009 0.0343466831263118 0.0340581368734264 0.0343022812237736 0.00199462278952654 0.00200820324773263 2903626 1298775 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} -28 599 339 0.0342953623909043 0.033934345744313 0.0342870222018769 0.0339208056763561 0.00206358959750077 0.00202789228201853 2919563 1283183 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.0340825113695278 0.0340592211366808 0.0340428778515297 0.0339818417639429 0.00184478816513967 0.0017571252430279 2901443 1287905 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.0340747350242655 0.0342366700741623 0.0340428778515297 0.0341954680704967 0.00170541920199568 0.00167482584561357 2900781 1294615 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} -31 226 390 0.0341636461379962 0.0342069189482805 0.0341496910048066 0.0341496910048066 0.00265922421610875 0.00260321055400408 2908350 1293490 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} -32 279 391 0.0342818183937935 0.0342743812790578 0.0342565041580835 0.0342565041580835 0.00231274852964449 0.00235989125486024 2918410 1296041 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} -33 332 391 0.034205734725722 0.0340225677495944 0.0342717631799802 0.0339971007858396 0.0019873613267566 0.00209009785033276 2911933 1286519 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} -34 386 391 0.0341513355491219 0.0342912534731134 0.0341649500267033 0.0343480582894636 0.00189310560650801 0.00190590538803295 2907302 1296679 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} -35 439 391 0.0342590532017721 0.0341981919513552 0.0342412451361868 0.0341344319829099 0.00181124557453418 0.00168846357104074 2916472 1293160 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} -36 492 391 0.034115813391912 0.0341509074952871 0.0340733958953231 0.0341496910048066 0.00177361006630923 0.00166882185987865 2904278 1291372 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} -37 545 392 0.0342398237800286 0.0341957060795037 0.0341496910048066 0.0341649500267033 0.00199331093711875 0.00192951066134194 2914835 1293066 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} -38 598 392 0.0340487394773391 0.0341505108136087 0.0340733958953231 0.0340886549172198 0.00192823540875466 0.00208133033606789 2898568 1291357 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.0340652788944527 0.0341361509368497 0.0340581368734264 0.0341344319829099 0.00179278184247926 0.00169530464767754 2899976 1290814 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.0340495969897321 0.0340042675014965 0.0339971007858396 0.0340123598077363 0.00151928111039012 0.0014890957596795 2898641 1285827 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} -41 226 443 0.0341078725922183 0.0340855608001281 0.0340886549172198 0.0340733958953231 0.00243014081659 0.00278658014138242 2903602 1288901 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} -42 279 443 0.0343189381083382 0.0343159799644018 0.0342870222018769 0.0342870222018769 0.00205414949843773 0.00202864545010158 2921570 1297614 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} -43 332 443 0.0343585833730814 0.0343306571865035 0.0343480582894636 0.0342565041580835 0.00176672334336836 0.00181417775634839 2924945 1298169 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} -44 385 444 0.0342476706057614 0.0344255434439824 0.0342412451361868 0.0343633173113603 0.00187732032224415 0.00193113963339981 2915503 1301757 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.0343036790864415 0.0340429307424202 0.0344243533989471 0.0339208056763561 0.00227966541656669 0.00219878381976751 2920271 1287289 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.0341616961783081 0.0341786487673315 0.0341496910048066 0.0340581368734264 0.00219362097207867 0.00215305349959103 2908184 1292421 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.0341905344375509 0.0342708640348424 0.0342565041580835 0.0342870222018769 0.00213933322908042 0.00211365574711847 2910639 1295908 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} -48 598 445 0.034103855205391 0.0343720443082857 0.0342107270923934 0.034378576333257 0.00215463871509963 0.00220907834263212 2903260 1299734 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} -49 651 445 0.0340574085752297 0.0340446232509148 0.0339360646982528 0.0339513237201495 0.00188534430125175 0.00202099235964151 2899306 1287353 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.0338275130266998 0.0340565237012675 0.0337987335011826 0.0339971007858396 0.00174130635084052 0.0015919989039232 2879735 1287803 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} -51 226 496 0.0340634933891962 0.0342690128536764 0.0340428778515297 0.0341954680704967 0.00226375176985653 0.00209602470232608 2899824 1295838 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} -52 279 496 0.034342819241145 0.0342894287373926 0.0342717631799802 0.0342717631799802 0.0018276377312356 0.00169611648563548 2923603 1296610 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} -53 332 496 0.034298886414437 0.0345196363381045 0.0343022812237736 0.0345464255741207 0.0016267294322946 0.00167658154437763 2919863 1305315 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} -54 385 496 0.0342954563648652 0.0345087143692252 0.0343175402456703 0.034531166552224 0.00144374337179524 0.00144271834509881 2919571 1304902 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} -55 438 496 0.0343218395543802 0.0345256130087261 0.0342717631799802 0.0345616845960174 0.00214009146017879 0.00208884560063485 2921817 1305541 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.0342511006553333 0.0341096261552858 0.0341649500267033 0.0340733958953231 0.00253594524110998 0.00257332259466058 2915795 1289811 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.0342523458103149 0.0342447359349569 0.0342870222018769 0.0342259861142901 0.00227545439615859 0.00213197117327524 2915901 1294920 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.0341716691649057 0.0342600742931893 0.0341649500267033 0.0343022812237736 0.00213851775948172 0.00215674261298653 2909033 1295500 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.0341145329966951 0.0339071333811731 0.0341344319829099 0.0340581368734264 0.00208017634049319 0.00215452190686077 2904169 1282154 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} -60 704 498 0.0340460729661994 0.0341139896537485 0.0339971007858396 0.0340733958953231 0.00206752066940594 0.00214252838295192 2898341 1289976 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} -61 225 548 0.03412098195976 0.0341800503759286 0.0341191729610132 0.0341039139391165 0.00214581546283601 0.00211465476204238 2904718 1292474 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} -62 279 548 0.0342249289072303 0.0341717729515722 0.0342259861142901 0.0341649500267033 0.00176810644178259 0.00171743624355019 2913567 1292161 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} -63 332 549 0.034368662080385 0.0343123040475151 0.0344090943770504 0.0343175402456703 0.00155425799996797 0.00159809237394148 2925803 1297475 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} -64 385 549 0.0343866933341274 0.0343898949838147 0.034378576333257 0.034378576333257 0.00170715195763561 0.00175816830374546 2927338 1300409 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} -65 438 549 0.0342186796388322 0.0342216226158274 0.0341954680704967 0.0342717631799802 0.00199281461184279 0.00205252754259119 2913035 1294046 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} -66 491 549 0.0342622365696967 0.0342146410182872 0.0342870222018769 0.0341954680704967 0.00267754171670741 0.00270646457796757 2916743 1293782 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.03424320684262 0.0341323956836273 0.0342412451361868 0.034027618829633 0.00235873926992807 0.00253847537605122 2915123 1290672 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} -68 598 550 0.0342243180764846 0.0342621370379171 0.0342107270923934 0.0342107270923934 0.00212038591747636 0.00199147967807593 2913515 1295578 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} -69 651 550 0.0342373099765752 0.0340800072566302 0.0341954680704967 0.0341191729610132 0.00198357925924729 0.00208196484738442 2914621 1288691 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.0340111146527548 0.0340032625745778 0.034027618829633 0.0340123598077363 0.00199480262863909 0.00203216461166545 2895365 1285789 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} -71 225 601 0.0340108797178526 0.0340479289315683 0.0339971007858396 0.0341344319829099 0.00206781145597653 0.00208713504808405 2895345 1287478 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} -72 278 601 0.0340093761344786 0.0341822453478826 0.0339818417639429 0.0341496910048066 0.00173810482298612 0.00165222570708396 2895217 1292557 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} -73 332 601 0.0340048066506312 0.0342002811415282 0.0339971007858396 0.0341649500267033 0.00178579021088297 0.00181659831340466 2894828 1293239 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} -74 385 601 0.0344797627956267 0.0341661136262933 0.0344090943770504 0.0341802090486 0.00187385993598418 0.00201267357688208 2935261 1291947 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} -75 438 602 0.0343471302966 0.03437833832425 0.0342565041580835 0.0343480582894636 0.0020551620728885 0.00213032128118689 2923970 1299972 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} -76 491 602 0.0343382145170622 0.0342048562035527 0.0343175402456703 0.0342259861142901 0.00241200611863786 0.00226941679983203 2923211 1293412 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} -77 544 602 0.0342989216546724 0.0343915874923093 0.0342717631799802 0.0342870222018769 0.0020598164623512 0.00190992172970053 2919866 1300473 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.0342349723742985 0.0342862817294105 0.0342259861142901 0.0341802090486 0.00196151749031322 0.00207592247785016 2914422 1296491 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.034055940232091 0.0341625170457423 0.0339971007858396 0.0341649500267033 0.00166788619179786 0.00179064907578708 2899181 1291811 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} -80 704 603 0.0340499493920854 0.0342735614702557 0.034027618829633 0.0343022812237736 0.00179031299470398 0.00164408842278048 2898671 1296010 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} -81 227 656 0.0340878443918073 0.0419753078874373 0.0340123598077363 0.0422369726100557 0.00239138936095422 0.00398242860002667 2901897 2060388 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} -82 278 654 0.0341472829220592 0.0340544080656492 0.0341344319829099 0.0340123598077363 0.00189148441006767 0.00178231806592244 2906957 1287723 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} -83 331 654 0.0340148853579348 0.0338952064853752 0.0339513237201495 0.0338750286106661 0.00185678885032309 0.00188522158915176 2895686 1281703 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} -84 385 654 0.0342719981148823 0.0340427720697488 0.0343022812237736 0.0339665827420462 0.00189121152072287 0.00181005455355963 2917574 1287283 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} -85 438 654 0.0341609091463858 0.03419179215361 0.0340886549172198 0.0340733958953231 0.00206911627704928 0.00214583108901721 2908117 1292918 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} -86 491 654 0.0343092118033879 0.0342039835038602 0.0343022812237736 0.0342259861142901 0.00192094625697359 0.00179210213538655 2920742 1293379 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} -87 544 655 0.0340774015354053 0.0340657796070974 0.0340886549172198 0.0340886549172198 0.00163213857931683 0.00164425853899559 2901008 1288153 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} -88 597 655 0.0341222506082318 0.0342661038547013 0.0341039139391165 0.0343480582894636 0.00162710515026651 0.00154098755612566 2904826 1295728 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} -89 650 655 0.0340759449390118 0.0340851376730045 0.0340581368734264 0.0340733958953231 0.00153968412103264 0.00155176149993307 2900884 1288885 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} -90 704 655 0.0339591705458824 0.0340808799563227 0.0339513237201495 0.0340428778515297 0.00168703397172766 0.00170297118801228 2890943 1288724 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} -91 225 711 0.033858653647984 0.0415318998612937 0.0337529564354925 0.0418860151064317 0.0025591112724578 0.00422557177849658 2882386 2038623 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} -92 278 706 0.0338269374361895 0.0337307422615008 0.0338139925230793 0.0338597695887694 0.00223466464572744 0.00201004060206167 2879686 1275484 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} -93 331 706 0.0339393420401383 0.0339497898843263 0.0339360646982528 0.0339208056763561 0.00229172039931174 0.00216554975841495 2889255 1283767 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} -94 384 707 0.0340309196650087 0.0341738356963 0.0339360646982528 0.0341039139391165 0.00231078255140441 0.00246761416942063 2897051 1292239 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} -95 438 707 0.0341199834864257 0.03417499929589 0.0341802090486 0.0341649500267033 0.00236149439255744 0.00227429014521358 2904633 1292283 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} -96 491 707 0.0343931657906825 0.0349565415387203 0.0344090943770504 0.0349279011215381 0.00202014696113101 0.00202927803577852 2927889 1321836 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} -97 544 707 0.0340668881985327 0.0341071402834344 0.0340733958953231 0.0341039139391165 0.00163375425513154 0.00161228372926031 2900113 1289717 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} -98 597 707 0.0340906988508688 0.0340495949946177 0.0341191729610132 0.0340123598077363 0.00153072791533178 0.00159319784915506 2902140 1287541 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} -99 650 708 0.034151030133749 0.0340566294830484 0.0341802090486 0.0340123598077363 0.00164564065699952 0.00156697678919425 2907276 1287807 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} -100 703 710 0.0341066979177074 0.040565799569646 0.0341802090486 0.0406500343327993 0.00179143821310412 0.00355255686227591 2903502 2288951 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv deleted file mode 100644 index 7f961dd..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 257 214 0.239625564963171 0.938263840539854 0.237323567559319 1 0.0124810327212997 0.144207636300068 22660672 52942133 1443 861 73 True 255 217 32 {X=0,Y=0,Width=0,Height=0} -2 308 217 0.232367409753539 0.232438247571416 0.232028686961166 0.231845578698405 0.00506045953455003 0.00540376660680521 21974290 8789349 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} -3 360 217 0.230738141701749 0.229908661398998 0.23076218814374 0.229831387808041 0.00429643641392654 0.00404302351020266 21820215 8693696 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} -4 413 217 0.230775363986625 0.231118937199869 0.23057907988098 0.231036850537881 0.00572470515989815 0.0042264061618702 21823735 8739461 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} -5 466 217 0.233912060554313 0.230230740476433 0.230746929121843 0.230182345311666 0.0204041914248976 0.00611032379509473 22120363 8705875 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} -6 519 217 0.230448653840734 0.230299683752143 0.230472266727703 0.230411230640116 0.00577740055696784 0.00573722946017692 21792839 8708482 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} -7 571 217 0.230833333465515 0.231312359186268 0.230838483253223 0.231372549019608 0.0052509469648507 0.00532479321238748 21829217 8746775 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} -8 624 217 0.23098010770247 0.230748780303009 0.231128404669261 0.230548561837186 0.00437989230692471 0.00451303918365246 21843097 8725464 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} -9 677 217 0.23159886474146 0.231329733843783 0.231570916304265 0.231357289997711 0.0038170528794568 0.00337039509853208 21901611 8747432 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.236699332922725 0.978949745093697 0.235919737544823 1 0.00714985987034068 0.0648695176913337 22383947 55237861 1443 861 82 True 729 217 33 {X=0,Y=0,Width=0,Height=0} -11 255 269 0.232647116190261 0.230781466873311 0.231754024567025 0.23080796520943 0.00674734022645351 0.00400364001139379 22000741 8726700 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} -12 308 269 0.231638201928886 0.23161727516975 0.231540398260472 0.231708247501335 0.00367123974272067 0.00380844021339312 21905331 8758305 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} -13 360 269 0.231187008618915 0.23087862743908 0.231113145647364 0.2309452964065 0.00367528458294983 0.00356479315353894 21862663 8730374 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} -14 413 269 0.231074538101318 0.232347724812399 0.23089951934081 0.231692988479438 0.00374019324308192 0.00491190047416465 21852027 8785926 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} -15 466 269 0.232011958081997 0.231107354094859 0.231250476844434 0.231021591515984 0.00756795284995832 0.00457943902955457 21940676 8739023 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} -16 518 269 0.231975105905067 0.231462410642493 0.231342030975814 0.231219958800641 0.00945704189033868 0.00547129200357154 21937191 8752449 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} -17 571 269 0.231532530822986 0.231390320358801 0.231555657282368 0.231189440756847 0.00464403622176798 0.00432339325131507 21895338 8749723 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} -18 624 269 0.231469274087722 0.231208983940871 0.231494621194781 0.231052109559777 0.0040431312044763 0.00377313059991359 21889356 8742866 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} -19 677 269 0.231208083622824 0.230829835592634 0.231174181734951 0.230731670099947 0.00340716940729344 0.00361826402861519 21864656 8728529 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} -20 729 270 0.231446665779465 0.231620527959513 0.231387808041505 0.231631952391852 0.00389639557557146 0.00371465630000045 21887218 8758428 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} -21 255 321 0.23100995955196 0.231091962845736 0.23080796520943 0.231204699778744 0.00444379275815618 0.00467633887068022 21845920 8738441 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} -22 307 321 0.23139633109878 0.232108631542091 0.231372549019608 0.231158922713054 0.00370135138772358 0.00666665056648587 21882458 8776885 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} -23 360 321 0.231424723665511 0.231618200760333 0.231570916304265 0.231509880216678 0.00401625754785925 0.00462787072781372 21885143 8758340 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} -24 413 321 0.231083526437154 0.231926977778818 0.231082627603571 0.231830319676509 0.00388946261043034 0.00384759510731082 21852877 8770016 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} -25 466 321 0.231615889706986 0.231885617102481 0.231601434348058 0.231891355764096 0.00438509579173074 0.0043791048806693 21903221 8768452 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} -26 518 321 0.232067960701515 0.232332598017729 0.232059205004959 0.232196536202029 0.00497547407160789 0.0045183173932108 21945972 8785354 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} -27 571 321 0.236934822283717 0.232842386865394 0.232394903486687 0.232684824902724 0.0483595048290229 0.00442441917245021 22390689 8804631 1442 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} -28 624 322 0.232225203706092 0.232504863647946 0.232120241092546 0.23237964446479 0.00413898528692754 0.00387900015145899 21960842 8791868 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} -29 676 322 0.231720429340022 0.232323024766556 0.231754024567025 0.232120241092546 0.00343871246316838 0.00348246647486117 21913107 8784992 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} -30 729 322 0.231297406532014 0.231058006894063 0.231342030975814 0.231067368581674 0.00376896213496857 0.00351445788476838 21873103 8737157 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} -31 255 373 0.231665822556186 0.231099156006838 0.231754024567025 0.230914778362707 0.00505307603338378 0.00528008458080721 21907943 8738713 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} -32 307 373 0.231965409076876 0.231832065075894 0.231830319676509 0.231921873807889 0.00395985697155972 0.00370363603906981 21936274 8766427 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} -33 360 373 0.231707750499236 0.230870323569278 0.231647211413748 0.230930037384604 0.0042259653806659 0.00417196213781584 21911908 8730060 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} -34 413 373 0.231941552976115 0.232143195739004 0.231845578698405 0.231937132829786 0.00414624824077485 0.00403759590708317 21934018 8778192 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} -35 466 373 0.23264684125293 0.232843656246765 0.23256275272755 0.232913710231174 0.00441399630612317 0.00416007271832241 22000715 8804679 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} -36 518 373 0.232707052528522 0.232857804559962 0.232501716639963 0.23251697566186 0.00453222018704865 0.00390261566023082 22006409 8805214 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} -37 571 374 0.232689572858948 0.232567856698479 0.23270008392462 0.232669565880827 0.00373990487245491 0.00419926775644477 22004756 8794250 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} -38 624 374 0.232365559213808 0.232910483886856 0.23224231326772 0.232852674143587 0.00401268510818489 0.00402511936587455 21974115 8807206 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} -39 676 374 0.23253120895602 0.232214783559237 0.232486457618067 0.232166018158236 0.00376530455371069 0.0036979822933967 21989780 8780899 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} -40 729 374 0.231395157327865 0.231589401670479 0.231387808041505 0.231586175326162 0.00375539396136359 0.00378501675522769 21882347 8757251 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} -41 255 425 0.231811401873201 0.231577845010915 0.231754024567025 0.231357289997711 0.00548357671808868 0.00581364576667566 21921710 8756814 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} -42 307 425 0.23199519747929 0.231850471105773 0.231937132829786 0.231982909895476 0.00451744243133572 0.00447805451751456 21939091 8767123 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} -43 360 425 0.232326951667762 0.232227636045618 0.232272831311513 0.23224231326772 0.00492421275596168 0.00490296044775431 21970464 8781385 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} -44 413 425 0.232897795589487 0.232353569255795 0.232761120012207 0.232089723048753 0.00470150309201746 0.00444331239347165 22024447 8786147 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} -45 465 425 0.233564370575128 0.233895391603492 0.233508812085145 0.233707179369802 0.00488366275190571 0.00507876596181842 22087483 8844449 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} -46 518 426 0.234929508447476 0.235164217620098 0.233691920347906 0.233417257953765 0.0115709044908625 0.0130034209912471 22216580 8892428 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} -47 571 426 0.233431924802948 0.233706121551993 0.233463035019455 0.233569848172732 0.00416330444611367 0.00417225344103842 22074958 8837292 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} -48 624 426 0.233312126148015 0.233167692287146 0.233142595559625 0.233203631647211 0.00441218958943107 0.00428465004116319 22063629 8816932 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} -49 676 426 0.232874182702519 0.232277459264428 0.232745860990311 0.232394903486687 0.00417173098913696 0.00379680820454123 22022214 8783269 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} -50 729 426 0.231826819512789 0.239475988791891 0.231860837720302 0.235187304493782 0.00424889181747074 0.012296534672424 21923168 9055472 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} -51 255 477 0.231721455067759 0.231713827490278 0.231738765545129 0.231769283588922 0.00521573716696076 0.0052029446937872 21913204 8761956 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} -52 307 477 0.232026413440925 0.232044395555631 0.232089723048753 0.231982909895476 0.00414757192472929 0.00399079263831907 21942043 8774456 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} -53 360 477 0.232854122851834 0.232580338948627 0.232745860990311 0.232303349355306 0.00427633869439967 0.0040786758184801 22020317 8794722 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} -54 413 478 0.233740816894857 0.23434009821045 0.233630884260319 0.234348058289464 0.00503324859784375 0.0049884799208475 22104169 8861265 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} -55 465 478 0.233906847319528 0.233645825936873 0.233981841763943 0.233554589150835 0.00595532003248602 0.00622033781970772 22119870 8835012 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} -56 518 478 0.234342686436987 0.234062394590108 0.234378576333257 0.23408865491722 0.00539685633209953 0.00544567086187637 22161086 8850764 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} -57 571 478 0.234444000843635 0.234810774244622 0.234454871442741 0.234744792858778 0.00489257102097917 0.00545003421455041 22170667 8879063 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} -58 623 478 0.233654528870825 0.234285911493177 0.233554589150835 0.234103913939117 0.00489824874560151 0.00511105549289502 22096009 8859216 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} -59 676 478 0.233162073812108 0.234000380021048 0.232547493705653 0.233752956435492 0.00550944493458939 0.00553477041894349 22049439 8848419 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} -60 729 478 0.231976882423209 0.231573560848788 0.231952391851682 0.231479362172885 0.00499633466535141 0.00535449136795783 21937359 8756652 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} -61 254 529 0.231878095325108 0.2315529862924 0.231906614785992 0.231235217822538 0.00456807500894764 0.00426082051588796 21928017 8755874 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} -62 307 529 0.232335337256372 0.231902489296537 0.232364385442893 0.231784542610819 0.00366332217994101 0.00379109337695402 21971257 8769090 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} -63 360 530 0.233500680284841 0.233797834356045 0.233615625238422 0.233875028610666 0.00363222527993717 0.00377460307612454 22081460 8840760 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} -64 413 530 0.233943424559126 0.233746794646754 0.233875028610666 0.233737697413596 0.00416377807625241 0.00355215484641989 22123329 8838830 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} -65 465 530 0.234379422294277 0.234696767930243 0.234332799267567 0.234622720683604 0.00576237359051774 0.00612938842466044 22164560 8874752 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} -66 518 530 0.234519217352818 0.234436597640088 0.234439612420844 0.234470130464637 0.0054448318237484 0.0053112182823904 22177780 8864914 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} -67 571 530 0.234292637268147 0.234900027622268 0.234332799267567 0.234699015793088 0.00452397912300696 0.00430682349500907 22156353 8882438 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} -68 623 530 0.23358261160962 0.233305155711443 0.233478294041352 0.233218890669108 0.00463196405709613 0.00409753570081032 22089208 8822130 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} -69 676 530 0.232886607754999 0.231889742591937 0.23251697566186 0.232013427939269 0.00443614929181162 0.00388859575240599 22023389 8768608 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} -70 729 530 0.232561801021403 0.231434114016099 0.23242542153048 0.231342030975814 0.00540020356098678 0.00403732810286413 21992673 8751379 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} -71 254 581 0.232719065175005 0.232323104102892 0.232822156099794 0.23237964446479 0.00437605861421915 0.00477884200421485 22007545 8784995 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} -72 307 582 0.232498745201881 0.232670914598534 0.232486457618067 0.23270008392462 0.00357537872451027 0.00334548578569696 21986710 8798147 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} -73 360 582 0.23462085956936 0.233988902697819 0.233768215457389 0.233966582742046 0.00989779099293048 0.00365056352231995 22187392 8847985 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} -74 412 582 0.234045066775669 0.234615553967947 0.23404287785153 0.234699015793088 0.00411867588971349 0.00389584735703929 22132941 8871681 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} -75 465 582 0.234517546579803 0.234819342568876 0.234531166552224 0.234714274814984 0.00525171021502886 0.0051815746985305 22177622 8879387 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} -76 518 582 0.234635494695005 0.234578080772059 0.234699015793088 0.234531166552224 0.00562844267643118 0.00545721176561576 22188776 8870264 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} -77 571 582 0.233917675620582 0.234623487601516 0.233783474479286 0.234592202639811 0.00431795714377821 0.00453826052575785 22120894 8871981 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} -78 623 582 0.233297163212476 0.233217013042497 0.233234149691005 0.233035782406348 0.00379155897042519 0.00393807614090322 22062214 8818797 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} -79 676 582 0.232099049768997 0.231932002413411 0.232043945983062 0.231830319676509 0.00341171652621545 0.00343867125641085 21948912 8770206 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} -80 729 582 0.232127537506343 0.231727684903578 0.232013427939269 0.231784542610819 0.00432274021471807 0.00418735778720964 21951606 8762480 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} -81 253 637 0.242618257816244 0.978909281447769 0.241031509880217 1 0.00963733930239385 0.0692124033332237 22943682 48050462 1443 749 83 True 254 634 31 {X=0,Y=0,Width=0,Height=0} -82 307 634 0.234460655701214 0.233664179075861 0.234027618829633 0.233218890669108 0.00453620465736845 0.00354589002515053 22172242 8835706 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} -83 360 634 0.233411537142368 0.233809549688281 0.233340962844282 0.233691920347906 0.0037890531923281 0.00385827492745188 22073030 8841203 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} -84 412 634 0.235398340044712 0.233723972227522 0.234500648508431 0.233524071107042 0.00717726214942527 0.00401312432594189 22260916 8837967 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} -85 465 634 0.23424256695028 0.24066986841672 0.234241245136187 0.23598077363241 0.004806124836672 0.0202252374790453 22151618 9100617 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} -86 518 634 0.23426983861866 0.234654481663323 0.234241245136187 0.234637979705501 0.00456259290093584 0.00470205135123672 22154197 8873153 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} -87 571 634 0.233675212617762 0.233724157345639 0.233524071107042 0.233539330128939 0.00457811867434722 0.00447938276836769 22097965 8837974 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} -88 623 634 0.232756752738442 0.232401541293439 0.232822156099794 0.23251697566186 0.00360259014336412 0.00369457004989902 22011109 8787961 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} -89 676 634 0.232600165353656 0.231796495952062 0.232623788815137 0.231647211413748 0.00337837168999886 0.00355571170322549 21996301 8765082 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} -90 729 634 0.23186575486873 0.231713087017812 0.231906614785992 0.231708247501335 0.0040009806542118 0.00388172781631649 21926850 8761928 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} -91 253 690 0.243771091196131 0.973385230305803 0.24115358205539 1 0.0141580900618744 0.0864309408732952 23052702 47779310 1443 749 82 True 254 686 31 {X=0,Y=0,Width=0,Height=0} -92 307 686 0.234406556493991 0.233271279096105 0.23395132372015 0.233188372625315 0.0047617307961239 0.00342519695131413 22167126 8820849 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} -93 360 686 0.232832794059619 0.232884778914094 0.232761120012207 0.232990005340658 0.00424345176962039 0.00398270435338114 22018300 8806234 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} -94 412 686 0.233497148397583 0.232603029140633 0.233554589150835 0.232455939574273 0.0040611110423329 0.00379170979620769 22081126 8795580 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} -95 465 686 0.23394244112944 0.234123536459476 0.23395132372015 0.234103913939117 0.00451740833313688 0.00450137133471654 22123236 8853076 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} -96 518 686 0.233421307992148 0.233586217903328 0.233447775997559 0.233401998931868 0.00434136516663539 0.00441379712653287 22073954 8832758 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} -97 570 686 0.232602079340463 0.232399452103266 0.23256275272755 0.232227054245823 0.00350183635463455 0.00375235497977732 21996482 8787882 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} -98 623 686 0.232267533480626 0.232555004212098 0.2323338673991 0.23247119859617 0.00375184867291539 0.00360739980698386 21964845 8793764 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} -99 676 686 0.232913371846766 0.231686430009022 0.232776379034104 0.231662470435645 0.00403128930907614 0.00386519240482842 22025920 8760920 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} -100 728 690 0.236375932599325 0.944805229041729 0.235996032654307 1 0.00510610476815883 0.130293302005745 22353364 53311235 1443 861 76 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv deleted file mode 100644 index 4b8cad7..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 257 214 0.0241564697962043 0.153193207307282 0.0240939955748837 0.17080949111162 0.00226463056148391 0.0492970397586142 2284405 8644024 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} -2 308 217 0.0235933769923241 0.0234806992545955 0.0235294117647059 0.023422598611429 0.00166862767325673 0.00164955172310329 2231155 887892 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} -3 360 217 0.023371428544237 0.0234825239903162 0.0234683756771191 0.0234988937209125 0.00159872907065476 0.00164075915776558 2210166 887961 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} -4 413 217 0.0234637757640733 0.0233236133099397 0.0235141527428092 0.0233157854581521 0.00186607835392395 0.00165967948930581 2218899 881952 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} -5 466 217 0.0237313743836976 0.023339401240741 0.0234988937209125 0.0232547493705653 0.0030924019295995 0.00241552516860202 2244205 882549 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} -6 519 217 0.0234398985142862 0.0232805336796629 0.023422598611429 0.0233157854581521 0.00234055782900588 0.00226570644593574 2216641 880323 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} -7 571 217 0.0234715903289948 0.0234136864963871 0.0234683756771191 0.0234683756771191 0.00201990743310606 0.00202621135752353 2219638 885358 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} -8 624 217 0.0232964129507961 0.0233930061582186 0.023270008392462 0.0233463035019455 0.0017896199529616 0.00198947248764821 2203072 884576 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} -9 677 217 0.0233510620326825 0.0233135375953077 0.0233310444800488 0.0233463035019455 0.00152999082845091 0.00139239529967715 2208240 881571 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.0238511836131429 0.176301888317252 0.0237888151369497 0.195223926146334 0.00190342011693346 0.0428208551196959 2255535 9947946 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} -11 255 269 0.0236198026996837 0.0233685705668277 0.0235599298084993 0.0233310444800488 0.00181812785907283 0.00184520811343629 2233654 883652 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} -12 308 269 0.0233702970713728 0.0234707028762992 0.0233615625238422 0.0234378576333257 0.00149879933035201 0.00142693438366837 2210059 887514 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} -13 360 269 0.0234346324069373 0.0235534242289731 0.0234073395895323 0.0236057068741894 0.0014589254187523 0.00126843806513634 2216143 890642 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} -14 413 269 0.0233173716350645 0.0235845240725615 0.0232852674143587 0.0236362249179828 0.00146619185489175 0.00148384408502576 2205054 891818 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} -15 466 269 0.0234643467877618 0.023442300468124 0.0233768215457389 0.0234531166552224 0.00196348268778322 0.00186832378349179 2218953 886440 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} -16 518 269 0.0234410828597141 0.0234813074998357 0.0233310444800488 0.023422598611429 0.00233587399404548 0.00228789175347978 2216753 887915 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} -17 571 269 0.0233997470893786 0.0235205789859997 0.0234378576333257 0.0235294117647059 0.00176758838939391 0.00158209322877627 2212844 889400 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} -18 624 269 0.0233784923187532 0.0233481811285567 0.0234378576333257 0.0233310444800488 0.00157874336032729 0.00155960446431157 2210834 882881 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} -19 677 269 0.0233198566455605 0.0234810165999382 0.0233615625238422 0.0234073395895323 0.00136907611948734 0.00138702918288348 2205289 887904 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} -20 729 270 0.0233750450275971 0.0235108470621557 0.0233920805676356 0.0234683756771191 0.0015957191186705 0.00151594604508246 2210508 889032 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} -21 255 321 0.0233337832788508 0.0233040172350256 0.0233157854581521 0.0232852674143587 0.0018536485776663 0.00214183576728544 2206606 881211 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} -22 307 321 0.0234200924519075 0.0236481253683355 0.0234531166552224 0.0236209658960861 0.0013899218439415 0.0015528534065677 2214768 894223 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} -23 360 321 0.0233764937358437 0.0237096903648268 0.0233310444800488 0.0237888151369497 0.00154545138907833 0.00175937981523353 2210645 896551 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} -24 413 321 0.0235205714720478 0.0234668418412959 0.0234683756771191 0.0234378576333257 0.00152504275074237 0.0014972412129826 2224270 887368 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} -25 466 321 0.0234236666372166 0.023483661144461 0.0234073395895323 0.0234378576333257 0.00171904969243255 0.00173381559796299 2215106 888004 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} -26 518 321 0.0235144171056279 0.0235530804381852 0.0235599298084993 0.0235141527428092 0.001915065630963 0.00179815943853203 2223688 890629 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} -27 571 321 0.0245165531043306 0.0234423269135693 0.0236514839398795 0.0233157854581521 0.0107281350707713 0.00183511920773927 2318457 886441 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} -28 624 322 0.0234871348627357 0.0232526337349471 0.0234683756771191 0.0232852674143587 0.00162880342717246 0.00162375266541764 2221108 879268 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} -29 676 322 0.0233946713232591 0.0234725276120199 0.0233615625238422 0.0234531166552224 0.00135791145698732 0.00149300679140969 2212364 887583 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} -30 729 322 0.0233641638539785 0.0233144896313359 0.0233310444800488 0.023270008392462 0.00146321411806189 0.00143995042167629 2209479 881607 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} -31 255 373 0.0234612061574753 0.0233011875723861 0.0234531166552224 0.0233005264362554 0.00190563046881693 0.00202810163318487 2218656 881104 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} -32 307 373 0.0233728772524836 0.0235085991993113 0.0233157854581521 0.0234073395895323 0.00160205738637447 0.00150796908580594 2210303 888947 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} -33 360 373 0.0234484427205874 0.0235254978388121 0.023422598611429 0.023575188830396 0.00164117535094777 0.00156923500722329 2217449 889586 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} -34 413 373 0.0234766237970633 0.0237296831214194 0.0234531166552224 0.0237277790493629 0.00154532296482824 0.00154200147839793 2220114 897307 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} -35 466 373 0.0234916607541922 0.023571830258852 0.0234683756771191 0.0236057068741894 0.00164069928436055 0.0016515608045266 2221536 891338 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} -36 518 373 0.023515929260951 0.0236420958068234 0.0234683756771191 0.0236057068741894 0.00175258127359927 0.00159556181898818 2223831 893995 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} -37 571 374 0.023791289572933 0.0234731358572602 0.0237430380712596 0.023422598611429 0.00155229766246255 0.00150235621585721 2249871 887606 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} -38 624 374 0.0234600112375347 0.0235166386146606 0.0234988937209125 0.0235141527428092 0.00160387516994475 0.00167146854998249 2218543 889251 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} -39 676 374 0.0233686791709222 0.0235612520807607 0.0233463035019455 0.0235446707866026 0.00143653459137029 0.0014008580320713 2209906 890938 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} -40 729 374 0.023386084818907 0.0234060966536066 0.0233768215457389 0.0233157854581521 0.00141460365348053 0.0014951433071847 2211552 885071 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} -41 255 425 0.0235847587644337 0.0234965400762872 0.0234836346990158 0.0234378576333257 0.00218669897686332 0.00248969646970199 2230340 888491 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} -42 307 425 0.0235529294810595 0.0234215407936199 0.0235446707866026 0.0233920805676356 0.00178530507822455 0.00178457762435051 2227330 885655 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} -43 360 425 0.0235116042852367 0.0235830431276288 0.0235446707866026 0.0235904478522927 0.00185926669395926 0.00182974842332018 2223422 891762 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} -44 413 425 0.0235834052268019 0.0235029398740324 0.0235446707866026 0.0234378576333257 0.00179790109030112 0.00173008998520075 2230212 888733 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} -45 465 425 0.0237523013444277 0.0237523204225347 0.0236972610055695 0.0237277790493629 0.00191984373902558 0.0019615558369491 2246184 898163 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} -46 518 426 0.0238831609396956 0.0237953471619211 0.0237888151369497 0.0237125200274662 0.00216557742898256 0.0021792251363835 2258559 899790 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} -47 571 426 0.0236449277419751 0.0235984079313064 0.0235904478522927 0.0236514839398795 0.00170990761591065 0.00163611917667208 2236030 892343 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} -48 624 426 0.0236151816376124 0.0236196436238246 0.023575188830396 0.0236514839398795 0.00166513651776086 0.0016546751507275 2233217 893146 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} -49 676 426 0.0235300568099836 0.0235779656021449 0.0235599298084993 0.0235599298084993 0.00161484462334028 0.00154413004669159 2225167 891570 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} -50 729 426 0.0233387744488683 0.0242819169086755 0.0233615625238422 0.0241855497062638 0.00173097031911116 0.0021697497738046 2207078 918189 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} -51 255 477 0.023344178024883 0.0234896113696374 0.0233005264362554 0.0233920805676356 0.00207695328786971 0.00223845344007022 2207589 888229 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} -52 307 477 0.02339332836014 0.0235826200005051 0.0233615625238422 0.0236362249179828 0.00172143117330438 0.0016558183384242 2212237 891746 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} -53 360 477 0.0235999226157157 0.0235964509683595 0.0236209658960861 0.0235141527428092 0.00167933890833667 0.00159918178303592 2231774 892269 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} -54 413 478 0.0236807013186047 0.0234867552615527 0.0236972610055695 0.0234531166552224 0.00194015663824579 0.00192167418383478 2239413 888121 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} -55 465 478 0.0237939226266074 0.0238243313698913 0.0237582970931563 0.0239414053559167 0.00221796507474534 0.00239097325632433 2250120 900886 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} -56 518 478 0.0237436408184863 0.0237053004209189 0.0237430380712596 0.0235904478522927 0.00211099503477714 0.00229179599034106 2245365 896385 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} -57 571 478 0.0238166155309666 0.0238133829555668 0.0237888151369497 0.0237277790493629 0.00199229362240582 0.00211664655799117 2252266 900472 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} -58 623 478 0.0234978468441503 0.023534171944847 0.0234683756771191 0.0235294117647059 0.00203282574913133 0.00205390212183874 2222121 889914 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} -59 676 478 0.0234685131457848 0.0235793936561873 0.0234378576333257 0.0235141527428092 0.00180063201222234 0.0017989721311155 2219347 891624 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} -60 729 478 0.0234453443883519 0.0234217259117365 0.023422598611429 0.0234378576333257 0.00194557902925516 0.00196941338426528 2217156 885662 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} -61 254 529 0.0235760559404414 0.0235610140717536 0.0235446707866026 0.0235141527428092 0.00179390436274185 0.00181674241765418 2229517 890929 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} -62 307 529 0.0235200215973848 0.0235190451501764 0.0235446707866026 0.0235294117647059 0.00152175385529882 0.00149982816040006 2224218 889342 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} -63 360 530 0.0236976416880285 0.0238464397621021 0.0237125200274662 0.0238803692683299 0.00146717729388964 0.0015862017226616 2241015 901722 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} -64 413 530 0.0237209690631526 0.0236381289900392 0.0237277790493629 0.0236209658960861 0.00161612131586661 0.00152549897764623 2243221 893845 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} -65 465 530 0.0236654528712208 0.0236533351210454 0.023575188830396 0.0236667429617761 0.00223635776859273 0.00233929948219423 2237971 894420 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} -66 518 530 0.0237270811315215 0.0238573088400909 0.0236209658960861 0.0238040741588464 0.00212820318645237 0.00207658868326274 2243799 902133 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} -67 571 530 0.0237731965816196 0.0237602805015484 0.0237582970931563 0.0237582970931563 0.0018540770091217 0.00176088493158689 2248160 898464 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} -68 623 530 0.0236192739740462 0.0235171939690104 0.0236209658960861 0.0235904478522927 0.00174625637854878 0.00176509500907035 2233604 889272 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} -69 676 530 0.0234998242780344 0.0233552420624327 0.0235294117647059 0.023422598611429 0.00155226172648724 0.00141710295907402 2222308 883148 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} -70 729 530 0.0233834940632835 0.0235817737462578 0.0234073395895323 0.0235446707866026 0.00175219825786098 0.00175191279090117 2211307 891714 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} -71 254 581 0.0235743428693761 0.023463959287766 0.0235294117647059 0.0234683756771191 0.00178283187798198 0.00186733577335402 2229355 887259 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} -72 307 582 0.0234794048939162 0.023758958229287 0.0234836346990158 0.0237888151369497 0.00143239320417488 0.00132734596117367 2220377 898414 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} -73 360 582 0.0238488043477744 0.0237245791504903 0.0238193331807431 0.0237430380712596 0.00170913527470266 0.00143128973354942 2255310 897114 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} -74 412 582 0.0238116243609491 0.023815260582178 0.0237888151369497 0.0237430380712596 0.00156196553579116 0.00165531900187747 2251794 900543 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} -75 465 582 0.0237120018763415 0.0239042759508162 0.0236362249179828 0.0239108873121233 0.00201994854780338 0.00194441898013292 2242373 903909 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} -76 518 582 0.0237801123129574 0.0238492429792963 0.0237430380712596 0.0239414053559167 0.00218300237019207 0.00217279729808796 2248814 901828 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} -77 571 582 0.0235965599206615 0.0236602902731405 0.0236514839398795 0.0236972610055695 0.00165569859194387 0.00162120832251107 2231456 894683 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} -78 623 582 0.0234491089148906 0.0234349486343506 0.0234531166552224 0.0233310444800488 0.00158727629301045 0.00158692315108421 2217512 886162 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} -79 676 582 0.0236119881347622 0.0234150352140937 0.0236514839398795 0.0234531166552224 0.00132491582747666 0.00139665476950237 2232915 885409 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} -80 729 582 0.0234780513562844 0.0233028800808807 0.0234531166552224 0.023224231326772 0.00170429170861521 0.00170054053035229 2220249 881168 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} -81 253 637 0.0245053441208168 0.167762005707771 0.0244449530785077 0.176943617914092 0.00196171496563345 0.0412007961513391 2317397 8234718 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} -82 307 634 0.0237015965557966 0.023780617048929 0.0236820019836728 0.0238040741588464 0.00143755212907954 0.0013547838110855 2241389 899233 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} -83 360 634 0.0236969014721361 0.0237439636618426 0.0236209658960861 0.0236514839398795 0.00145279353002156 0.00151427969769735 2240945 897847 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} -84 412 634 0.0238913350380505 0.0236392396987388 0.0238803692683299 0.0235599298084993 0.00171345247869939 0.00161025354374884 2259332 893887 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} -85 465 634 0.0238029426859823 0.0242593589438959 0.0238040741588464 0.0239871824216068 0.00193217468712201 0.00296344778510354 2250973 917336 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} -86 518 634 0.0238558258242396 0.0236552391931019 0.0238345922026398 0.0236209658960861 0.00180103498856685 0.00169040051002986 2255974 894492 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} -87 571 634 0.0235779487782234 0.0236162321613902 0.0235446707866026 0.0236057068741894 0.00154734373671977 0.00156212658703279 2229696 893017 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} -88 623 634 0.0234709875817681 0.0233746530192302 0.0233768215457389 0.0232852674143587 0.00150610821134452 0.00136824306559515 2219581 883882 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} -89 676 634 0.0234636594444331 0.0235936213057201 0.023422598611429 0.0236057068741894 0.00131589513127822 0.00142601365064536 2218888 892162 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} -90 729 634 0.0234917242012687 0.023443913640283 0.0234988937209125 0.0234378576333257 0.00155461599684349 0.00135053845785435 2221542 886501 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} -91 253 690 0.0245424183625145 0.168009755995201 0.0244907301441978 0.180361638818952 0.00230836505903315 0.0432693700623523 2320903 8246879 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} -92 307 686 0.0237926642595903 0.0236764484401749 0.0238040741588464 0.0236514839398795 0.00151195262109501 0.0014326682911375 2250001 895294 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} -93 360 686 0.0236069652412065 0.0236414346706927 0.023575188830396 0.0236514839398795 0.00165037318934321 0.00165540588750474 2232440 893970 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} -94 412 686 0.0235924464352022 0.023452032391968 0.0236057068741894 0.0233920805676356 0.00159375478520744 0.00160843272410403 2231067 886808 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} -95 465 686 0.0237256747213259 0.0236982923779334 0.0236514839398795 0.0237582970931563 0.00179565155601154 0.00176390056816032 2243666 896120 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} -96 518 686 0.0235655343002562 0.0237665480720675 0.0235446707866026 0.0236514839398795 0.00173286973234385 0.00191918602553774 2228522 898701 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} -97 570 686 0.0233859262012157 0.0235868512717416 0.0233920805676356 0.0235294117647059 0.00140979191217094 0.00139910903009074 2211537 891906 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} -98 623 686 0.0233742096410899 0.0235020142834494 0.0234073395895323 0.0235294117647059 0.00151337798077132 0.0014264964474674 2210429 888698 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} -99 676 686 0.0234745829161027 0.0234616320885859 0.0234378576333257 0.0234073395895323 0.0015379431587551 0.00151820942827445 2219921 887171 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} -100 728 690 0.0238740139861678 0.15554160799431 0.0238651102464332 0.176836804760815 0.00165599425527312 0.0446044238513565 2257694 8776534 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv deleted file mode 100644 index 18c9eee..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 257 214 0.315615367114566 0.339898983857249 0.315465018692302 0.329610131990539 0.00566751996003519 0.0263099694029962 29846800 19179016 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} -2 308 217 0.315188304842688 0.315373543897257 0.315220874341955 0.315403982604715 0.00493112386504526 0.00480873400426498 29806414 11925439 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} -3 360 217 0.315170804024089 0.31471801420094 0.314961470969711 0.315007248035401 0.00435817690742111 0.0042603982656554 29804759 11900651 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} -4 413 217 0.315052464651915 0.315232298774293 0.314854657816434 0.315068284122988 0.00480825402508554 0.0043627163779978 29793568 11920098 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} -5 466 217 0.316944731410284 0.315400386024164 0.315556572823682 0.315526054779889 0.0120562818414038 0.00581734770259926 29972514 11926454 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} -6 519 217 0.315088978444437 0.315912951643578 0.315129320210574 0.315846494239719 0.00668847159603603 0.00719274194579962 29797021 11945836 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} -7 571 217 0.315393376368428 0.31563339684207 0.315312428473335 0.315754940108339 0.00641143907279527 0.00600039401017616 29825807 11935265 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} -8 624 217 0.3154474332776 0.315207334273998 0.315419241626612 0.315129320210574 0.0057604151056902 0.00640908083530983 29830919 11919154 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} -9 677 217 0.315109080593173 0.314886471687044 0.315205615320058 0.314991989013504 0.00437477837809595 0.00407950731140685 29798922 11907021 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.315216507068189 0.337067380810158 0.315342946517128 0.332097352559701 0.00572013207605367 0.0205234730366497 29809081 19019241 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} -11 255 269 0.316655645380754 0.316165955218076 0.315999084458686 0.315907530327306 0.0065767037966101 0.00489635365650173 29945176 11955403 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} -12 308 269 0.316048615476402 0.315878546119336 0.315983825436789 0.315907530327306 0.00437973333605802 0.00413084589262653 29887771 11944535 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} -13 360 269 0.315889902614554 0.315706756507133 0.315709163042649 0.315739681086442 0.00428074077177504 0.00442691065844347 29872762 11938039 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} -14 413 269 0.315420891250601 0.315646884019136 0.315281910429541 0.315327687495232 0.00401245739664729 0.00458295012939265 29828409 11935775 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} -15 466 269 0.31635300282588 0.315984751027373 0.316243228809033 0.316090638590066 0.00539850730936009 0.00468928161165133 29916556 11948551 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} -16 518 269 0.316015697018215 0.316183594330044 0.315846494239719 0.31625848783093 0.00626376045451259 0.00609047259565177 29884658 11956070 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} -17 571 269 0.316037554536067 0.316021034178226 0.316151674677653 0.316182192721447 0.00577768959490126 0.00563885633519076 29886725 11949923 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} -18 624 269 0.316277564251929 0.316365565438659 0.316227969787137 0.31607537956817 0.00541133935136021 0.00509433742716009 29909422 11962951 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} -19 677 269 0.315548515044967 0.315299179305276 0.315541313801785 0.315098802166781 0.00411060610085592 0.00400440182106778 29840478 11922627 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} -20 729 270 0.315396442977125 0.314659358203423 0.315342946517128 0.31464103150988 0.00478452803721979 0.0045272767982621 29826097 11898433 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} -21 255 321 0.316414007189928 0.315978457011408 0.316227969787137 0.31602960250248 0.00569028751191547 0.00595489348810619 29922325 11948313 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} -22 307 321 0.315823875356949 0.317225544872036 0.315922789349203 0.316685740444038 0.00476942338370962 0.00520107821088869 29866518 11995470 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} -23 360 321 0.315655793476805 0.315350615696244 0.315602349889372 0.315068284122988 0.00466899413111061 0.00506807193648807 29850623 11924572 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} -24 413 321 0.316290972734095 0.315942517651343 0.316227969787137 0.315892271305409 0.00402256011054908 0.00383542474762324 29910690 11946954 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} -25 466 321 0.316574041865871 0.316487849177395 0.316578927290761 0.316578927290761 0.0045660559031447 0.00459822199516171 29937459 11967575 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} -26 518 321 0.316704986057241 0.316165294081946 0.316929884794385 0.316365300984207 0.00501673443702901 0.00501418639895105 29949842 11955378 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} -27 571 321 0.319740664304638 0.316799217849512 0.316639963378347 0.316914625772488 0.0332276233880102 0.00578897875976583 30236917 11979349 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} -28 624 322 0.316404944832503 0.316487558277497 0.316289005874723 0.316639963378347 0.00508073204696825 0.00496548335483716 29921468 11967564 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} -29 676 322 0.31635861789215 0.316633114008033 0.316227969787137 0.316838330663004 0.00443308103760161 0.00398818564407704 29917087 11973068 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} -30 729 322 0.315534250027269 0.31541265671075 0.315617608911269 0.315465018692302 0.00438067404439738 0.00413262544110156 29839129 11926918 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} -31 255 373 0.316356978842674 0.316256980440552 0.31635004196231 0.316105897611963 0.00617926694649581 0.00715726873575534 29916932 11958845 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} -32 307 373 0.316668609733384 0.316173492169966 0.316502632181277 0.316182192721447 0.00503755019342426 0.00487549790595213 29946402 11955688 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} -33 360 373 0.31668563469891 0.316844254442736 0.316594186312657 0.316395819028 0.00524367526182491 0.00517586700087636 29948012 11981052 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} -34 413 373 0.316444430063107 0.317333627406684 0.31635004196231 0.317265583276112 0.00440327904888414 0.0041925368561135 29925202 11999557 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} -35 466 373 0.316949299599792 0.316556342880536 0.316990920881971 0.316243228809033 0.00431923411999521 0.00397928199486366 29972946 11970165 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} -36 518 373 0.31704565455996 0.317280101825542 0.317021438925765 0.316960402838178 0.0052200279038587 0.00482638479431304 29982058 11997533 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} -37 571 374 0.316804904628205 0.316430092325016 0.316777294575418 0.316014343480583 0.00541883628179349 0.00522577350818719 29959291 11965391 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} -38 624 374 0.316685179994862 0.316436862358995 0.316609445334554 0.31621271076524 0.00476056929090057 0.00455724687978772 29947969 11965647 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} -39 676 374 0.316175615374517 0.316901852622443 0.316227969787137 0.31648737315938 0.00436408003856242 0.00446043377143429 29899781 11983230 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} -40 729 374 0.315727911653753 0.315695675865583 0.315754940108339 0.315754940108339 0.00415821768886019 0.00403578487282604 29857443 11937620 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} -41 255 425 0.316649702504589 0.316549467064776 0.316639963378347 0.316334782940414 0.00649386463978241 0.0063678299807063 29944614 11969905 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} -42 307 425 0.317168117992105 0.317315062704134 0.317112993057145 0.317357137407492 0.00528156397164732 0.00516211188376165 29993639 11998855 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} -43 360 425 0.317107494310516 0.317350050028171 0.317036697947662 0.317418173495079 0.00494486147084198 0.00496057622693932 29987906 12000178 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} -44 413 425 0.317687770697613 0.317107042831969 0.317692835889219 0.316853589684901 0.00525259420498326 0.00537853201750793 30042781 11990989 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} -45 465 425 0.317426537934663 0.316577869472952 0.317341878385595 0.316792553597314 0.00558782312991347 0.00608648004924552 30018077 11970979 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} -46 518 426 0.317980293443786 0.317681702356778 0.317479209582666 0.317082475013352 0.00763120827949718 0.00684987872077514 30070444 12012719 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} -47 571 426 0.317472357298404 0.317412249715348 0.317479209582666 0.317555504692149 0.0055409661530634 0.00594137797885663 30022410 12002530 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} -48 624 426 0.316476312219045 0.31638301943251 0.316563668268864 0.31648737315938 0.00513716509766192 0.00507963907627935 29928217 11963611 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} -49 676 426 0.316611919770537 0.316051525776574 0.316533150225071 0.315892271305409 0.0045925619685066 0.00421171884504135 29941041 11951076 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} -50 729 426 0.316400059407613 0.328334297930948 0.31644159609369 0.321400778210117 0.00439171238125743 0.0166422980623069 29921006 12415533 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} -51 255 477 0.316978083423494 0.315739707531888 0.317112993057145 0.315587090867475 0.00519916206520126 0.00513768995274378 29975668 11939285 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} -52 307 477 0.317217458668592 0.316717527869202 0.317311360341802 0.316411078049897 0.00471780831023687 0.00465172278070948 29998305 11976260 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} -53 360 477 0.317602370932652 0.317686912109488 0.317692835889219 0.317387655451286 0.00424648934502891 0.00397775779293629 30034705 12012916 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} -54 413 478 0.317543893877151 0.317665729307861 0.317647058823529 0.317509727626459 0.005022631401428 0.00488348935403598 30029175 12012115 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} -55 465 478 0.317606547865188 0.316983278148301 0.317540245670253 0.316975661860075 0.00657556678072479 0.0071238919476435 30035100 11986309 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} -56 518 478 0.316890071753885 0.316966776190478 0.316884107728695 0.316655222400244 0.00627049405681402 0.00685583026197283 29967345 11985685 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} -57 571 478 0.317342893538819 0.317496266894838 0.317479209582666 0.316990920881971 0.00547132894631529 0.00548034431904381 30010167 12005707 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} -58 623 478 0.317010092473585 0.317361183560612 0.317021438925765 0.317204547188525 0.00591183134908469 0.00553899891933931 29978695 12000599 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} -59 676 478 0.317012440015416 0.31695596000338 0.316807812619211 0.316670481422141 0.00556913503478834 0.00498478973160443 29978917 11985276 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} -60 729 478 0.316779335456378 0.316956700475846 0.316609445334554 0.316868848706798 0.00516142874429126 0.00533601840343292 29956873 11985304 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} -61 254 529 0.316535920747411 0.316625682837924 0.316472114137484 0.316578927290761 0.00482988314173835 0.00487621094429284 29933854 11972787 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} -62 307 529 0.317232929180743 0.317149699335122 0.317174029144732 0.317006179903868 0.00404466382162492 0.00420041703163798 29999768 11992602 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} -63 360 530 0.317376858873769 0.317430787972453 0.317219806210422 0.317036697947662 0.0039756649807529 0.004175466983059 30013379 12003231 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} -64 413 530 0.317276580769371 0.317044525799449 0.317189288166629 0.317143511100938 0.0046330493522911 0.00478937374986081 30003896 11988625 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} -65 465 530 0.317794118572329 0.317287189204863 0.3177843900206 0.317189288166629 0.00616006526386883 0.00584955835071381 30052838 11997801 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} -66 518 530 0.317015897881084 0.316888603454383 0.316899366750591 0.316777294575418 0.00682634683684819 0.00708358153136629 29979244 11982729 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} -67 571 530 0.317256415173559 0.316957388057422 0.317036697947662 0.316960402838178 0.00567096009715675 0.00585943801367236 30001989 11985330 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} -68 623 530 0.317435769484293 0.317187860112586 0.317341878385595 0.317174029144732 0.00568584366240165 0.00553119082613433 30018950 11994045 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} -69 676 530 0.317111100219363 0.316228181350698 0.317067215991455 0.31635004196231 0.00559104180732898 0.00531079113692329 29988247 11957756 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} -70 729 530 0.316682293152881 0.316802153293932 0.316609445334554 0.316700999465934 0.00568217111548419 0.00546007773023067 29947696 11979460 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} -71 254 581 0.316612638837404 0.317190795557007 0.316594186312657 0.317265583276112 0.00499001120605151 0.00538472360859161 29941109 11994156 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} -72 307 582 0.316479865255329 0.316670772322038 0.316395819028 0.316777294575418 0.00419234737189543 0.00385068561004227 29928553 11974492 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} -73 360 582 0.317181727390013 0.317095142381616 0.316990920881971 0.316899366750591 0.00524883849775431 0.0048622478135349 29994926 11990539 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} -74 412 582 0.317394053031499 0.318114376286158 0.317357137407492 0.318043793392844 0.0048005382277105 0.00448299681523956 30015005 12029080 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} -75 465 582 0.31739848375234 0.317540642351931 0.317341878385595 0.317357137407492 0.0061850060966676 0.00586531648723923 30015424 12007385 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} -76 518 582 0.317420573909473 0.317081284968316 0.317235065232319 0.317067215991455 0.00656262435155326 0.00697858828838253 30017513 11990015 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} -77 571 582 0.317465208927786 0.317909926549098 0.317494468604562 0.317570763714046 0.00507733964530715 0.00521251192274223 30021734 12021349 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} -78 623 582 0.317486971275023 0.317414576914528 0.317616540779736 0.317479209582666 0.00522612333078286 0.00519228175727376 30023792 12002618 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} -79 676 582 0.317426347593434 0.317100616588778 0.317265583276112 0.317097734035248 0.0048261666838567 0.00431413052891867 30018059 11990746 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} -80 729 582 0.316700809124705 0.315963330216738 0.316685740444038 0.315892271305409 0.00548107340519808 0.00555249411202587 29949447 11947741 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} -81 253 637 0.315826423814522 0.34227937802271 0.315739681086442 0.334630350194553 0.00498116936634032 0.0283408402140837 29866759 16801028 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} -82 307 634 0.316451345794445 0.316421444664427 0.316334782940414 0.316548409246967 0.00416769652219452 0.00409970344514605 29925856 11965064 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} -83 360 634 0.316548176607687 0.317136079930829 0.316472114137484 0.316929884794385 0.00495386293015722 0.00505966640041125 29935013 11992087 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} -84 412 634 0.318496551730701 0.317292266730347 0.31787594415198 0.317158770122835 0.00695716973161687 0.00526690536204102 30119265 11997993 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} -85 465 634 0.317050391941671 0.318806770933124 0.317235065232319 0.31810482948043 0.00527341256309987 0.00732374298470802 29982506 12055262 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} -86 518 634 0.317762416183107 0.317561058235647 0.31773861295491 0.317631799801633 0.00477708830057637 0.0047217621203507 30049840 12008157 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} -87 571 634 0.317467831406948 0.317455012000282 0.317479209582666 0.317463950560769 0.00450327782648278 0.00441156904127954 30021982 12004147 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} -88 623 634 0.317037649653809 0.317831489358551 0.316945143816281 0.317891203173877 0.00438074545749301 0.0039611846979233 29981301 12018383 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} -89 676 634 0.316882553275321 0.317452050110416 0.316929884794385 0.317402914473182 0.0039336383063195 0.00384450930754097 29966634 12004035 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} -90 729 634 0.316101276549892 0.316944033107582 0.315953307392996 0.316990920881971 0.00491076177323693 0.00489429781472549 29892751 11984825 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} -91 253 690 0.315452403298592 0.344871313374981 0.315617608911269 0.33496604867628 0.00609669498954932 0.0290250920219602 29831389 16928255 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} -92 307 686 0.316043211900387 0.316348084999363 0.316182192721447 0.31625848783093 0.0050264593639065 0.00500533547172193 29887260 11962290 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} -93 360 686 0.316065249184956 0.315707920106723 0.31630426489662 0.315709163042649 0.00564919565424752 0.00582214013675897 29889344 11938083 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} -94 412 686 0.316948612256463 0.317336880196447 0.316884107728695 0.317128252079042 0.00529345571854525 0.00520592321490132 29972881 11999680 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} -95 465 686 0.317112273990278 0.317794571517013 0.317143511100938 0.317692835889219 0.00536949146436709 0.00555070738416063 29988358 12016987 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} -96 518 686 0.317017462908971 0.317811734610966 0.316838330663004 0.317982757305257 0.00453884055303183 0.00463452203743732 29979392 12017636 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} -97 570 686 0.317007628612115 0.316928694749349 0.317143511100938 0.316914625772488 0.00393664701762885 0.00408844585754468 29978462 11984245 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} -98 623 686 0.317000131282576 0.31690735327505 0.317158770122835 0.316731517509728 0.00387531487298847 0.00411239597537891 29977753 11983438 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} -99 676 686 0.316714704034457 0.316353453424745 0.316700999465934 0.316411078049897 0.00424675088213373 0.00413233984855931 29950761 11962493 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} -100 728 690 0.315737841121224 0.335463535323971 0.315770199130236 0.329549095902953 0.00461805946245769 0.0192507609393791 29858382 18928743 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv deleted file mode 100644 index f77541c..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 257 214 0.033325238543824 0.035816078986085 0.033325703822385 0.0354467078660258 0.0022099668375184 0.00350926877912906 3151468 2020945 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} -2 308 217 0.0332102935902432 0.0329615235961468 0.0332188906691081 0.0329900053406577 0.00194047216561033 0.00189830267945854 3140598 1246397 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} -3 360 217 0.0330550808921145 0.0332522648209862 0.0330968184939345 0.0331883726253147 0.00163977973941061 0.00153554832463972 3125920 1257391 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} -4 413 217 0.0332013792759959 0.0332100049995114 0.0331883726253147 0.0330968184939345 0.0018657129760598 0.00160610687567033 3139755 1255793 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} -5 466 217 0.0332592324352453 0.0331122626339478 0.0331120775158312 0.0331578545815213 0.00255848504528456 0.00234335693213308 3145226 1252097 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} -6 519 217 0.0332322674277355 0.0331361428709889 0.0330968184939345 0.0331883726253147 0.00267142717835983 0.00286550026243735 3142676 1253000 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} -7 571 217 0.0332294969053953 0.0331420666507201 0.0331578545815213 0.0329900053406577 0.00253448323149962 0.00236385838370694 3142414 1253224 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} -8 624 217 0.0330734805442977 0.0331962533679927 0.032974746318761 0.0331425955596246 0.00227425796474272 0.00244703362875204 3127660 1255273 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} -9 677 217 0.0329839461448525 0.0328709743916853 0.0329900053406577 0.0328984512092775 0.00169905346492135 0.00160030029960867 3119193 1242973 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.0329881548009266 0.0352480747447503 0.0329289692530709 0.0349126420996414 0.0020792475319483 0.00312617016223774 3119591 1988895 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} -11 255 269 0.0332395955650705 0.0330106327879357 0.0331425955596246 0.0328526741435874 0.00207027590088008 0.00190985951701056 3143369 1248254 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} -12 308 269 0.0332274983224857 0.0332852951820762 0.0332494087129015 0.033325703822385 0.00157636498360637 0.00150712966183172 3142225 1258640 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} -13 360 269 0.033073004691224 0.0331034827461321 0.0330510414282445 0.0330205233844511 0.00160396470735454 0.00153837366330161 3127615 1251765 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} -14 413 269 0.0332514813174003 0.0331730871579728 0.0332188906691081 0.0332646677347982 0.00157231443848122 0.00155407428394146 3144493 1254397 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} -15 466 269 0.0331690952885734 0.0331297695186889 0.0332036316472114 0.0331883726253147 0.00187608711903211 0.00185448270378903 3136702 1252759 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} -16 518 269 0.0331988731164744 0.0332715171051123 0.0331883726253147 0.0331883726253147 0.00227785168686216 0.00245388453016121 3139518 1258119 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} -17 571 269 0.0331363142990518 0.0333816359390427 0.0330968184939345 0.0333104448004883 0.00238234113874541 0.00236326024114043 3133602 1262283 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} -18 624 269 0.0332396695866597 0.0331787200378064 0.0331883726253147 0.033173113603418 0.00203074333420244 0.00196060400897722 3143376 1254610 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} -19 677 269 0.0330641855475914 0.0331924187784346 0.0330815594720378 0.0331425955596246 0.00159286572555413 0.00161648932994629 3126781 1255128 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} -20 729 270 0.0330084578654045 0.0330969771666059 0.0330510414282445 0.0330357824063478 0.00183247708615596 0.00171408657110173 3121511 1251519 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} -21 255 321 0.0330103295541611 0.0332394916709409 0.032974746318761 0.033173113603418 0.0021017282396005 0.00238842276533598 3121688 1256908 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} -22 307 321 0.0332447453527792 0.0334035592131369 0.0332494087129015 0.0334019989318685 0.00178006870445808 0.00160159573709201 3143856 1263112 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} -23 360 321 0.0332353023128944 0.0333167123710074 0.0331883726253147 0.0333104448004883 0.00174091222224409 0.00189273471417596 3142963 1259828 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} -24 413 321 0.0332334411986506 0.0333954933523423 0.0332188906691081 0.0332951857785916 0.00164311398023745 0.00162023184902025 3142787 1262807 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} -25 466 321 0.0332808044412531 0.0333847829470249 0.0332341496910048 0.0333562218661784 0.00170075315842894 0.00169223877957402 3147266 1262402 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} -26 518 321 0.0333908745444566 0.0331993739305297 0.0333409628442817 0.033173113603418 0.00200101872287717 0.00192486948104545 3157675 1255391 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} -27 571 321 0.0336362984108464 0.0333762939591066 0.033325703822385 0.0333867399099718 0.00422289443122936 0.00208599138707373 3180884 1262081 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} -28 624 322 0.0332973218301669 0.0330543206634527 0.0332951857785916 0.032974746318761 0.00198672456984611 0.00207193261996191 3148828 1249906 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} -29 676 322 0.0331831065179658 0.0332525821663289 0.0331425955596246 0.0332188906691081 0.0016571619030131 0.00165232587940951 3138027 1257403 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} -30 729 322 0.0331521549191497 0.0330604824521909 0.0331273365377279 0.0330663004501411 0.00167891282114379 0.00164898952272536 3135100 1250139 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} -31 255 373 0.0333229967471213 0.0330848651526914 0.0332188906691081 0.0330357824063478 0.00256602056978332 0.00295270859131845 3151256 1251061 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} -32 307 373 0.0333057602913405 0.033471814907271 0.0333714808880751 0.0334019989318685 0.00197575654747031 0.00191420831520127 3149626 1265693 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} -33 360 373 0.0331741076076164 0.0333041772299692 0.0331273365377279 0.0331578545815213 0.00203312908681692 0.00195499062301626 3137176 1259354 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} -34 413 373 0.0331724051110638 0.0333523608311751 0.0331273365377279 0.033325703822385 0.00166500299175994 0.00170308668419689 3137015 1261176 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} -35 466 373 0.0332277521107917 0.03331353891758 0.0332036316472114 0.0332646677347982 0.00168442256655389 0.00158433396895787 3142249 1259708 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} -36 518 373 0.0332466170415358 0.0332569721102368 0.0331273365377279 0.0332646677347982 0.00195751678031053 0.00186523340158019 3144033 1257569 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} -37 571 374 0.0333526899789202 0.0334351615201847 0.0334019989318685 0.0333714808880751 0.00202970255947441 0.00208549049648972 3154064 1264307 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} -38 624 374 0.033303634814278 0.0330870336792001 0.0332646677347982 0.0330968184939345 0.00182958089748196 0.00172988872063746 3149425 1251143 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} -39 676 374 0.0330323033916534 0.0334423546812868 0.0330357824063478 0.0334019989318685 0.00172439893654408 0.00162483450837379 3123766 1264579 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} -40 729 374 0.0332487953911621 0.033181100127877 0.0332036316472114 0.0331883726253147 0.00161940074636761 0.00150367044558609 3144239 1254700 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} -41 255 425 0.0332777166835304 0.0331497358298363 0.0332341496910048 0.0330968184939345 0.00243433457344872 0.00251053069918278 3146974 1253514 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} -42 307 425 0.0332907656322625 0.0334182628806838 0.0332799267566949 0.0334782940413519 0.00207635499195458 0.0018633506129675 3148208 1263668 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} -43 360 425 0.0335151885163329 0.0333386620905468 0.0334630350194553 0.0333867399099718 0.00193717558179864 0.00189776597484847 3169431 1260658 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} -44 413 425 0.0333066062523604 0.0333274227763248 0.0332341496910048 0.033325703822385 0.00190690633828635 0.00205543125695423 3149706 1260233 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} -45 465 425 0.0332225494505192 0.0331743300938985 0.0332036316472114 0.0332188906691081 0.00214238227076936 0.00234763547692023 3141757 1254444 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} -46 518 426 0.033411283354062 0.0331641485974856 0.0334019989318685 0.0331273365377279 0.0020283277804739 0.00183260743543987 3159605 1254059 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} -47 571 426 0.0333666589102616 0.0333706081883825 0.0333104448004883 0.0332341496910048 0.00211737894309278 0.0021635078860002 3155385 1261866 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} -48 624 426 0.0331261627668128 0.0333143851718273 0.0330357824063478 0.0332799267566949 0.00204761795169412 0.00204553592946549 3132642 1259740 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} -49 676 426 0.0330058142372173 0.0333022202670223 0.0329594872968643 0.033325703822385 0.00169935755841305 0.00159362295322907 3121261 1259280 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} -50 729 426 0.0332357887404809 0.0343191534178292 0.0332188906691081 0.0342259861142901 0.00169182812794776 0.00206796243083782 3143009 1297734 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} -51 255 477 0.0332985907716967 0.0333271583218725 0.0332646677347982 0.0332341496910048 0.00191979490465129 0.00201910712495438 3148948 1260223 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} -52 307 477 0.0333983718739956 0.0333852325195938 0.0333714808880751 0.0334172579537652 0.00174392136564894 0.00182778845928206 3158384 1262419 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} -53 360 477 0.0335031229972864 0.0335144978558694 0.033524071107042 0.0335545891508354 0.00161430381054092 0.00146770745591738 3168290 1267307 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} -54 413 478 0.0333325138085953 0.0333124810997709 0.0333714808880751 0.0332494087129015 0.00180031205873102 0.00172662709163739 3152156 1259668 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} -55 465 478 0.0331984818595027 0.0331531208468255 0.033173113603418 0.0332341496910048 0.00243905562331313 0.00275398687666677 3139481 1253642 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} -56 518 478 0.0333433209606247 0.0330812950175856 0.0333104448004883 0.0329137102311742 0.00234978838118778 0.00245384696093284 3153178 1250926 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} -57 571 478 0.0333563487603314 0.0334923630182134 0.0333409628442817 0.0333409628442817 0.00208947557709308 0.00206601962742148 3154410 1266470 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} -58 623 478 0.0331043898450628 0.0332795829659069 0.0330052643625544 0.0332494087129015 0.00212919934768765 0.00218724180749109 3130583 1258424 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} -59 676 478 0.0332937053468067 0.0331087189442872 0.0332951857785916 0.0330968184939345 0.00199773107527507 0.00185493913718689 3148486 1251963 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} -60 729 478 0.0332715517425977 0.0330720126663104 0.0332646677347982 0.0330663004501411 0.00195179365742348 0.00205921776201836 3146391 1250575 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} -61 254 529 0.033348026618798 0.0333947528798759 0.0333562218661784 0.0332799267566949 0.00184330548126004 0.00201751365290227 3153623 1262779 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} -62 307 529 0.0334146460491162 0.0330983523297578 0.0334172579537652 0.0330205233844511 0.00149592414273392 0.00154903508518557 3159923 1251571 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} -63 360 530 0.033425939628732 0.0334070500119071 0.0334477759975586 0.0334325169756619 0.00155188201804379 0.00159278767721671 3160991 1263244 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} -64 413 530 0.0331920631302641 0.0332041076652255 0.0331578545815213 0.0331120775158312 0.00168622076406639 0.00161880964174268 3138874 1255570 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} -65 465 530 0.0332859753779873 0.0332156907702355 0.0332646677347982 0.0331883726253147 0.00233017444439928 0.00226205095186895 3147755 1256008 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} -66 518 530 0.0332816715512985 0.0332663073524023 0.0333714808880751 0.0331425955596246 0.00252795494720949 0.00256894975807041 3147348 1257922 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} -67 571 530 0.0331889647980287 0.0335500934251466 0.0331425955596246 0.0335088120851453 0.00221233831730653 0.00224146596895044 3138581 1268653 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} -68 623 530 0.0333715126116133 0.0331163881234034 0.0332951857785916 0.0330968184939345 0.0021429352468022 0.00203337792756495 3155844 1252253 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} -69 676 530 0.0333486505150501 0.0330537124182125 0.0334019989318685 0.0331273365377279 0.00197809372647176 0.00196088711596234 3153682 1249883 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} -70 729 530 0.033352615957331 0.0332176477331824 0.033325703822385 0.0332188906691081 0.00209468539841795 0.00226372200488196 3154057 1256082 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} -71 254 581 0.0333223728508691 0.033293493270097 0.0333104448004883 0.0333104448004883 0.0020204373201607 0.00205675123585904 3151197 1258950 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} -72 307 582 0.0333804797984244 0.0334360871107677 0.033325703822385 0.0334172579537652 0.00154579364043747 0.00145527320531514 3156692 1264342 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} -73 360 582 0.0331900116747908 0.0333319185020136 0.0331883726253147 0.0333562218661784 0.00171572324206449 0.00181684139115379 3138680 1260403 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} -74 412 582 0.0334461475225952 0.0333857878739436 0.0334477759975586 0.0334019989318685 0.00187565555628232 0.00185895682399482 3162902 1262440 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} -75 465 582 0.0332702405030169 0.0332223021315426 0.0334172579537652 0.0332341496910048 0.00233101069916038 0.00242928486397759 3146267 1256258 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} -76 518 582 0.0333017419764959 0.033173695403213 0.0333867399099718 0.0330968184939345 0.00247248863740157 0.00264564497524338 3149246 1254420 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} -77 571 582 0.033286112846653 0.0336104948220479 0.0332799267566949 0.0335393301289387 0.00200631646550194 0.00189776096630906 3147768 1270937 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} -78 623 582 0.0332899831183191 0.0328654208481874 0.0332646677347982 0.0328831921873808 0.00204448749855717 0.00206651175828822 3148134 1242763 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} -79 676 582 0.0332360954013506 0.0333666413715983 0.033173113603418 0.0332188906691081 0.00169557762361072 0.00182257065542133 3143038 1261716 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} -80 729 582 0.0331414323632222 0.0331434682593172 0.0330815594720378 0.0331883726253147 0.00208930188308555 0.00214664554558134 3134086 1253277 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} -81 253 637 0.0331948759506553 0.0359964604773507 0.0332188906691081 0.0355230029755093 0.00201647996859439 0.00354431585896368 3139140 1766912 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} -82 307 634 0.0331668640663834 0.032936056632392 0.0330968184939345 0.0329900053406577 0.0017036377527216 0.0016877333968821 3136491 1245434 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} -83 360 634 0.0332057676987867 0.0334460570436187 0.0331425955596246 0.0334019989318685 0.00195040885761641 0.00204999116841802 3140170 1264719 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} -84 412 634 0.033431628716591 0.032957715452034 0.0333714808880751 0.0328374151216907 0.00203997740653204 0.00193357287828557 3161529 1246253 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} -85 465 634 0.0333702330955707 0.0334229966153797 0.0334172579537652 0.0334172579537652 0.00206912484582779 0.00203378932406391 3155723 1263847 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} -86 518 634 0.0333831551501499 0.0335853187581906 0.0333714808880751 0.0335545891508354 0.00177554074151698 0.00167732670803622 3156945 1269985 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} -87 571 634 0.0333058977600062 0.0334263816323689 0.0332951857785916 0.0334172579537652 0.00167934968003896 0.00171381166936786 3149639 1263975 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} -88 623 634 0.0332219995758563 0.0332315844828177 0.0331883726253147 0.0332799267566949 0.00170229832238584 0.00157602156750412 3141705 1256609 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} -89 676 634 0.0332307764214379 0.0332457327960148 0.0332188906691081 0.0332188906691081 0.00153623438090441 0.00147627168415223 3142535 1257144 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} -90 729 634 0.0331490988849652 0.0330636823510636 0.033173113603418 0.0330510414282445 0.00191344900686627 0.00196072645845592 3134811 1250260 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} -91 253 690 0.0331922428969808 0.0363545279925127 0.0331883726253147 0.0360112916762036 0.00235797236003186 0.00408074370231066 3138891 1784488 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} -92 307 686 0.0331318624291845 0.0333359117642431 0.0331120775158312 0.0332799267566949 0.00193218796471247 0.00190351350437154 3133181 1260554 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} -93 360 686 0.0332384640922064 0.0332482715587567 0.0332188906691081 0.0331883726253147 0.00213855139718242 0.00210242290330983 3143262 1257240 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} -94 412 686 0.0333708569918229 0.0331434947047624 0.0333409628442817 0.0331120775158312 0.00205319789982661 0.00187709585953886 3155782 1253278 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} -95 465 686 0.0330825851997745 0.0333209436422439 0.0330968184939345 0.033325703822385 0.00195193209228344 0.00199246577910651 3128521 1259988 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} -96 518 686 0.0334449631771673 0.0334593591025685 0.0334172579537652 0.0334325169756619 0.00173820408930495 0.00172543297562537 3162790 1265222 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} -97 570 686 0.0333510826529824 0.0334371449285768 0.0333562218661784 0.0334172579537652 0.00152298921426231 0.00149902808785626 3153912 1264382 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} -98 623 686 0.033139211715545 0.0331820257184599 0.0331425955596246 0.0331273365377279 0.00164464713494871 0.00157757799494995 3133876 1254735 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} -99 676 686 0.033239447521892 0.0330537917545482 0.0332188906691081 0.0330510414282445 0.0016249617284582 0.00164592568197193 3143355 1249886 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} -100 728 690 0.0332290527758598 0.0352473126797776 0.0332494087129015 0.0349126420996414 0.00184342698826779 0.00283966237230699 3142372 1988852 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv deleted file mode 100644 index b73308b..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 111 226 0.234603658192492 0.925696024510845 0.234210727092393 1 0.00711305199990202 0.191020334593711 20786663 52232986 1352 861 79 True 106 226 32 {X=0,Y=0,Width=0,Height=0} -2 159 226 0.232619071158959 0.231576998756667 0.231769283588922 0.231540398260472 0.00772757768025186 0.00595664775082165 20610822 8756782 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} -3 212 226 0.23140204001385 0.231734402046666 0.231494621194781 0.231586175326162 0.00555187452723849 0.00608226347399097 20502989 8762734 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} -4 266 227 0.231708653806652 0.231764417627 0.231815060654612 0.231799801632715 0.00448778985636768 0.00403753699418027 20530156 8763869 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} -5 319 227 0.233330895501433 0.231451779573512 0.232028686961166 0.231097886625467 0.0103579857793656 0.0037551505888424 20673892 8752047 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} -6 372 227 0.234567666313181 0.232209626697417 0.232883192187381 0.232135500114443 0.0198769383147062 0.00378960909964103 20783474 8780704 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} -7 426 227 0.233492954891532 0.232250167564952 0.232928969253071 0.232272831311513 0.00854182173505274 0.00444207941868454 20688251 8782237 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} -8 479 228 0.235170691120829 0.234153790048817 0.233615625238422 0.234149691004807 0.0199762014252984 0.00608151410517176 20836904 8854220 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} -9 532 228 0.237093835761459 0.277675006370047 0.234287022201877 0.236636911573968 0.0201012124409971 0.153896481183008 21007301 10499918 1352 577 2 False 532 228 27 {X=0,Y=0,Width=0,Height=0} -10 586 230 0.236531633351888 0.935162909553433 0.236438544289311 1 0.00533257691466061 0.156956448225774 20957488 52767161 1352 861 77 True 586 228 32 {X=0,Y=0,Width=0,Height=0} -11 105 278 0.22999769083145 0.229406383057778 0.229861905851835 0.229114213778897 0.00436293161839153 0.00373493927533042 20378559 8674703 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} -12 159 279 0.230613751268011 0.230515108348973 0.230548561837186 0.230548561837186 0.00480292263900829 0.0041053009477313 20433144 8716628 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} -13 212 279 0.231552102110846 0.231342321875712 0.231372549019608 0.231357289997711 0.00512577828850389 0.00542930390442186 20516285 8747908 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} -14 265 279 0.232229774234193 0.231681246701757 0.232272831311513 0.231387808041505 0.0040992434716144 0.00465301421973547 20576329 8760724 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} -15 319 280 0.233167109313737 0.232354627073604 0.232776379034104 0.23247119859617 0.00494064691546325 0.00383680937419256 20659380 8786187 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} -16 372 280 0.244283874457539 0.233904964854664 0.233875028610666 0.233707179369802 0.0673774941517341 0.00380726867645285 21388216 8844811 1336 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} -17 425 280 0.234347674556664 0.233588280648056 0.233829251544976 0.233447775997559 0.00766659477122873 0.00345381610399966 20763982 8832836 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} -18 479 280 0.237599685880845 0.234587786250458 0.23408865491722 0.234256504158083 0.0315834288202366 0.00531840835204856 21052121 8870631 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} -19 532 281 0.234035519210793 0.23349431998116 0.233737697413596 0.233478294041352 0.0061497568534699 0.00519763248315669 20736324 8829283 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} -20 585 281 0.233870051370536 0.233551944606313 0.233844510566873 0.233188372625315 0.00461385576505137 0.00437250419157988 20721663 8831462 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} -21 105 331 0.230095204107476 0.229292165179838 0.230121309224079 0.229221026932174 0.00461134573718965 0.00427215857546546 20387199 8670384 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} -22 158 331 0.230794749000376 0.230644558803365 0.230731670099947 0.23071641107805 0.0044022227074428 0.00420102971688194 20449181 8721523 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} -23 212 332 0.231394162205209 0.231518712995384 0.231311512932021 0.231525139238575 0.00485629808804723 0.00455839108490572 20502291 8754578 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} -24 265 332 0.2325397287596 0.232293458758791 0.232486457618067 0.232257572289616 0.0045953529308459 0.00426604432720247 20603792 8783874 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} -25 318 332 0.233080983872839 0.234927636667086 0.233112077515831 0.233539330128939 0.00377989138793263 0.00917590639848853 20651749 8883482 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} -26 372 333 0.240758822581366 0.233916865305017 0.234851606012055 0.234103913939117 0.0489658750372241 0.00419743481500342 21332031 8845261 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} -27 425 333 0.235914286281823 0.236472896922663 0.235019455252918 0.23598077363241 0.00700089195747104 0.00482965741149193 20902789 8941914 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} -28 478 333 0.234634909843107 0.234418244501099 0.234622720683604 0.234424353398947 0.00475468547314052 0.00459842107387462 20789432 8864220 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} -29 532 334 0.234892292975026 0.235540774314703 0.235004196231022 0.235172045471885 0.00457877041145806 0.00613410776957499 20812237 8906667 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} -30 585 334 0.234639785506909 0.234439268630056 0.234470130464637 0.234470130464637 0.00486949889896976 0.00450497810665654 20789864 8865015 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} -31 105 384 0.230179783330918 0.230499241081836 0.230243381399252 0.230411230640116 0.00458843889942224 0.00425424357137714 20394693 8716028 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} -32 158 384 0.230820854116979 0.231085272148093 0.230685893034257 0.230655374990463 0.0046086274507593 0.00460050100330389 20451494 8738188 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} -33 211 384 0.231679760984126 0.232100274781399 0.231677729457542 0.231784542610819 0.00493352790279599 0.00641388425030869 20527596 8776569 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} -34 265 385 0.233108906077109 0.233727912598861 0.233112077515831 0.233447775997559 0.00504792297970955 0.00576153951882059 20654223 8838116 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} -35 318 385 0.233536395701651 0.233574264562085 0.233447775997559 0.233676661326009 0.00426260293437327 0.00427379913214919 20692100 8832306 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} -36 371 385 0.234716791650697 0.234740640923877 0.234683756771191 0.234439612420844 0.0043883753719003 0.00427562905171987 20796687 8876411 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} -37 425 386 0.235608767256125 0.235271506791389 0.235019455252918 0.235370412756542 0.00764049595051434 0.00404188998754213 20875719 8896485 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} -38 478 386 0.234708778406949 0.235004513576364 0.234454871442741 0.234851606012055 0.00474660421978801 0.00396392175550327 20795977 8886389 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} -39 531 386 0.234871368251212 0.234915683325843 0.234775310902571 0.234912642099641 0.00415135777992854 0.00392423907243502 20810383 8883030 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} -40 585 387 0.236045500326624 0.234639169750536 0.235126268406195 0.234668497749294 0.0101214169698474 0.00385628411371623 20914415 8872574 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} -41 104 436 0.230851846183642 0.231433717334421 0.23085374227512 0.230869001297017 0.00520710634013741 0.00929706817898906 20454240 8751364 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} -42 158 437 0.231188221840897 0.231208983940871 0.231006332494087 0.231250476844434 0.00531061691933948 0.0048152176936892 20484044 8742866 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} -43 211 437 0.239236863673515 0.232377713947288 0.232547493705653 0.2323338673991 0.0532175404571884 0.00591705769397562 21181502 8787060 1351 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} -44 264 437 0.233446026627445 0.23483084633755 0.233508812085145 0.234500648508431 0.0055567656678328 0.00667227335979933 20684093 8879822 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} -45 318 438 0.234324853741372 0.23453645564127 0.234454871442741 0.234454871442741 0.00436404311669612 0.00447626581924002 20761960 8868690 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} -46 371 438 0.238900844799044 0.236593779052801 0.23566033417258 0.236362249179828 0.0239803922734404 0.00650632502697465 21167408 8946485 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} -47 424 438 0.235671722007708 0.236245571875481 0.235538261997406 0.236392767223621 0.00512780652328128 0.00498112012732609 20881297 8933318 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} -48 478 439 0.240508775517667 0.235491480004797 0.23584344243534 0.235523002975509 0.0429725417767888 0.0052570647811675 21309876 8904803 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} -49 531 439 0.236522705921178 0.234971377433493 0.235767147325856 0.235004196231022 0.00873231800488305 0.00514713525983374 20956697 8885136 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} -50 584 439 0.235371530096163 0.236810869712679 0.235492484931716 0.235767147325856 0.00465942631482559 0.00884941017477297 20854699 8954694 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} -51 104 489 0.231013420264613 0.24011943291974 0.23080796520943 0.231754024567025 0.00517771013475958 0.0440416622026635 20468556 9079803 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} -52 157 489 0.231694941002211 0.231885617102481 0.231723506523232 0.231784542610819 0.00577300283209667 0.00531624809699837 20528941 8768452 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} -53 211 490 0.23299910206525 0.232462762499142 0.232867933165484 0.232349126420996 0.0060646431363476 0.00631910617507747 20644494 8790276 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} -54 264 490 0.233643062133563 0.23329092806191 0.233630884260319 0.233218890669108 0.00471338982812932 0.00465536515662678 20701551 8821592 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} -55 317 490 0.235298677295614 0.235016493363053 0.235202563515679 0.234882124055848 0.00409218684994006 0.00422171930243714 20848244 8886842 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} -56 371 491 0.236264927770201 0.235979134014806 0.236331731136034 0.236163881895171 0.00409422399816521 0.0041666502005607 20933857 8923243 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} -57 424 491 0.236954834198086 0.236401176875204 0.236591134508278 0.236606393530175 0.00728224680797303 0.00500565392112278 20994985 8939202 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} -58 477 491 0.235612807736776 0.236016924556037 0.235385671778439 0.236209658960861 0.00601002713054644 0.00652068598594122 20876077 8924672 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} -59 531 492 0.236060127318028 0.235694448796924 0.236255436026551 0.235568780041199 0.00523517968367537 0.00460288207296761 20915711 8912478 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} -60 584 492 0.236476940141746 0.236740101701249 0.235812924391546 0.236789501792935 0.00768422760158598 0.00544957143500243 20952642 8952018 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} -61 104 542 0.231398733140022 0.232383373272567 0.231387808041505 0.231631952391852 0.00396828622480116 0.00587158704050677 20502696 8787274 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} -62 157 542 0.23216156008601 0.231872341488976 0.232120241092546 0.231906614785992 0.00462768769104992 0.00458037444791323 20570285 8767950 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} -63 210 543 0.232620335219944 0.232616807217597 0.23260852979324 0.23256275272755 0.00550774990336422 0.00552056258619814 20610934 8796101 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} -64 264 543 0.233508699222557 0.23401799268757 0.233432516975662 0.233615625238422 0.00423555100396673 0.00519244637708819 20689646 8849085 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} -65 317 543 0.235091360007729 0.234440061993413 0.235233081559472 0.234332799267567 0.00374378366756228 0.00366062616494745 20829875 8865045 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} -66 370 543 0.236176172631003 0.236204845889829 0.23611810482948 0.236240177004654 0.00386188963766013 0.00392858899058307 20925993 8931778 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} -67 424 544 0.236202909778099 0.235751412285946 0.236209658960861 0.235858701457237 0.00435143604493693 0.00377741632565149 20928362 8914632 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} -68 477 544 0.236225064704122 0.235962023811743 0.236255436026551 0.236057068741894 0.00588225443627097 0.00603350676256227 20930325 8922596 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} -69 530 544 0.235722216729576 0.235781533648061 0.23579766536965 0.235919737544823 0.00518869868741856 0.00529152958242689 20885771 8915771 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} -70 584 545 0.235189471455471 0.234378020978907 0.235156786449989 0.234287022201877 0.00443571198397334 0.00402359322240413 20838568 8862699 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} -71 103 595 0.231761665364232 0.232215867822491 0.231525139238575 0.2323338673991 0.0042180726801645 0.00405636727564215 20534853 8780940 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} -72 157 595 0.232275032131979 0.232693287445197 0.23228809033341 0.232593270771344 0.00471235245837634 0.0046815274822868 20580339 8798993 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} -73 210 595 0.2325918035577 0.232273227993191 0.232547493705653 0.232349126420996 0.00489589348913834 0.00492364423442663 20608406 8783109 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} -74 263 596 0.233288989622511 0.233863445505656 0.233432516975662 0.233936064698253 0.00414207166977837 0.00426111713862184 20670179 8843241 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} -75 317 596 0.234540534147027 0.233987025071208 0.234531166552224 0.233981841763943 0.0035938645475403 0.00341948544569922 20781070 8847914 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} -76 370 596 0.235383911122066 0.235236969039921 0.235156786449989 0.235049973296712 0.00399457118741768 0.00394910990405012 20855796 8895179 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} -77 423 596 0.235729485080243 0.235356052879783 0.23575188830396 0.235477225909819 0.00408142698347073 0.00405489723158234 20886415 8899682 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} -78 477 597 0.235735105637125 0.24143274017522 0.235446707866026 0.236896314946212 0.00555526869476304 0.023389612048453 20886913 9129464 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} -79 530 597 0.235258791657017 0.234725170338418 0.235126268406195 0.234531166552224 0.00524489373931588 0.00518563139586669 20844710 8875826 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} -80 583 597 0.234137682425444 0.234514320803614 0.234241245136187 0.234393835355154 0.0040466560195045 0.00425004548947902 20745376 8867853 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} -81 104 652 0.236825076080671 0.97665178148062 0.236194399938964 1 0.00659388016666606 0.0917531124900757 20983488 47939651 1352 749 89 True 103 647 31 {X=0,Y=0,Width=0,Height=0} -82 156 648 0.233703691915833 0.232960042651214 0.233585107194629 0.232913710231174 0.00456495675457388 0.00393053979671099 20706923 8809080 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} -83 210 648 0.232944194416191 0.232970673720196 0.232883192187381 0.232822156099794 0.00463318944466944 0.00423417485324543 20639629 8809482 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} -84 263 648 0.233469242461795 0.233375950168319 0.233600366216526 0.233264667734798 0.00437879051476778 0.00487300987036639 20686150 8824807 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} -85 316 649 0.23402952620737 0.23354348206384 0.23413443198291 0.233585107194629 0.00349423079650586 0.00340219422390485 20735793 8831142 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} -86 370 649 0.234197161009317 0.234068953060525 0.234012359807736 0.233844510566873 0.00403471287200442 0.00408906750468499 20750646 8851012 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} -87 423 649 0.235005087845467 0.234855308374387 0.235004196231022 0.234637979705501 0.0041759268893424 0.00417268037093318 20822231 8880747 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} -88 476 650 0.23485644781708 0.234673495938442 0.234866865033951 0.234531166552224 0.00488347701117617 0.00470448286745318 20809061 8873872 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} -89 530 650 0.234387955214319 0.234240213763823 0.234287022201877 0.234485389486534 0.00386535697119219 0.00408437731721226 20767551 8857488 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} -90 583 650 0.234000938113831 0.23384530393023 0.233905546654459 0.23399710078584 0.00376177098673204 0.00337681983151724 20733260 8842555 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} -91 105 706 0.236980995745983 0.919188149145331 0.236652170595865 1 0.00642085790116291 0.194042271941174 20997303 51865775 1352 861 77 True 103 700 32 {X=0,Y=0,Width=0,Height=0} -92 156 700 0.234188876895358 0.233037845151076 0.234058136873426 0.23270008392462 0.00475350766101571 0.00444208256780096 20749912 8812022 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} -93 209 701 0.232609331117615 0.232627517622914 0.232532234683757 0.23237964446479 0.00516161164370583 0.00519459460725893 20609959 8796506 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} -94 263 701 0.233181792736435 0.232372900876257 0.232867933165484 0.232410162508583 0.00604228471646792 0.00505032474091481 20660681 8786878 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} -95 316 701 0.233293921717606 0.233398984151112 0.233249408712902 0.233249408712902 0.00393322955390282 0.00423094915394316 20670616 8825678 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} -96 369 702 0.233242433804964 0.233934451526094 0.233264667734798 0.233707179369802 0.0044366299640502 0.00473995106363388 20666054 8845926 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} -97 423 702 0.233694674195053 0.2336872395041 0.233829251544976 0.233737697413596 0.00423601958469319 0.00396142801226203 20706124 8836578 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} -98 476 702 0.233982823668458 0.233679596770429 0.234210727092393 0.233676661326009 0.00473582865143478 0.00465140117594858 20731655 8836289 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} -99 529 703 0.234087356997458 0.233717598875222 0.234027618829633 0.233920805676356 0.00455375763238936 0.00483032321489112 20740917 8837726 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} -100 583 708 0.236997913847924 0.965647520872417 0.236896314946212 1 0.00464802278394771 0.103110047201103 20998802 47399499 1352 749 84 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv deleted file mode 100644 index 4ebf23a..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 111 226 0.0237731046647011 0.146603879601887 0.0237888151369497 0.162813763637751 0.0021781315383363 0.0419460810409674 2106376 8272217 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} -2 159 226 0.0235488579886171 0.0234681905590025 0.0235294117647059 0.0233920805676356 0.0022599536744027 0.00233707604332647 2086507 887419 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} -3 212 226 0.0234316276184685 0.0235318711911121 0.0234073395895323 0.0235446707866026 0.00224010153128437 0.00213211598441326 2076120 889827 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} -4 266 227 0.0233260898124359 0.0232530039711803 0.0233005264362554 0.0232547493705653 0.00183602340877603 0.00166552037056257 2066769 879282 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} -5 319 227 0.0235351226116583 0.0232726793824301 0.0234836346990158 0.023224231326772 0.00194195283762362 0.00163777887744858 2085290 880026 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} -6 372 227 0.0236205257319929 0.0234149294323128 0.0234683756771191 0.0233310444800488 0.00252404417744753 0.00155173548235024 2092857 885405 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} -7 426 227 0.0234815354548791 0.0236244831403014 0.0234378576333257 0.0235446707866026 0.00195604240946453 0.00175459725503593 2080542 893329 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} -8 479 228 0.0237574393374876 0.0236747294862351 0.023575188830396 0.0236209658960861 0.00311561315459301 0.00243344569186406 2104988 895229 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} -9 532 228 0.0239144199111275 0.0391429613001321 0.0237125200274662 0.0242923628595407 0.00298359448390759 0.0877945153056139 2118897 1480140 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} -10 586 230 0.0238430794692569 0.144316922618593 0.0238345922026398 0.159349965667201 0.0019033593760157 0.0377339815046066 2112576 8143174 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} -11 105 278 0.0232354272955009 0.0233211538835335 0.023224231326772 0.0232394903486687 0.00168301764617769 0.00151879662416111 2058736 881859 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} -12 159 279 0.0232629431944537 0.0232786560530517 0.0232394903486687 0.023270008392462 0.00181408773424757 0.0016989905663141 2061174 880252 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} -13 212 279 0.0236060680344709 0.0233407499584476 0.023575188830396 0.0233615625238422 0.00198441635199288 0.00199681254255945 2091576 882600 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} -14 265 279 0.023294307707657 0.0233519363817791 0.0232852674143587 0.0233157854581521 0.00170787804751676 0.00183688508184064 2063953 883023 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} -15 319 280 0.0235184979524469 0.023270114174243 0.0234836346990158 0.0233310444800488 0.00143119039536348 0.00134035662619859 2083817 879929 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} -16 372 280 0.0297138188501289 0.0234525877463178 0.0236057068741894 0.023422598611429 0.045416696703243 0.00148525215503351 2632743 886829 1352 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} -17 425 280 0.0237019673754889 0.02372280730566 0.0236209658960861 0.0236820019836728 0.0016853428541429 0.00150129123185638 2100073 897047 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} -18 479 280 0.0238722205894768 0.0238093896933373 0.0235446707866026 0.0238193331807431 0.00383621683621133 0.00200483300648432 2115158 900321 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} -19 532 281 0.023632839040343 0.0235740252308059 0.0236209658960861 0.0235446707866026 0.00217745124719818 0.00211685524699919 2093948 891421 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} -20 585 281 0.0235579095681742 0.023645983287272 0.0235141527428092 0.0236972610055695 0.00176842910774789 0.00162831403170523 2087309 894142 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} -21 105 331 0.0232952557533961 0.0231650199749059 0.0233768215457389 0.0231174181734951 0.00170504062082736 0.0017220798695901 2064037 875955 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} -22 158 331 0.023345378028724 0.0230902058103552 0.0233157854581521 0.0229953459983215 0.00177346943828489 0.00169795068393236 2068478 873126 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} -23 212 332 0.0234225873251702 0.0233844113885194 0.0234378576333257 0.0233005264362554 0.00188393280546659 0.0019961543021145 2075319 884251 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} -24 265 332 0.0235013879841071 0.023465466678144 0.0234988937209125 0.0234531166552224 0.00184024778072908 0.00172245595794763 2082301 887316 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} -25 318 332 0.0235642073005842 0.0236698370788679 0.0235294117647059 0.0236057068741894 0.00145100630233765 0.00166972535940727 2087867 895044 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} -26 372 333 0.0245839320693626 0.0235515994932524 0.0238040741588464 0.0235599298084993 0.0096232523164387 0.00171062180629751 2178218 890573 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} -27 425 333 0.0237180841530543 0.0236363042543184 0.0236362249179828 0.0235446707866026 0.00170575778271467 0.00157767555237188 2101501 893776 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} -28 478 333 0.0236565401838216 0.0237701446526186 0.0236057068741894 0.0237430380712596 0.00186379185557399 0.00182812541947253 2096048 898837 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} -29 532 334 0.0237872576332354 0.0237912216724655 0.0237888151369497 0.0237430380712596 0.00179610356369131 0.00191998478661373 2107630 899634 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} -30 585 334 0.0235415106341388 0.0238335872757211 0.0234836346990158 0.0237582970931563 0.00180055836735844 0.00185101641107752 2085856 901236 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} -31 105 384 0.0233294869763345 0.023449943201795 0.0233157854581521 0.023422598611429 0.00185668539591179 0.00171157999123157 2067070 886729 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} -32 158 384 0.0234371578852801 0.023379148744919 0.0234378576333257 0.0234073395895323 0.00179970639200738 0.00175835512800027 2076610 884052 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} -33 211 384 0.0233613819437014 0.0234116501971045 0.0234073395895323 0.0233920805676356 0.00203249796008536 0.00202798314663732 2069896 885281 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} -34 265 385 0.0233744514313911 0.0235546142740084 0.0233920805676356 0.0234988937209125 0.0019633427098811 0.0019979218394813 2071054 890687 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} -35 318 385 0.0234720211387113 0.0236141958621076 0.0233768215457389 0.0235904478522927 0.00154219784849746 0.00160638072299028 2079699 892940 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} -36 371 385 0.0234871447255024 0.0238577055217693 0.0234531166552224 0.0237888151369497 0.00164995931379947 0.00169996960127637 2081039 902148 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} -37 425 386 0.0237799328512746 0.0237990759696983 0.023773556115053 0.0238040741588464 0.001687526085329 0.00159152186137873 2106981 899931 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} -38 478 386 0.0235930436918165 0.0238453554988477 0.0235904478522927 0.0238651102464332 0.00179671112265453 0.00167855226002448 2090422 901681 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} -39 531 386 0.0236836497774576 0.0235757970756362 0.0236972610055695 0.0236362249179828 0.00161001038768221 0.00147410719531471 2098450 891488 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} -40 585 387 0.0238582707736008 0.0235697675141242 0.0238040741588464 0.0236667429617761 0.00181303510429105 0.00140239320046616 2113922 891260 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} -41 104 436 0.0232127983466082 0.0234592784439606 0.0232089723048753 0.0233768215457389 0.00200339993799152 0.00234120168901565 2056731 887082 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} -42 158 437 0.0233403669298171 0.0231896935753039 0.0233310444800488 0.0232852674143587 0.00212349162546219 0.00186543261318447 2068034 876888 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} -43 211 437 0.024213325189169 0.0235506210117789 0.0235446707866026 0.0234836346990158 0.00638282495455486 0.00244872194959203 2145381 890536 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} -44 264 437 0.0234886683704403 0.0234893204697399 0.0234378576333257 0.0234683756771191 0.00220805726331328 0.00244696641144554 2081174 888218 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} -45 318 438 0.0236283245368232 0.0238938828908415 0.0235294117647059 0.02392614633402 0.00172971889654014 0.00168245532261397 2093548 903516 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} -46 371 438 0.0241884389885165 0.0239137698656532 0.0238651102464332 0.023773556115053 0.00291967910675234 0.00210804149629086 2143176 904268 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} -47 424 438 0.0236810652241925 0.0237731065424841 0.0236820019836728 0.0236820019836728 0.00192069489585002 0.00199893868160309 2098221 898949 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} -48 478 439 0.0243043375801268 0.0239002033522511 0.0237125200274662 0.0238498512245365 0.00489905641070918 0.00202937933648961 2153445 903755 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} -49 531 439 0.0238829199628185 0.0236979750325907 0.0237888151369497 0.0236209658960861 0.00205044333405239 0.00182952562214841 2116106 896108 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} -50 584 439 0.0237771677178688 0.0237616292192551 0.023773556115053 0.0236209658960861 0.00185595973879595 0.00198388526182371 2106736 898515 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} -51 104 489 0.0231713890630735 0.0242683239498282 0.0231479362172885 0.0233920805676356 0.00213991749987204 0.00489734691454785 2053062 917675 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} -52 157 489 0.0234503063767814 0.0234667360595149 0.0234378576333257 0.0234531166552224 0.00225903294177576 0.00222234799010563 2077775 887364 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} -53 211 490 0.0233824308163622 0.0234905634056656 0.0234531166552224 0.0234378576333257 0.00240337686092299 0.00239504329134513 2071761 888265 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} -54 264 490 0.0235564874995655 0.0235044472644104 0.0236362249179828 0.0234988937209125 0.00194625244221542 0.00188111200912158 2087183 888790 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} -55 317 490 0.0236978817498035 0.0237934430898647 0.0236820019836728 0.0238651102464332 0.00165160197481682 0.00161897471502662 2099711 899718 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} -56 371 491 0.0237811179084486 0.0237312169572426 0.023773556115053 0.0237125200274662 0.00166008194771032 0.00162619224821261 2107086 897365 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} -57 424 491 0.0238788004783568 0.0238454612806286 0.0238193331807431 0.0238193331807431 0.00208564520981906 0.00198744183517586 2115741 901685 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} -58 477 491 0.0238220870278902 0.0237909572180132 0.0238345922026398 0.0237582970931563 0.00243168721203872 0.00261629546010779 2110716 899624 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} -59 531 492 0.0239737179148592 0.0238473389072398 0.0239871824216068 0.0238498512245365 0.00205876182508762 0.00203685290178588 2124151 901756 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} -60 584 492 0.0238988335877256 0.0237472428970509 0.0238651102464332 0.0237277790493629 0.00214399581086334 0.00192210055375383 2117516 897971 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} -61 104 542 0.023303810737566 0.0234184995674186 0.0233005264362554 0.0234378576333257 0.0017289662695426 0.00158832394281712 2064795 885540 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} -62 157 542 0.0234492341821954 0.0234013100280203 0.0234378576333257 0.023422598611429 0.00192647484551099 0.00180509382240461 2077680 884890 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} -63 210 543 0.0235581352933502 0.0233815552804348 0.0234683756771191 0.0233768215457389 0.00212160344202096 0.0022141046447522 2087329 884143 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} -64 264 543 0.0236094087670755 0.0236044903837089 0.0235904478522927 0.0235904478522927 0.00170817599395569 0.00169662432070608 2091872 892573 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} -65 317 543 0.0236601179278609 0.0236475700139857 0.0236209658960861 0.0236362249179828 0.00144491736842891 0.00154487233341507 2096365 894202 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} -66 370 543 0.0237927201824943 0.0236570639288226 0.0238040741588464 0.0236057068741894 0.00144881251489917 0.0013121614616865 2108114 894561 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} -67 424 544 0.0239570481106126 0.0239391046021818 0.0239108873121233 0.0239719233997101 0.00173256266638091 0.001480291268681 2122674 905226 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} -68 477 544 0.0239647453391137 0.0237765444503638 0.0239108873121233 0.0238803692683299 0.00235115956899679 0.0023509128686988 2123356 899079 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} -69 530 544 0.0236464051234198 0.023758958229287 0.0235599298084993 0.0238040741588464 0.0020108036275654 0.00212724937902632 2095150 898414 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} -70 584 545 0.0236400058146805 0.0233886955506464 0.0236514839398795 0.0232852674143587 0.00169119718290226 0.00165412365294652 2094583 884413 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} -71 103 595 0.0234016174563211 0.0235025960832444 0.0234683756771191 0.0234836346990158 0.00161096748819411 0.00172711750023126 2073461 888720 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} -72 157 595 0.0234494373348538 0.0234582735170419 0.0234836346990158 0.0235294117647059 0.00186821872409511 0.00186283919586385 2077698 887044 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} -73 210 595 0.0235778185286962 0.0234782662736345 0.0235141527428092 0.0234836346990158 0.00198166317164578 0.0020340383369032 2089073 887800 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} -74 263 596 0.0235827280512739 0.0232899482581641 0.023575188830396 0.0232394903486687 0.00170633401481 0.00175917080364374 2089508 880679 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} -75 317 596 0.0235971293175019 0.0236673512070164 0.0235294117647059 0.0236514839398795 0.00136971024053782 0.0013403756097224 2090784 894950 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} -76 370 596 0.0236988297955427 0.0235667527333682 0.0236972610055695 0.023575188830396 0.00145792640882339 0.00161156455214942 2099795 891146 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} -77 423 596 0.023865572983044 0.0239375972118038 0.023773556115053 0.02392614633402 0.00168975135913515 0.00165450960043723 2114569 905169 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} -78 477 597 0.0239217221205707 0.0243324277090615 0.0238956282902266 0.0238651102464332 0.00217434600422803 0.00317698397134649 2119544 920099 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} -79 530 597 0.0236389336200946 0.02375234686798 0.0236362249179828 0.0237430380712596 0.00202328569540359 0.00192880620214661 2094488 898164 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} -80 583 597 0.0235453366758717 0.0234291041909552 0.0235294117647059 0.0233920805676356 0.00160557523176593 0.00160442675120671 2086195 885941 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} -81 104 652 0.0239315298794673 0.160515864951748 0.0238956282902266 0.168398565651942 0.00171444534999066 0.0257168382253702 2120413 7879036 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} -82 156 648 0.0235961474129863 0.0235164799419893 0.0236057068741894 0.0234836346990158 0.00178155315151404 0.0016504271395131 2090697 889245 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} -83 210 648 0.0234727547455332 0.0234030554274053 0.0234531166552224 0.0233157854581521 0.00190745487263181 0.00180314301932573 2079764 884956 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} -84 263 648 0.0234443698046529 0.0234193458216659 0.0233920805676356 0.0234073395895323 0.00172393338825985 0.00181267139265915 2077249 885572 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} -85 316 649 0.0235490385687579 0.0233836444706078 0.0235446707866026 0.0233768215457389 0.00129497192005936 0.00131211699138053 2086523 884222 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} -86 370 649 0.0235282379937908 0.0233914194315049 0.0234988937209125 0.0234683756771191 0.00163473222796657 0.00159590944612649 2084680 884516 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} -87 423 649 0.0236506939017635 0.0236687792610587 0.0236362249179828 0.0235599298084993 0.00166826701937634 0.00164744545975926 2095530 895004 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} -88 476 650 0.0237575070550404 0.0236908612078243 0.023773556115053 0.0236362249179828 0.00173260964386086 0.00208889958834703 2104994 895839 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} -89 530 650 0.0236932543836958 0.0236135611714222 0.0236667429617761 0.0236362249179828 0.00160609426185989 0.00158885925661299 2099301 892916 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} -90 583 650 0.0236771714649067 0.0235908709794163 0.0236362249179828 0.0235141527428092 0.00143687973974667 0.0014595961215575 2097876 892058 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} -91 105 706 0.0238201232188591 0.147461238141139 0.0238193331807431 0.163805600061036 0.00204700693908138 0.0442677111069257 2110542 8320594 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} -92 156 700 0.0236505697529167 0.0236439998788799 0.0236209658960861 0.0236972610055695 0.00185126746055751 0.00165679701869091 2095519 894067 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} -93 209 701 0.023378728923476 0.023355162726097 0.0233768215457389 0.0233310444800488 0.00198469693500925 0.00212278745795122 2071433 883145 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} -94 263 701 0.023496839621811 0.0233298808804588 0.0235599298084993 0.0233768215457389 0.00190128740639338 0.00190349070120469 2081898 882189 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} -95 316 701 0.023531432005031 0.0233922127948618 0.0235141527428092 0.0233310444800488 0.00157574042011351 0.00160146093365819 2084963 884546 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} -96 369 702 0.0234814564510675 0.0232814063793554 0.0234836346990158 0.0233157854581521 0.0017369109586145 0.00166172531961156 2080535 880356 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} -97 423 702 0.023459098372386 0.0237238651234692 0.0233920805676356 0.0237582970931563 0.00174861821509544 0.00159054500390188 2078554 897087 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} -98 476 702 0.0235955943863052 0.0235637379526121 0.0234988937209125 0.0234988937209125 0.00182687923012039 0.00192258198490021 2090648 891032 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} -99 529 703 0.0236117563089058 0.0235104503804772 0.0235904478522927 0.0233920805676356 0.00170011537242423 0.00190340498802631 2092080 889017 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} -100 583 708 0.0237280386333153 0.154978408687741 0.0237125200274662 0.163088426031891 0.00159199474615397 0.0293384519398071 2102383 7607226 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv deleted file mode 100644 index 3a1c17a..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 111 226 0.324596155087642 0.356294563632292 0.324498359655146 0.357579919127184 0.00522462187535851 0.0155582903010333 28760297 20104147 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} -2 159 226 0.325726541623948 0.326070594264856 0.325520714122225 0.326054779888609 0.00622574441643244 0.00677881101775703 28860453 12329934 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} -3 212 226 0.326056890419005 0.326180051962655 0.325917448691539 0.325947966735332 0.00624926880539861 0.00661109661300324 28889723 12334073 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} -4 266 227 0.325702050442354 0.325266070930122 0.325505455100328 0.32503242542153 0.00539727788375643 0.00517029373326504 28858283 12299512 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} -5 319 227 0.326317151546917 0.32451152948687 0.325383382925155 0.324208438239109 0.00939030411790782 0.00506681127631979 28912783 12270980 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} -6 372 227 0.328074143711637 0.325014812755008 0.325291828793774 0.325047684443427 0.0306959358729292 0.00427662855470123 29046958 12290011 1351 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} -7 426 227 0.325339129504402 0.324812901780691 0.325337605859464 0.324773022049287 0.00524683351145825 0.00454580493460289 28826127 12282376 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} -8 479 228 0.329018836395928 0.325470811567079 0.325673304341192 0.325169756618601 0.0372478500725285 0.00604706291598265 29044350 12307254 1347 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} -9 532 228 0.330777458451895 0.34222738613616 0.325612268253605 0.326314183260853 0.033785942791788 0.0869661877069603 29307981 12940882 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} -10 586 230 0.32449747932696 0.348630901539699 0.324391546501869 0.349919890135042 0.00639460957115679 0.0108357214038199 28751554 19671720 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} -11 105 278 0.324334392887309 0.324222427879635 0.324330510414282 0.324330510414282 0.00461234951009118 0.00432418190546928 28737104 12260048 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} -12 159 279 0.324884360992342 0.325066619382211 0.324834058136873 0.325154497596704 0.00485077780230647 0.00476189649351018 28785833 12291970 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} -13 212 279 0.325673530066368 0.32573682630063 0.325810635538262 0.325535973144121 0.00518922936297778 0.00476440745827251 28855756 12317313 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} -14 265 279 0.325875565385135 0.325609861718089 0.325764858472572 0.325215533684291 0.00503406612551986 0.00545511143877601 28873657 12312512 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} -15 319 280 0.325899514826307 0.32589898977077 0.325795376516365 0.325917448691539 0.00479763515165576 0.00441198821671316 28875779 12323445 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} -16 372 280 0.333895532214904 0.32605433031604 0.325841153582055 0.326115815976196 0.0570935341024135 0.00432194092689452 29540489 12329319 1350 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} -17 425 280 0.326294962762118 0.325774193714737 0.326070038910506 0.325459678034638 0.00461919942482582 0.00399928099388016 28910817 12318726 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} -18 479 280 0.332911136762478 0.327605329233231 0.326405737392233 0.325825894560159 0.0522407334138855 0.0150764249295578 29300676 12387968 1343 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} -19 532 281 0.326105714774571 0.325267498984164 0.325963225757229 0.324971389333944 0.00742110066462695 0.00515697864480355 28894049 12299566 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} -20 585 281 0.325290880748035 0.324925718050035 0.325169756618601 0.324589913786526 0.00588063490678198 0.00633715368433552 28821852 12286642 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} -21 105 331 0.324557691517654 0.323892547395857 0.324177920195315 0.323903257801175 0.00530845549726156 0.00504788131936822 28756889 12247574 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} -22 158 331 0.325053903172026 0.324890862953224 0.325062943465324 0.32466620889601 0.00531740964977363 0.00471164625019879 28800855 12285324 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} -23 212 332 0.326021722436586 0.326021961091081 0.325917448691539 0.326131074998093 0.00585027576680288 0.00610811319817944 28886607 12328095 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} -24 265 332 0.326252616719103 0.326233207307564 0.326207370107576 0.32637521934844 0.00568708369116079 0.00611990202345366 28907065 12336083 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} -25 318 332 0.326033494004514 0.327963479897958 0.326024261844816 0.326863508049134 0.00485346720986639 0.00873348649363241 28887650 12401511 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} -26 372 333 0.328936015038714 0.326464552062421 0.327306019684138 0.326131074998093 0.0163030528966646 0.00471351347344134 29144823 12344831 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} -27 425 333 0.327407697589661 0.326800329880484 0.327260242618448 0.3265583276112 0.0052668373252441 0.00440322252009471 29009409 12357528 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} -28 478 333 0.325929434698384 0.326800488553155 0.325902189669642 0.326787212939651 0.00468317535794154 0.00438916147164781 28878430 12357534 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} -29 532 334 0.326061720937771 0.3264117405083 0.326192111085679 0.326085297932403 0.00542753684839523 0.00550532831080502 28890151 12342834 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} -30 585 334 0.326007253452805 0.325489640724082 0.325764858472572 0.325246051728084 0.00585846053938064 0.00524615889164516 28885325 12307966 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} -31 105 384 0.324317215201417 0.324417965501652 0.324254215304799 0.324437323567559 0.00531362832157146 0.0051954404602163 28735582 12267442 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} -32 158 384 0.324928388687918 0.324890519162436 0.32475776302739 0.324635690852216 0.00543464238197388 0.00510728790999335 28789734 12285311 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} -33 211 384 0.325607042715781 0.325538829252206 0.325612268253605 0.325337605859464 0.00657937658478531 0.00675592478380968 28849865 12309826 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} -34 265 385 0.32724809860398 0.327325827322614 0.327229724574655 0.327183947508965 0.00672592042758534 0.00729607886337667 28995268 12377399 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} -35 318 385 0.326956461676605 0.326903493562319 0.326970321202411 0.326573586633097 0.00545431144246986 0.00532008412611551 28969428 12361429 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} -36 371 385 0.32706677357011 0.327569495654947 0.326848249027237 0.327321278706035 0.00503787485997377 0.00541637734566277 28979202 12386613 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} -37 425 386 0.327609778053463 0.327435946156545 0.327504386968795 0.327489127946899 0.00467528913442385 0.00438258373683899 29027314 12381563 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} -38 478 386 0.326458895671178 0.326174313301041 0.326405737392233 0.326070038910506 0.00483429762838105 0.00418317797297362 28925342 12333856 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} -39 531 386 0.325966273047105 0.325650270358398 0.325902189669642 0.325474937056535 0.00524133523450635 0.00509361117631686 28881694 12314040 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} -40 585 387 0.326196952890704 0.325249595417745 0.32623788815137 0.325291828793774 0.00554035527503905 0.00528507816952366 28902133 12298889 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} -41 104 436 0.324523731164927 0.324563812132086 0.324376287479973 0.324299992370489 0.00588238699309941 0.00654439627083121 28753880 12272957 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} -42 158 437 0.324895997125164 0.325094545772372 0.324879835202564 0.32494087129015 0.00609416234507679 0.00633967588209702 28786864 12293026 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} -43 211 437 0.32735300437952 0.32546859014968 0.326298924238956 0.325505455100328 0.0113782412790386 0.00694329025804045 29004563 12307170 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} -44 264 437 0.326903224393849 0.327751017190994 0.326939803158618 0.327931639581903 0.00642891712739119 0.00586100591600879 28964711 12393477 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} -45 318 438 0.327377247263421 0.328284236703131 0.327275501640345 0.328206301976043 0.00493647635630653 0.00464071596040644 29006711 12413640 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} -46 371 438 0.338482001640773 0.328176815304614 0.328496223392081 0.327901121538109 0.065202228554459 0.00614126871607174 29613528 12409578 1335 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} -47 424 438 0.327017226893981 0.326681827840416 0.327092393377585 0.32664988174258 0.00552710263660503 0.00557645407771177 28974812 12353047 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} -48 478 439 0.327982721189229 0.326950830909278 0.32646677347982 0.326878767071031 0.0140736502806988 0.00576306507457292 29060358 12363219 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} -49 531 439 0.326528712468111 0.325932284586312 0.326253147173266 0.326146334019989 0.006342854872024 0.00565922569418375 28931528 12324704 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} -50 584 439 0.326482856398609 0.326607225239427 0.326543068589303 0.326115815976196 0.00543745241708182 0.00628068346921288 28927465 12350226 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} -51 104 489 0.324262894437816 0.325913138083967 0.324299992370489 0.324879835202564 0.00551242377609957 0.00838014690697397 28730769 12323980 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} -52 157 489 0.324724603999037 0.325256947251518 0.32466620889601 0.325230792706188 0.00614090137939858 0.00563861787439486 28771678 12299167 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} -53 211 490 0.325821447774192 0.325896583235254 0.325734340428779 0.325703822384985 0.00619067148786142 0.00640204369861267 28868862 12323354 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} -54 264 490 0.326677296065204 0.327217480333514 0.326680399786374 0.327092393377585 0.00492518998366576 0.00496903414101114 28944693 12373302 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} -55 317 490 0.327830932294636 0.32788327086258 0.32799267566949 0.328099488822766 0.00445492799042279 0.0047519572575052 29046909 12398478 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} -56 371 491 0.327500572213321 0.328060587572836 0.327458609903105 0.327977416647593 0.00429577026658586 0.00387537397413313 29017638 12405183 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} -57 424 491 0.327511621460686 0.326283321426272 0.327077134355688 0.326344701304646 0.00677648038962159 0.0050064799151944 29018617 12337978 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} -58 477 491 0.326421041559165 0.326409704209017 0.32646677347982 0.325856412603952 0.00682637025232061 0.00695267630640934 28921988 12342757 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} -59 531 492 0.326292750655393 0.32648700424542 0.326436255436027 0.32660410467689 0.00600559945636522 0.00581857234421666 28910621 12345680 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} -60 584 492 0.327544419328757 0.326470978305611 0.32660410467689 0.32651255054551 0.00965699342228514 0.00565140909478751 29021523 12345074 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} -61 104 542 0.323887976206761 0.324664648614741 0.323750667582208 0.324437323567559 0.00452881388087644 0.00496576250241882 28697550 12276770 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} -62 157 542 0.324445675399071 0.325933977094807 0.324330510414282 0.325673304341192 0.00495387231815234 0.00475422595008196 28746964 12324768 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} -63 210 543 0.325830318773608 0.325474593265747 0.325963225757229 0.325688563363088 0.0055876100501452 0.00538736944274659 28869648 12307397 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} -64 264 543 0.326180531384151 0.32606591342105 0.326085297932403 0.325749599450675 0.00471093416296507 0.00527183880859625 28900678 12329757 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} -65 317 543 0.326626135454066 0.326910078478181 0.326756694895857 0.326848249027237 0.0040127616622908 0.00436392576839805 28940160 12361678 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} -66 370 543 0.3267641889717 0.326965085004256 0.326802471961547 0.327061875333791 0.00423207791129183 0.00451056192243569 28952392 12363758 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} -67 424 544 0.326648200090019 0.327006525016928 0.326497291523613 0.326985580224308 0.00479064311651287 0.00467805205475074 28942115 12365325 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} -68 477 544 0.3267639971053 0.325850303706104 0.32674143587396 0.325978484779126 0.0066535041176591 0.00650695469553352 28952375 12321604 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} -69 530 544 0.326078402028276 0.326625604823861 0.326161593041886 0.32637521934844 0.0066227034379094 0.007012803385622 28891629 12350921 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} -70 584 545 0.326571148801196 0.32644820877727 0.326680399786374 0.326344701304646 0.00570487263215026 0.00528491656742851 28935288 12344213 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} -71 103 595 0.324039573234953 0.323613918184933 0.323994811932555 0.323308155947204 0.00520702651470731 0.00527860803605277 28710982 12237038 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} -72 157 595 0.324693047619435 0.324720818740406 0.324788281071183 0.324559395742733 0.00547121293684502 0.00521462964762469 28768882 12278894 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} -73 210 595 0.324880015782704 0.325249436745073 0.32480354009308 0.325200274662394 0.00533792539703295 0.00573328600882469 28785448 12298883 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} -74 263 596 0.324932158298357 0.325060431148027 0.325047684443427 0.325398641947051 0.00499214483429527 0.0051483199510907 28790068 12291736 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} -75 317 596 0.32574720676381 0.325797783051881 0.325749599450675 0.325825894560159 0.00427830833579256 0.0037377613650168 28862284 12319618 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} -76 370 596 0.326501444866851 0.327031780417121 0.326482032501717 0.327046616311894 0.00517568495056126 0.00515751386220736 28929112 12366280 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} -77 423 596 0.32676870347522 0.326968787366588 0.326878767071031 0.326771953917754 0.00524747843120933 0.00505672826616215 28952792 12363898 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} -78 477 597 0.326649847883804 0.327858703043963 0.326482032501717 0.326726176852064 0.00624654043559863 0.00853046277212499 28942261 12397549 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} -79 530 597 0.326512020091347 0.325965817410861 0.326497291523613 0.326024261844816 0.00569530502231601 0.00572320687865789 28930049 12325972 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} -80 583 597 0.326049328625609 0.325650243912953 0.325947966735332 0.325581750209812 0.00519482285931838 0.00542165821170725 28889053 12314039 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} -81 104 652 0.322649478597416 0.354783728830272 0.322774090180819 0.353414206149386 0.0054909208774711 0.0134962443135617 28587815 17414813 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} -82 156 648 0.323579511467516 0.324464800385151 0.323308155947204 0.324788281071183 0.005310125536568 0.0051593352579425 28670219 12269213 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} -83 210 648 0.324798133975115 0.324545035865974 0.324864576180667 0.324650949874113 0.00597368263027534 0.00606603059410237 28778193 12272247 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} -84 263 648 0.324462424207129 0.324734279472027 0.3247119859617 0.32452887769894 0.00507977617975832 0.00514602788790076 28748448 12279403 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} -85 316 649 0.325585971270603 0.325698348177823 0.325612268253605 0.325719081406882 0.00460955153895036 0.00504426926179535 28847998 12315858 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} -86 370 649 0.325779338742611 0.325510003716907 0.325734340428779 0.325627527275502 0.00546933123539571 0.00513737638731167 28865131 12308736 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} -87 423 649 0.32629719744136 0.326108887269546 0.326070038910506 0.326390478370336 0.00529077490122226 0.00576981735805537 28911015 12331382 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} -88 476 650 0.326012388700559 0.326292392213985 0.326100556954299 0.326222629129473 0.00526513737967768 0.00509770564448474 28885780 12338321 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} -89 530 650 0.326237052968218 0.325605286656065 0.32637521934844 0.325673304341192 0.00457184626437649 0.00416652390267888 28905686 12312339 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} -90 583 650 0.32534356500411 0.325266176711903 0.325383382925155 0.325169756618601 0.0043320823493513 0.00402689121016391 28826520 12299516 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} -91 105 706 0.321657360017661 0.350621113967083 0.321538109407187 0.351338979171435 0.00629785055974605 0.0157633552051079 28499910 19784019 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} -92 156 700 0.323028832328179 0.323134911835514 0.323018234531167 0.322972457465476 0.00555504826479874 0.00533538311721709 28621427 12218925 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} -93 209 701 0.323596813302255 0.323604635833658 0.323674372472725 0.323735408560311 0.00658354060135658 0.0066064771834014 28671752 12236687 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} -94 263 701 0.324342733432562 0.323983334609326 0.324101625085832 0.323842221713588 0.0069232997832579 0.00680235555075611 28737843 12251007 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} -95 316 701 0.32476377860333 0.324830488001768 0.324971389333944 0.32484931715877 0.0053673952901145 0.005785589786098 28775149 12283041 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} -96 369 702 0.325269278848693 0.324120692251842 0.325261310749981 0.32452887769894 0.00606733856830207 0.00625758695356238 28819938 12256201 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} -97 423 702 0.326007908055816 0.324915192762834 0.325856412603952 0.324605172808423 0.00589982961048892 0.00577084990316963 28885383 12286244 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} -98 476 702 0.326074779139202 0.326312993215818 0.326054779888609 0.326253147173266 0.00559572631962013 0.00532168083053398 28891308 12339100 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} -99 529 703 0.32593689491545 0.325245496373734 0.326009002822919 0.325246051728084 0.00447855167471826 0.00455471473322293 28879091 12298734 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} -100 583 708 0.325107084023488 0.355828819036251 0.325139238574807 0.354543373769741 0.00406602452354276 0.0135278325416574 28805567 17466112 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv deleted file mode 100644 index 4a5ad6f..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 111 226 0.0337409365698712 0.0370950366796935 0.0337376974135958 0.037247272449836 0.00210200751022554 0.00263236837252891 2989559 2093111 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} -2 159 226 0.0341429869670798 0.0339383918974329 0.0340733958953231 0.0339360646982528 0.00252781040183171 0.00248226835975926 3025182 1283336 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} -3 212 226 0.0340442999201384 0.0338745261472067 0.034027618829633 0.0338139925230793 0.00248977155690604 0.00247514587648976 3016438 1280921 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} -4 266 227 0.0341697579729518 0.0339059962270283 0.0340886549172198 0.034027618829633 0.00212794954482496 0.00176933675916339 3027554 1282111 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} -5 319 227 0.0340529451943787 0.0338828564624536 0.0340123598077363 0.0338750286106661 0.00194821759133238 0.00178641582960113 3017204 1281236 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} -6 372 227 0.0342575312076342 0.0340850054457783 0.0337987335011826 0.0340733958953231 0.00504353926503223 0.00150069147576497 3035331 1288880 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} -7 426 227 0.0341087896029178 0.0339321772178043 0.0341191729610132 0.0338445105668727 0.00177996041221123 0.00157110589432284 3022152 1283101 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} -8 479 228 0.0352966119102535 0.0341722754150315 0.0341039139391165 0.0341496910048066 0.0148232563794689 0.00232370676692305 3127397 1292180 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} -9 532 228 0.0346266370154075 0.0362828863986976 0.0341954680704967 0.0343022812237736 0.00451750429007309 0.0123770414604214 3068035 1371990 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} -10 586 230 0.0340408801837222 0.0365157786881796 0.0339818417639429 0.0365300984206912 0.00236831472158811 0.00261309494789321 3016135 2060426 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} -11 105 278 0.033903718280534 0.0338072489345461 0.0339055466544594 0.0336614023041123 0.00173839398539966 0.00178112265488329 3003982 1278377 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} -12 159 279 0.0337381714364654 0.0337270927900593 0.0337834744792859 0.0336003662165255 0.00192180483077527 0.00193814473890887 2989314 1275346 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} -13 212 279 0.0339247445806771 0.0338354133337141 0.0339360646982528 0.0337376974135958 0.00196258502455624 0.00180732092331299 3005845 1279442 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} -14 265 279 0.0339823722181065 0.0340851905638949 0.034027618829633 0.0340733958953231 0.00201350373779871 0.00201746058566591 3010951 1288887 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} -15 319 280 0.0341223669722534 0.0341947804889208 0.0340123598077363 0.0342259861142901 0.00175698851686063 0.00164742979601401 3023355 1293031 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} -16 372 280 0.0351670795180135 0.0341000000132227 0.0342107270923934 0.0341344319829099 0.00741950895362394 0.0016692471073463 3115920 1289447 1352 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} -17 425 280 0.0339143612225817 0.0339197743039922 0.0338597695887694 0.0339513237201495 0.00162828341856065 0.00159495444129852 3004925 1282632 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} -18 479 280 0.0367070105273708 0.0343882553662106 0.0342717631799802 0.0342565041580835 0.021981155670079 0.00248674570969798 3252363 1300347 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} -19 532 281 0.0341740806100719 0.0342300851583005 0.0341344319829099 0.0340581368734264 0.00214740245770264 0.00190277091615244 3027937 1294366 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} -20 585 281 0.0340663532698323 0.034032141000767 0.034027618829633 0.0339971007858396 0.00220819379417719 0.00240351086690825 3018392 1286881 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} -21 105 331 0.0339789186229139 0.0338445370123179 0.0339665827420462 0.0338445105668727 0.0021253801964241 0.00204102921264402 3010645 1279787 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} -22 158 331 0.0338763039579104 0.0336052057330023 0.0338750286106661 0.0335851071946288 0.00194364473645818 0.00203915148529843 3001553 1270737 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} -23 212 332 0.0341284276932287 0.0340514197303384 0.0341191729610132 0.0339208056763561 0.00225398395792867 0.00237448560981208 3023892 1287610 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} -24 265 332 0.0342056595621925 0.0341443225794253 0.0342107270923934 0.0341344319829099 0.00221910129759943 0.00241261984831175 3030735 1291123 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} -25 318 332 0.0341821502851135 0.0342459788708826 0.0341344319829099 0.0341496910048066 0.0018089401729531 0.00200955876002552 3028652 1294967 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} -26 372 333 0.0342760971033591 0.0342236853605552 0.0341344319829099 0.0341649500267033 0.00242926576527445 0.00179974995625616 3036976 1294124 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} -27 425 333 0.0342249026334453 0.0342011538412208 0.0342412451361868 0.0341649500267033 0.00167568908414058 0.00158913997179019 3032440 1293272 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} -28 478 333 0.0341633248054362 0.0341520975403224 0.0340733958953231 0.0341496910048066 0.00176676555429979 0.00156926285780998 3026984 1291417 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} -29 532 334 0.0340671658804659 0.0342780836413897 0.0340733958953231 0.0342107270923934 0.00200050084510031 0.00205082762340188 3018464 1296181 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} -30 585 334 0.0341568803516618 0.0339383654519877 0.0340886549172198 0.0338597695887694 0.00207620180187731 0.00200126929686267 3026413 1283335 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} -31 105 384 0.0337102830909722 0.03369705076428 0.0336461432822156 0.0335851071946288 0.002051126768275 0.00201378302553971 2986843 1274210 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} -32 158 384 0.0338656610158626 0.0338979303662337 0.033829251544976 0.0338750286106661 0.00202472788521459 0.00204621855483787 3000610 1281806 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} -33 211 384 0.0339763227833901 0.0340849790003331 0.0339665827420462 0.0339208056763561 0.00248303594481725 0.00247135792277821 3010415 1288879 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} -34 265 385 0.0340574935566749 0.034085428572902 0.0339513237201495 0.034027618829633 0.00257599580179252 0.00260794454472485 3017607 1288896 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} -35 318 385 0.0343853593747954 0.0342422765085507 0.034332799267567 0.0342259861142901 0.00201014685611634 0.00211223813407608 3046657 1294827 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} -36 371 385 0.0344042638582843 0.0340847938822165 0.0344243533989471 0.0339971007858396 0.00201767279147433 0.00201601790853071 3048332 1288872 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} -37 425 386 0.0341330324868188 0.0344071638595488 0.0342107270923934 0.0344243533989471 0.00172162749581422 0.00173413265265715 3024300 1301062 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} -38 478 386 0.0343209712683452 0.034326082124479 0.0343175402456703 0.0342717631799802 0.00180846330889593 0.00150345389386858 3040952 1297996 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} -39 531 386 0.0341309445289409 0.0340307922830604 0.0341954680704967 0.0339360646982528 0.00196200383316985 0.00196193880562365 3024115 1286830 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} -40 585 387 0.0340569292437349 0.0339640704247495 0.0340733958953231 0.0339360646982528 0.00202218001903333 0.00208399043881296 3017557 1284307 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} -41 104 436 0.0337395483600389 0.0335263718607769 0.033676661326009 0.0336308842603189 0.00236198933951809 0.00250846891896087 2989436 1267756 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} -42 158 437 0.0338313620753714 0.0339350862167794 0.0337529564354925 0.0340123598077363 0.00238262207849316 0.00239915012430456 2997571 1283211 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} -43 211 437 0.0341068145076279 0.0340748239493654 0.0340733958953231 0.0340428778515297 0.00263922482101499 0.00250707196219325 3021977 1288495 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} -44 264 437 0.0341458875355912 0.034176506686268 0.0340733958953231 0.0340428778515297 0.00237013061697275 0.00225989355764115 3025439 1292340 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} -45 318 438 0.0342907579535394 0.0341495587775805 0.0343175402456703 0.0342870222018769 0.00192464681047011 0.00187141564155894 3038275 1291321 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} -46 371 438 0.0382616588182023 0.0342743812790578 0.0346379797055009 0.0342107270923934 0.0245687536004704 0.00188691289254425 3390110 1296041 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} -47 424 438 0.0342179841568014 0.0341049453114804 0.0342412451361868 0.0340733958953231 0.00210890612174584 0.00205145150660672 3031827 1289634 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} -48 478 439 0.0344069499878786 0.0343292026870159 0.0342870222018769 0.0342565041580835 0.00256176252803611 0.00230368904797772 3048570 1298114 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} -49 531 439 0.0342896857589535 0.0343516548700147 0.0343022812237736 0.0343022812237736 0.00210643544786279 0.00197991973319987 3038180 1298963 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} -50 584 439 0.0339429380298616 0.03443569849495 0.0339665827420462 0.034378576333257 0.00216743134982953 0.00237160175099185 3007457 1302141 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} -51 104 489 0.033835097827034 0.0341167928709427 0.0338445105668727 0.0340123598077363 0.00201600500366879 0.0021447109785099 2997902 1290082 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} -52 157 489 0.0337233300061442 0.0338682585766876 0.0336614023041123 0.0337376974135958 0.0022683721346649 0.00223989037628031 2987999 1280684 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} -53 211 490 0.034135380028649 0.0338531317820171 0.0341191729610132 0.0336461432822156 0.00232667728156598 0.00228351210820986 3024508 1280112 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} -54 264 490 0.0342605559249924 0.0342490994334196 0.0342565041580835 0.034378576333257 0.00181384001380275 0.00191440279253927 3035599 1295085 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} -55 317 490 0.0342922703122185 0.0341911310174792 0.0343175402456703 0.0342565041580835 0.00166932061023946 0.00182343443174392 3038409 1292893 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} -56 371 491 0.0343862058442054 0.0343188625179317 0.0343175402456703 0.034378576333257 0.00160258592927534 0.00144617243391578 3046732 1297723 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} -57 424 491 0.0343596718497682 0.0342158575087677 0.0343175402456703 0.0341954680704967 0.00196913626785325 0.0020296574658787 3044381 1293828 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} -58 477 491 0.0342095871802546 0.0343415527099375 0.0342565041580835 0.0344090943770504 0.00253237448379139 0.00280567600005066 3031083 1298581 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} -59 531 492 0.0340588253352132 0.0340756702036127 0.0341344319829099 0.0339971007858396 0.00228514629227739 0.00215024071306315 3017725 1288527 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} -60 584 492 0.0343185898677386 0.0342451061711901 0.0342717631799802 0.0343175402456703 0.00228238594718412 0.00208062892129834 3040741 1294934 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} -61 104 542 0.0335905697438877 0.0338933024133188 0.0335545891508354 0.0338902876325628 0.00174296072329567 0.00175892543066053 2976236 1281631 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} -62 157 542 0.0338129654735285 0.0340098474904396 0.0337071793698024 0.0340581368734264 0.00197004776753602 0.00187182145483227 2995941 1286038 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} -63 210 543 0.034008217750757 0.0343444617089126 0.0339360646982528 0.0343175402456703 0.00222264430251821 0.00218283362258089 3013241 1298691 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} -64 264 543 0.0339973716560508 0.0341747877323282 0.0339665827420462 0.0342717631799802 0.00183206368495597 0.00188069929593702 3012280 1292275 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} -65 317 543 0.0341802541936352 0.0342979177253109 0.0341344319829099 0.0342259861142901 0.00155666397478304 0.00155674685440597 3028484 1296931 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} -66 370 543 0.0343229576498939 0.034222151524732 0.0343480582894636 0.0342259861142901 0.00163447429165016 0.00162031919651279 3041128 1294066 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} -67 424 544 0.0343895127180336 0.0339328647993802 0.0343633173113603 0.0339818417639429 0.00179390689266101 0.001895509824038 3047025 1283127 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} -68 477 544 0.0340094705254837 0.034235136238339 0.0338902876325628 0.0340886549172198 0.00251047124906689 0.00241256673802125 3013352 1294557 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} -69 530 544 0.0341120626179696 0.0343361578391109 0.0341802090486 0.0345922026398108 0.00244524586110542 0.00281154561461638 3022442 1298377 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} -70 584 545 0.0343360271375836 0.0342285513224772 0.0343022812237736 0.0341039139391165 0.00220103257561558 0.00207613027183861 3042286 1294308 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} -71 103 595 0.0336381300384681 0.0337099825869966 0.033676661326009 0.033676661326009 0.00198696237045589 0.00214531867647872 2980450 1274699 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} -72 157 595 0.0338397026206241 0.0340959538601028 0.0337529564354925 0.0339208056763561 0.00215465873260296 0.00202470974494403 2998310 1289294 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} -73 210 595 0.033895840471892 0.0334945315447221 0.0338139925230793 0.0334935530632486 0.00217856565492366 0.00206917075079217 3003284 1266552 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} -74 263 596 0.0339609847576818 0.0343159799644018 0.0339360646982528 0.0344701304646372 0.0019157270967108 0.00193293434110831 3009056 1297614 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} -75 317 596 0.0340949752221474 0.0341428151890473 0.0341039139391165 0.0341344319829099 0.00164422326930521 0.00172617317911337 3020928 1291066 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} -76 370 596 0.0341816311172087 0.0341848898924054 0.0341802090486 0.0341191729610132 0.00190815029467266 0.00207202117119549 3028606 1292657 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} -77 423 596 0.034112660789686 0.0340428778515297 0.0340428778515297 0.0339360646982528 0.0019626037082548 0.00195971238851446 3022495 1287287 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} -78 477 597 0.0341390480627588 0.0343614925756396 0.0342565041580835 0.0342717631799802 0.00232478350468162 0.00231144980791214 3024833 1299335 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} -79 530 597 0.0341900619525318 0.0341630724000921 0.0341649500267033 0.0341649500267033 0.00222147709803031 0.00223126731006474 3029353 1291832 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} -80 583 597 0.0341248612354481 0.0340851112275592 0.0341039139391165 0.0341344319829099 0.00191031135834673 0.00203422791887296 3023576 1288884 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} -81 104 652 0.0336905659968498 0.0371475489355712 0.0336003662165255 0.0371709773403525 0.00209334446749031 0.00243502653032305 2985096 1823414 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} -82 156 648 0.033872331194813 0.0337000390995908 0.0338445105668727 0.033829251544976 0.00196252955862299 0.0020009641728283 3001201 1274323 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} -83 210 648 0.03370691978585 0.0338247822647324 0.0336461432822156 0.0337834744792859 0.00222543864716547 0.00234598796325746 2986545 1279040 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} -84 263 648 0.03396400947504 0.0339678785688624 0.0339665827420462 0.034027618829633 0.00197378006189926 0.00206093111287589 3009324 1284451 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} -85 316 649 0.0340762174600229 0.0339807046097981 0.034027618829633 0.0340123598077363 0.00184048728791547 0.00201067235554532 3019266 1284936 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} -86 370 649 0.0340926276803172 0.0340249213942197 0.0340581368734264 0.0341039139391165 0.00201616281251048 0.00194157226760956 3020720 1286608 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} -87 423 649 0.033916483039236 0.0340939440062655 0.0339360646982528 0.0340733958953231 0.00191404171484409 0.00212303173265371 3005113 1289218 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} -88 476 650 0.0340568502399233 0.034186238610112 0.0340123598077363 0.0341039139391165 0.00190405688418053 0.00193197345763017 3017550 1292708 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} -89 530 650 0.0341780082281341 0.0339846978720276 0.0341649500267033 0.0339971007858396 0.00164940568082619 0.00150936640644827 3028285 1285087 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} -90 583 650 0.0339930038738955 0.034018574487365 0.0340123598077363 0.0340886549172198 0.00168757581766895 0.00166422398188934 3011893 1286368 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} -91 105 706 0.0334391081508007 0.0366424055307486 0.0333867399099718 0.0366674296177615 0.00243458217680203 0.00298156442836785 2962816 2067571 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} -92 156 700 0.0336243720889917 0.0336242993444571 0.0336461432822156 0.0335698481727321 0.00227820138548044 0.00224735113928469 2979231 1271459 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} -93 209 701 0.0338394768954482 0.0336721127094297 0.033829251544976 0.0334630350194553 0.00253270345682552 0.00261726721668795 2998290 1273267 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} -94 263 701 0.0340324042033639 0.0338287490815166 0.0340733958953231 0.0337376974135958 0.00233746012260251 0.00246578030733017 3015384 1279190 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} -95 316 701 0.0339810404395682 0.0340337806183712 0.0339360646982528 0.0340733958953231 0.00208553747292505 0.00212698615844171 3010833 1286943 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} -96 369 702 0.0340930791306691 0.0339794881193176 0.0340886549172198 0.0340581368734264 0.00222245604811752 0.00222378072498782 3020760 1284890 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} -97 423 702 0.0338578396385147 0.0339394497152421 0.0338750286106661 0.0338750286106661 0.00223784532538851 0.00213515392054409 2999917 1283376 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} -98 476 702 0.0342693930656323 0.0341852072377481 0.0342717631799802 0.0342412451361868 0.00214600360912788 0.0020532368864921 3036382 1292669 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} -99 529 703 0.0340563310720185 0.0340573170646243 0.0340123598077363 0.0340581368734264 0.0017926475174755 0.00165290437173833 3017504 1287833 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} -100 583 708 0.0339936923356822 0.0371018941050365 0.0339818417639429 0.0370336461432822 0.00151506333938431 0.00193371825405358 3011954 1821173 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv deleted file mode 100644 index 44f84fe..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 243 194 0.244063032344104 0.936971201121618 0.240390630960555 1 0.0178715869844055 0.153759225582194 23080310 52869195 1443 861 74 True 241 197 32 {X=0,Y=0,Width=0,Height=0} -2 294 197 0.236054118452837 0.235209862458562 0.235812924391546 0.235278858625162 0.00532826314116166 0.00473852499829321 22322931 8894154 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} -3 347 198 0.234059300069829 0.234171667169791 0.234256504158083 0.234302281223774 0.00439842328637859 0.00420182416898973 22134287 8854896 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} -4 400 198 0.234259010317605 0.234989333890803 0.23413443198291 0.234912642099641 0.00482054756961845 0.0050862016925346 22153173 8885815 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} -5 452 198 0.235596284348859 0.234712344297483 0.234424353398947 0.234637979705501 0.0103017541508817 0.00561943203235896 22279635 8875341 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} -6 505 198 0.234934393872366 0.234554808780258 0.234439612420844 0.234454871442741 0.00764554729187918 0.00605149358881356 22217042 8869384 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} -7 558 199 0.234186162499278 0.234570200029381 0.234256504158083 0.234668497749294 0.00525394300422528 0.00583553462905912 22146284 8869966 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} -8 611 199 0.234397472987539 0.235094031408462 0.23440909437705 0.235111009384298 0.00467361771658753 0.00494939654409916 22166267 8889774 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} -9 663 199 0.235356010270178 0.23524323661044 0.235431448844129 0.235263599603265 0.00404128989293787 0.00348125326870281 22256913 8895416 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} -10 716 198 0.239602015523279 0.960029833957562 0.239246204318303 1 0.00548750584398655 0.0968036341481207 22658445 54170293 1443 861 76 True 716 199 33 {X=0,Y=0,Width=0,Height=0} -11 241 249 0.234937164394706 0.234644485285027 0.234775310902571 0.234439612420844 0.0052196979542815 0.00464370387969955 22217304 8872775 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} -12 294 249 0.234956325411807 0.235461966887922 0.235004196231022 0.235492484931716 0.00397291790017794 0.00388106082685316 22219116 8903687 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} -13 347 250 0.234416760898793 0.234556897970431 0.23440909437705 0.234515907530327 0.00351402672044706 0.00345958331230322 22168091 8869463 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} -14 399 250 0.234683132874939 0.234374530180137 0.234699015793088 0.234439612420844 0.0036630476489971 0.0033553146381764 22193281 8862567 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} -15 452 250 0.234592593896782 0.234404889551259 0.234622720683604 0.234256504158083 0.00498501757780704 0.00440659345629358 22184719 8863715 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} -16 505 251 0.234796322459403 0.242187175836691 0.234653238727398 0.238712138551919 0.0057904875034629 0.0138657776948359 22203985 9157992 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} -17 558 251 0.235299722138816 0.235389691486114 0.235309376668956 0.235324635690852 0.00517579528685075 0.00473517678064104 22251590 8900954 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} -18 610 251 0.235598504996537 0.235351239808752 0.235553521019303 0.235294117647059 0.0041894639929763 0.00418926455906686 22279845 8899500 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} -19 663 251 0.235585255132062 0.235613472843635 0.235629816128786 0.235553521019303 0.00355453674606839 0.00327944844890845 22278592 8909416 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} -20 716 252 0.235849068076122 0.235475850746667 0.235828183413443 0.235477225909819 0.00388107517227748 0.00366005867255676 22303540 8904212 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} -21 241 301 0.234329510594102 0.234573003246575 0.234073395895323 0.23440909437705 0.00485464829894404 0.00479910601690695 22159840 8870072 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} -22 294 302 0.235184058118368 0.235020010607268 0.235187304493782 0.234836346990158 0.00371968373548061 0.00361495601538441 22240652 8886975 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} -23 346 302 0.235043681461626 0.23470449000025 0.235095750362402 0.234531166552224 0.00388723962572734 0.00405959941220269 22227377 8875044 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} -24 399 302 0.23470144793102 0.234469707337514 0.234653238727398 0.234561684596017 0.00383057398469928 0.00373834133434694 22195013 8866166 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} -25 452 302 0.235150198528546 0.234919729478963 0.235080491340505 0.234973678187228 0.00419854053305407 0.00385778398010064 22237450 8883183 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} -26 505 303 0.235622255352171 0.235666919088441 0.235614557106889 0.235553521019303 0.00480104899488303 0.00522381278786094 22282091 8911437 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} -27 557 303 0.235792949136964 0.236576483731622 0.235690852216373 0.236621652552071 0.00465909482128595 0.00451039346035424 22298233 8945831 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} -28 610 303 0.236147544272973 0.236044665828082 0.23611810482948 0.236133363851377 0.00419408218780256 0.00437767164993768 22331766 8925721 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} -29 663 303 0.235742128028692 0.23624779329288 0.235690852216373 0.236224917982757 0.00363138760701333 0.00350588466061443 22293427 8933402 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} -30 716 304 0.23577450718673 0.235858357666449 0.23584344243534 0.235873960479133 0.00352616183180111 0.00361014612441154 22296489 8918676 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} -31 241 353 0.234524071054169 0.234860147890863 0.234500648508431 0.234744792858778 0.00484792987678612 0.00502096212546939 22178239 8880930 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} -32 293 354 0.235199549779545 0.235469900521491 0.235202563515679 0.235507743953613 0.00390749134982057 0.00330776958332747 22242117 8903987 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} -33 346 354 0.23546853366034 0.235342195466484 0.235477225909819 0.235172045471885 0.00391076805473195 0.00383288253610792 22267554 8899158 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} -34 399 354 0.234882145204874 0.235457391825898 0.234851606012055 0.235355153734646 0.00399786954882024 0.00385805696097952 22212101 8903514 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} -35 452 355 0.236086233248055 0.23589852829775 0.236194399938964 0.235873960479133 0.0041759956720725 0.00417718507580709 22325968 8920195 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} -36 504 355 0.23678598048019 0.236500902649159 0.236743724727245 0.236591134508278 0.00468194663887821 0.00448143230594839 22392141 8942973 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} -37 557 355 0.237220889040527 0.236742640463991 0.237140459296559 0.236728465705348 0.00418170395151014 0.00424007037728504 22433269 8952114 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} -38 610 355 0.237105256743618 0.237404940194287 0.237186236362249 0.237399862668803 0.00399935464684137 0.00387438876803293 22422334 8977158 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} -39 663 356 0.239106028577303 0.237144584786015 0.237338826581216 0.237018387121386 0.00871503010773739 0.00381702814409755 22611541 8967313 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.236204604343767 0.236674543442528 0.236133363851377 0.236621652552071 0.0036930852759722 0.00363408168709691 22337162 8949539 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 240 406 0.234702780319626 0.234583845879119 0.234592202639811 0.234485389486534 0.00548543575510393 0.00563540663448949 22195139 8870482 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} -42 293 406 0.236002356212931 0.235165143210681 0.23566033417258 0.235263599603265 0.00665202611645494 0.00409121630286539 22318036 8892463 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} -43 346 406 0.235747933436192 0.235617386769529 0.235599298084993 0.235431448844129 0.00448726476483232 0.00455515729191212 22293976 8909564 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} -44 399 406 0.236087470466047 0.236373990957509 0.23611810482948 0.236301213092241 0.00450377314878849 0.00424724952993202 22326085 8938174 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} -45 451 407 0.236800509860707 0.237210143044736 0.236896314946212 0.236881055924315 0.00422302582709169 0.00427852247415564 22393515 8969792 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} -46 504 407 0.237498681490442 0.237474835506025 0.237521934843976 0.237323567559319 0.00462307241313706 0.00482948759176095 22459539 8979801 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} -47 557 407 0.237733974973618 0.237302252530465 0.23782711528191 0.237186236362249 0.00413019483740657 0.00387522346958884 22481790 8973275 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} -48 610 407 0.237804929954163 0.238019770350398 0.238010223544671 0.238147554741741 0.0041987301822723 0.00432531527166206 22488500 9000407 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.237554366874577 0.238101248767146 0.237628747997253 0.238223849851225 0.00390447499858489 0.00389156578495378 22464805 9003488 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 715 408 0.236847830805258 0.237028013263449 0.236774242771038 0.237109941252766 0.00414122677851682 0.00369962178978672 22397990 8962905 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} -51 240 458 0.234795159263001 0.234961724845985 0.234943160143435 0.235004196231022 0.00588157022043733 0.00608202980362807 22203875 8884771 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} -52 293 458 0.235408343533773 0.235406722352841 0.235187304493782 0.235538261997406 0.00490814644868656 0.00469961396722399 22261862 8901598 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} -53 346 458 0.235481878695429 0.235500921028744 0.235492484931716 0.235370412756542 0.00431010331847649 0.00408992605493333 22268816 8905160 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} -54 398 459 0.236443355692612 0.237262637253514 0.236270695048447 0.237064164187076 0.00485015418684728 0.00469082831112488 22359740 8971777 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} -55 451 459 0.237460454626854 0.237740189103445 0.237491416800183 0.237521934843976 0.00552632814406493 0.0060540199823639 22455924 8989835 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} -56 504 459 0.238332069414697 0.238326828414943 0.238376440070192 0.238574807354849 0.00547264500235485 0.00557224613173609 22538350 9012018 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} -57 557 459 0.238621758191454 0.238658401407215 0.238742656595712 0.238513771267262 0.00521866944191998 0.00480464801515095 22565745 9024556 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.238724849116243 0.238586443350749 0.238757915617609 0.238330663004501 0.00511196014396748 0.00509365087777816 22575494 9021835 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 662 460 0.237645751813754 0.237383492938207 0.237720302128634 0.237354085603113 0.00467859981971382 0.00437025187826847 22473447 8976347 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} -60 715 460 0.236335654280264 0.236254272426961 0.236423285267414 0.236133363851377 0.00488518162636706 0.00498923170790365 22349555 8933647 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} -61 240 510 0.235324540520237 0.234997241078927 0.235141527428092 0.235156786449989 0.00533364945924697 0.00511228377746972 22253937 8886114 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} -62 293 510 0.235418209554167 0.234827143975219 0.235431448844129 0.234744792858778 0.00401678037037983 0.00382767747623919 22262795 8879682 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} -63 345 510 0.236046906635142 0.236399219912257 0.236057068741894 0.236362249179828 0.00382129889061187 0.00401187479317049 22322249 8939128 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} -64 398 511 0.2373540750286 0.237021084556799 0.237216754406043 0.237003128099489 0.00392461204209065 0.00389068183209424 22445864 8962643 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} -65 451 511 0.238004671925478 0.238053832083852 0.238040741588464 0.238010223544671 0.00551145577454909 0.00612648221123265 22507389 9001695 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} -66 504 511 0.23860035537765 0.238584036815233 0.238544289311055 0.238742656595712 0.00578903988787275 0.00542649329710428 22563721 9021744 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} -67 556 511 0.240097093061158 0.238429727642326 0.239246204318303 0.238239108873121 0.00685316042106566 0.00474601093945347 22705263 9015909 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} -68 609 512 0.238502509411184 0.238584962405816 0.238361181048295 0.238605325398642 0.00478670821737547 0.00499787826064713 22554468 9021779 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} -69 662 512 0.237528015188807 0.237247880695076 0.237430380712596 0.237140459296559 0.00436904383502383 0.00408731728827779 22462313 8971219 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} -70 714 512 0.236596442913678 0.240477424911795 0.236514839398795 0.236636911573968 0.00425625286532074 0.0257713590627649 22374217 9093340 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} -71 240 562 0.235442668402156 0.235693866997129 0.235355153734646 0.235553521019303 0.0050967174366776 0.00481984648516619 22265108 8912456 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} -72 292 562 0.23553046858151 0.235666019943304 0.235553521019303 0.235568780041199 0.00408735659297474 0.00355808377996455 22273411 8911403 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} -73 345 563 0.236682730937709 0.235744642251967 0.236728465705348 0.235614557106889 0.00367279593638989 0.00354518278465218 22382377 8914376 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} -74 398 563 0.237207670899591 0.237113881624105 0.237216754406043 0.23736934462501 0.00365835917678755 0.00376237880251766 22432019 8966152 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} -75 451 563 0.238090325478744 0.238118147406647 0.238025482566567 0.237994964522774 0.00487503218974162 0.00476329535074882 22515489 9004127 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} -76 503 563 0.238981386795532 0.238678975963603 0.238941023880369 0.238544289311055 0.00593696773455382 0.00650481065937466 22599754 9025334 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} -77 556 564 0.239304829416983 0.239225867770923 0.238956282902266 0.239368276493477 0.00543544963088122 0.00445890907973087 22630341 9046014 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} -78 609 564 0.238125834692555 0.238605642743985 0.237933928435187 0.238742656595712 0.00411402114601187 0.00438144661524744 22518847 9022561 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} -79 661 564 0.236777510295478 0.237055252072034 0.236697947661555 0.237201495384146 0.00370933854279075 0.00366245207641505 22391340 8963935 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} -80 714 564 0.236592223683091 0.236956425443216 0.236636911573968 0.236972610055695 0.00394595017275067 0.00383010509840887 22373818 8960198 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} -81 241 616 0.24534876620022 0.934671058642052 0.243869687953002 1 0.00961432315807048 0.143771824580398 23201898 52739408 1443 861 73 True 239 614 32 {X=0,Y=0,Width=0,Height=0} -82 292 614 0.237782638881288 0.236659601765974 0.237094682230869 0.236636911573968 0.00507431247118531 0.00364409591128407 22486392 8948974 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} -83 345 615 0.23639730368959 0.236566804698668 0.236301213092241 0.236560616464485 0.00356201607000948 0.00331352281393276 22355385 8945465 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} -84 398 615 0.237468290340801 0.237500804933239 0.237476157778286 0.237201495384146 0.00425129623237894 0.00416117329817949 22456665 8980783 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} -85 450 615 0.238080544054451 0.237664766693654 0.238132295719844 0.237476157778286 0.00460363557650439 0.00471125352262127 22514564 8986983 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} -86 503 616 0.238458572310712 0.238728296718953 0.238620584420539 0.238895246814679 0.00509041182154061 0.00500177721881225 22550313 9027199 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} -87 556 616 0.238392428733468 0.237871649411675 0.238269626916915 0.23778133821622 0.00421389692898973 0.00416527685560705 22544058 8994806 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} -88 608 616 0.237469950539303 0.238242176544768 0.237338826581216 0.237994964522774 0.00387172569828452 0.00417673330424349 22456822 9008817 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} -89 661 616 0.236612473875005 0.236401018202532 0.236499580376898 0.236255436026551 0.00362395752824219 0.00349799082420489 22375733 8939196 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.237033825909999 0.239418813739308 0.237155718318456 0.237201495384146 0.00397961424235414 0.0149830010263483 22415579 9053310 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 670 0.24758213501633 0.93468504164818 0.243808651865415 1 0.0187359205405292 0.151246115259032 23413101 52740197 1443 861 74 True 239 666 32 {X=0,Y=0,Width=0,Height=0} -92 292 667 0.237444138153683 0.236545489669814 0.236896314946212 0.236408026245518 0.00487898841261875 0.00367081399518505 22454381 8944659 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} -93 345 667 0.236115609244472 0.236833797913692 0.236163881895171 0.236835278858625 0.0037210687412987 0.0035279401762037 22328746 8955561 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} -94 397 667 0.236493732671348 0.23652761254884 0.236469062333104 0.236377508201724 0.003984520146957 0.00397664271608808 22364504 8943983 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} -95 450 667 0.237563037975032 0.237216251942583 0.23750667582208 0.237247272449836 0.00465877789527334 0.00442178125158956 22465625 8970023 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} -96 503 668 0.237648564634145 0.238860814844992 0.23773556115053 0.237888151369497 0.00466099053966206 0.0105111726258006 22473713 9032210 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} -97 555 668 0.23714146387527 0.237444000116889 0.237094682230869 0.23755245288777 0.00400852897662918 0.00347124317730743 22425758 8978635 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} -98 608 668 0.236458138861435 0.236534911491723 0.236377508201724 0.236469062333104 0.00376498358883845 0.00350505792586989 22361138 8944259 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} -99 661 668 0.237022363138179 0.236187153886971 0.237018387121386 0.235996032654307 0.00370613662099995 0.00384025977593771 22414495 8931109 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} -100 714 672 0.240536136255981 0.932900710820534 0.240009155413138 1 0.00510503018700649 0.142664608888639 22746782 52639515 1443 861 74 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv deleted file mode 100644 index 603ca40..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 243 194 0.0245643710509813 0.14376828900552 0.0243228809033341 0.156237125200275 0.00291706816235857 0.0447224627674928 2322979 8112217 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} -2 294 197 0.0237926748341031 0.0237097432557173 0.023773556115053 0.0237582970931563 0.00184430916143761 0.001834910339656 2250002 896553 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} -3 347 198 0.0236394501443712 0.0236923685982023 0.0235294117647059 0.0237125200274662 0.00171691139124172 0.00153934361057465 2235512 895896 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} -4 400 198 0.0235320130948421 0.0237262981044302 0.0235141527428092 0.0237125200274662 0.0019017104755988 0.00193728968611838 2225352 897179 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} -5 452 198 0.0237136620748431 0.0237449950342065 0.0235599298084993 0.0237888151369497 0.00250007421371629 0.00217163980887153 2242530 897886 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} -6 505 198 0.023614187633414 0.0237559963394215 0.0236209658960861 0.0236667429617761 0.00235598379590826 0.00236539482558407 2233123 898302 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} -7 558 199 0.0235502224057958 0.0237836582751302 0.0235294117647059 0.0237582970931563 0.00214728018826435 0.0023037143730628 2227074 899348 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} -8 611 199 0.023673024222349 0.0237529022223298 0.023575188830396 0.0237582970931563 0.00197411574105141 0.00206220704793145 2238687 898185 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} -9 663 199 0.0237765592766737 0.0236974725691314 0.0237888151369497 0.0237582970931563 0.0016019583530062 0.00153909746330265 2248478 896089 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} -10 716 198 0.0239661708647747 0.152767319322149 0.0239414053559167 0.168505378805219 0.00183162858391976 0.0404495893394709 2266409 8619993 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} -11 241 249 0.023722428345912 0.0233443465389986 0.0237277790493629 0.0233463035019455 0.00193482772466079 0.00196172565464077 2243359 882736 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} -12 294 249 0.0236902395291043 0.0237964578706207 0.0236820019836728 0.0238040741588464 0.00152703052024379 0.00158438936217126 2240315 899832 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} -13 347 250 0.0236089955476543 0.023976895143413 0.0236057068741894 0.0239719233997101 0.00147423544706311 0.00150826972718729 2232632 906655 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} -14 399 250 0.0235606700243917 0.0236349555366118 0.0235599298084993 0.0236514839398795 0.0014340751538929 0.00143936700759648 2228062 893725 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} -15 452 250 0.0236837150547382 0.0236578308467342 0.0236209658960861 0.0237125200274662 0.00187358272320869 0.00181283048937734 2239698 894590 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} -16 505 251 0.0236977580076687 0.024299582466088 0.0236362249179828 0.0242160677500572 0.00221213787002112 0.00277730950431324 2241026 918857 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} -17 558 251 0.023609386804626 0.0236798863480546 0.0236362249179828 0.0236972610055695 0.00197006206488772 0.00180962968641433 2232669 895424 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} -18 610 251 0.0237539509684165 0.0235894693708192 0.0237430380712596 0.023575188830396 0.0017126844480609 0.00161940470418986 2246340 892005 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} -19 663 251 0.023719393460753 0.0237744288147456 0.0236820019836728 0.0237888151369497 0.00144278360619895 0.00136564890208894 2243072 898999 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} -20 716 252 0.0237375498991429 0.023645639496484 0.0237277790493629 0.0236057068741894 0.0015064827946481 0.00146482923688221 2244789 894129 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} -21 241 301 0.0235224537353171 0.0236294019931139 0.0234988937209125 0.023575188830396 0.00201328448094139 0.00198167283096212 2224448 893515 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} -22 294 302 0.0236927668376513 0.0237451272614327 0.0236972610055695 0.0236820019836728 0.00156771872122458 0.00139431075017163 2240554 897891 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} -23 346 302 0.0237895870763804 0.0236528062121409 0.0238040741588464 0.0236972610055695 0.00148716942699854 0.00161010219733999 2249710 894400 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} -24 399 302 0.0236440183338787 0.023581218391908 0.0236514839398795 0.0234836346990158 0.00153908907680929 0.0016013910021286 2235944 891693 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} -25 452 302 0.0235915158780803 0.0237806434943742 0.0236209658960861 0.0237430380712596 0.00167048870058819 0.00164578081283395 2230979 899234 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} -26 505 303 0.0237614165744173 0.0238709546898286 0.0237430380712596 0.0238498512245365 0.00202568761063386 0.00204340581959195 2247046 902649 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} -27 557 303 0.0238964848257593 0.0236739361228782 0.0238040741588464 0.0235904478522927 0.00181263011392997 0.00188806542443517 2259819 895199 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} -28 610 303 0.0238088644131217 0.0237532195676725 0.023773556115053 0.0237277790493629 0.00161545474341339 0.00176819029456967 2251533 898197 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} -29 663 303 0.0238341586476171 0.0239202754451793 0.0238040741588464 0.0238956282902266 0.00134677496741735 0.0014258780326157 2253925 904514 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} -30 716 304 0.0238211202733977 0.023794289344112 0.0238193331807431 0.0238040741588464 0.0014060812247486 0.00140879137249544 2252692 899750 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} -31 241 353 0.023631667302988 0.0234852214257295 0.023575188830396 0.0234988937209125 0.00203605955982777 0.00201968362892129 2234776 888063 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} -32 293 354 0.0237706692730726 0.0236117628811466 0.023773556115053 0.0235904478522927 0.00155250353134278 0.00139887368371927 2247921 892848 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} -33 346 354 0.0237540249900058 0.0237388068000231 0.0237277790493629 0.0237430380712596 0.00156526478129551 0.00156041816560021 2246347 897652 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} -34 399 354 0.0237538134997508 0.0237284930763841 0.0237430380712596 0.0236057068741894 0.00161838369011668 0.00161233397735218 2246327 897262 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} -35 452 355 0.02375877294623 0.0236263343214674 0.023773556115053 0.0235904478522927 0.00165925010674684 0.00160622611882685 2246796 893399 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} -36 504 355 0.0238926568521442 0.0237558641121953 0.0238193331807431 0.0238651102464332 0.00180567361988376 0.00195177722526399 2259457 898297 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} -37 557 355 0.0238026043015743 0.023847471134466 0.0237888151369497 0.0238651102464332 0.00166144176923119 0.00156900971625776 2250941 901761 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} -38 610 355 0.0238496080107433 0.0240162988568031 0.0238498512245365 0.0240329594872969 0.00168112851771519 0.00159708102021982 2255386 908145 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} -39 663 356 0.0241061139664939 0.0238536593686494 0.0240482185091936 0.0238498512245365 0.00170180913739767 0.00147921221045675 2279643 901995 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.0237713989144522 0.0240361593861695 0.023773556115053 0.0239871824216068 0.00146289875656915 0.00150638460752202 2247990 908896 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 240 406 0.0235832783326489 0.0235713806862831 0.023575188830396 0.0234836346990158 0.00224389499844129 0.00224272458038309 2230200 891321 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} -42 293 406 0.023766566362126 0.023968326819159 0.0236667429617761 0.0240329594872969 0.00192489410834261 0.00151903391664452 2247533 906331 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} -43 346 406 0.0236918362805293 0.0238774602693548 0.0237125200274662 0.0238803692683299 0.00176191844001734 0.00188208989719041 2240466 902895 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} -44 399 406 0.0237652339735196 0.0237353953375887 0.023773556115053 0.0237888151369497 0.00167620280013601 0.00168660313403511 2247407 897523 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} -45 451 407 0.0238540704551233 0.0239364336122138 0.0238345922026398 0.02392614633402 0.00178619999918983 0.00168829891230789 2255808 905125 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} -46 504 407 0.024055694689707 0.0236824515562417 0.0239871824216068 0.0236820019836728 0.00181255347452925 0.00181473384848793 2274875 895521 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} -47 557 407 0.0239813029925184 0.0238590806849212 0.0239566643778134 0.0238498512245365 0.00156213014443488 0.00154870235005164 2267840 902200 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} -48 610 407 0.023837531917184 0.0240263216805446 0.0238040741588464 0.0238803692683299 0.00161144183024476 0.00152542765984723 2254244 908524 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.0240307071160813 0.0238322121125693 0.0240329594872969 0.0237125200274662 0.00154549206702327 0.00149004233443926 2272512 901184 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 715 408 0.0239645318152986 0.0240148443573155 0.0238956282902266 0.0239414053559167 0.00164590155333539 0.00165292395741793 2266254 908090 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} -51 240 458 0.0234695494480342 0.0236959916241986 0.0235141527428092 0.0236820019836728 0.00236037199139689 0.00243067696333317 2219445 896033 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} -52 293 458 0.0238804327154064 0.0236282648389691 0.0238345922026398 0.0235904478522927 0.00194981262676691 0.00185885568910467 2258301 893472 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} -53 346 458 0.0237176169426112 0.0238090987934398 0.0236514839398795 0.0237430380712596 0.00165723536002269 0.00170433282141058 2242904 900310 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} -54 398 459 0.0239126955538034 0.0237922530448294 0.0238651102464332 0.0237430380712596 0.00191524324254599 0.00199759034258115 2261352 899673 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} -55 451 459 0.0238770277223012 0.024140962685609 0.023773556115053 0.0239414053559167 0.00219960006389597 0.0022769679457846 2257979 912859 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} -56 504 459 0.0240518349925537 0.0239405591016694 0.0240329594872969 0.0238345922026398 0.00215929964372954 0.00220265372898136 2274510 905281 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} -57 557 459 0.0241144361080273 0.0239764191253989 0.0240177004654002 0.0238651102464332 0.0019574693791809 0.00199517843219628 2280430 906637 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.0239405699694095 0.0240283315343819 0.0239566643778134 0.0239566643778134 0.00199623038097734 0.00205952880943919 2263988 908600 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 662 460 0.0240832307209052 0.024026374571435 0.024078736552987 0.0240482185091936 0.00181914154128862 0.001894398852367 2277479 908526 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} -60 715 460 0.0238234889642534 0.0239215448265503 0.0237125200274662 0.0238803692683299 0.00194423573666196 0.00205230022946885 2252916 904562 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} -61 240 510 0.0235668878378881 0.0235667262879229 0.0235446707866026 0.0235599298084993 0.00221056821267521 0.00195276371506467 2228650 891145 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} -62 293 510 0.02370280205025 0.0237268270133347 0.0237277790493629 0.0236972610055695 0.00157249844949866 0.00156335523652822 2241503 897199 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} -63 345 510 0.0237336373294258 0.0238655069281116 0.0237277790493629 0.0238345922026398 0.00154388871357042 0.00162832736334394 2244419 902443 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} -64 398 511 0.0239299743076351 0.0237670240900817 0.0239719233997101 0.0237430380712596 0.00165293540998333 0.00155867181707964 2262986 898719 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} -65 451 511 0.0238187938805929 0.0238840980761071 0.0237430380712596 0.0237430380712596 0.00223329310562115 0.00234327234730713 2252472 903146 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} -66 504 511 0.0240746336420404 0.0240529257984442 0.024078736552987 0.0239871824216068 0.00219876109519933 0.00221109335005113 2276666 909530 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} -67 556 511 0.024191693498171 0.0241562745983962 0.0241397726405737 0.0241397726405737 0.00192010657160403 0.00195360155280919 2287736 913438 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} -68 609 512 0.0240403404971956 0.0241523342270572 0.0239414053559167 0.0241550316624704 0.00189198091605445 0.00205254564491481 2273423 913289 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} -69 662 512 0.0239903230518932 0.0237395737179347 0.0239108873121233 0.0237430380712596 0.00173762607836572 0.00162976020249799 2268693 897681 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} -70 714 512 0.0237730379639283 0.0243231189123412 0.023773556115053 0.0241092545967803 0.00177039771283123 0.00289857556195625 2248145 919747 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} -71 240 562 0.023688357265835 0.0236329721282197 0.0236972610055695 0.0236972610055695 0.00196797110805597 0.00195141904292838 2240137 893650 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} -72 292 562 0.0238319274254271 0.0240646940215708 0.0238040741588464 0.024124513618677 0.00161313925074337 0.00146567609120965 2253714 909975 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} -73 345 563 0.0238559738674181 0.0236844878555243 0.0238040741588464 0.0236820019836728 0.00144648466343009 0.00147188332660825 2255988 895598 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} -74 398 563 0.0240163786513066 0.0238679663545179 0.0240177004654002 0.0239108873121233 0.00149814823837704 0.00154447025031049 2271157 902536 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} -75 451 563 0.023962744722644 0.0239375707663586 0.02392614633402 0.0239871824216068 0.00187430136247889 0.00181389935351711 2266085 905168 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} -76 503 563 0.0239733192353929 0.023907951867703 0.0238651102464332 0.0238345922026398 0.00230314222066323 0.00251712954447217 2267085 904048 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} -77 556 564 0.0241087787437066 0.0242166759952975 0.0241092545967803 0.024124513618677 0.00182932357591929 0.00167035103751248 2279895 915722 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} -78 609 564 0.0239274787226264 0.0241730410106709 0.0238803692683299 0.024124513618677 0.00156454631938861 0.0017204749711673 2262750 914072 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} -79 661 564 0.0239195055400137 0.0240426649656956 0.0239414053559167 0.0240482185091936 0.00150009945580791 0.00147385553061882 2261996 909142 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} -80 714 564 0.023862043637736 0.0240631866311927 0.0238651102464332 0.0240024414435035 0.00161225516040355 0.00151017987274069 2256562 909918 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} -81 241 616 0.024770457729945 0.143796325907542 0.0247043564507515 0.155886167696651 0.00209783183501408 0.0452352519247888 2342468 8113799 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} -82 292 614 0.0240180388498081 0.0238903920920714 0.0240024414435035 0.0239108873121233 0.00158924800645496 0.00144062917332762 2271314 903384 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} -83 345 615 0.0237084911381089 0.0237988644061365 0.0236667429617761 0.0237582970931563 0.00137218981511772 0.00146260102571381 2242041 899923 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} -84 398 615 0.0238475248317317 0.0238436629903531 0.0238193331807431 0.0237430380712596 0.00164891867531169 0.00162909796131425 2255189 901617 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} -85 450 615 0.0238522199153923 0.0241091752604447 0.0238193331807431 0.0240329594872969 0.00191663732436139 0.00182283167938577 2255633 911657 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} -86 503 616 0.0239291600701534 0.024099020209477 0.0238498512245365 0.0240634775310903 0.00202676322975411 0.00213244200596215 2262909 911273 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} -87 556 616 0.0238817862530383 0.0242560268177971 0.0238040741588464 0.0242160677500572 0.00165605597469705 0.00167547324381476 2258429 917210 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} -88 608 616 0.0238935239621896 0.0239158590558262 0.0238803692683299 0.0237888151369497 0.00154733965751632 0.00164567528187625 2259539 904347 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} -89 661 616 0.0237851140574876 0.0238998595614631 0.0237582970931563 0.0238345922026398 0.00136900533369473 0.00132678033158972 2249287 903742 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.0240072528468042 0.0240431145382645 0.0239719233997101 0.0238193331807431 0.00154307853556952 0.00207977299181553 2270294 909159 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 670 0.0248450714919014 0.140319820946632 0.0245517662317845 0.153200579842832 0.00274442641397386 0.0424232591843186 2349524 7917635 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} -92 292 667 0.0240481127640661 0.0238829080310718 0.0240634775310903 0.0238498512245365 0.00153102486951917 0.0015227916831842 2274158 903101 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} -93 345 667 0.0236312337479653 0.0236774004762031 0.0236209658960861 0.0236362249179828 0.0015052783778932 0.00141870403638931 2234735 895330 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} -94 397 667 0.0238378174290282 0.0236761575402774 0.0237888151369497 0.0236057068741894 0.00157490381923456 0.00154569939611998 2254271 895283 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} -95 450 667 0.0237705741024578 0.0239126327115084 0.023773556115053 0.0238956282902266 0.00179803060326716 0.00188623424541566 2247912 904225 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} -96 503 668 0.0238755684395419 0.023976551352625 0.0238345922026398 0.0239719233997101 0.00165083498823561 0.00205314636389725 2257841 906642 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} -97 555 668 0.023904204220066 0.0239099088306498 0.0238803692683299 0.02392614633402 0.00151658483735655 0.00142219931285891 2260549 904122 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} -98 608 668 0.0237582230715671 0.0235823819914981 0.0237582970931563 0.023575188830396 0.0014250735289324 0.00134774089788717 2246744 891737 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} -99 661 668 0.0239664775256444 0.0239068676044486 0.0240024414435035 0.0239414053559167 0.00148246341658029 0.00149515124029771 2266438 904007 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} -100 714 672 0.0241468046915518 0.149200465355862 0.0241397726405737 0.166659037155718 0.00148111539223295 0.0468817559634332 2283491 8418731 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv deleted file mode 100644 index 7881fe3..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 243 194 0.317255114508491 0.342804595818904 0.317448691538872 0.332219424734874 0.00653396493069323 0.0287231503632741 30001866 19342967 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} -2 294 197 0.317066666116792 0.31761474248946 0.316762035553521 0.317387655451286 0.00507276757442804 0.00542910980915898 29984045 12010187 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} -3 347 198 0.316712663153496 0.316974789160382 0.316762035553521 0.317143511100938 0.00451903276514087 0.00476282812131071 29950568 11985988 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} -4 400 198 0.317221381812822 0.317295969092679 0.317311360341802 0.317296101319905 0.00457124298088708 0.00427965916984109 29998676 11998133 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} -5 452 198 0.318596184789822 0.317344575821009 0.317769130998703 0.317418173495079 0.0105661726378316 0.00627106577651352 30128687 11999971 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} -6 505 198 0.31815641195362 0.317603397393458 0.317708094911116 0.317341878385595 0.00820989990369374 0.00643068278483229 30087099 12009758 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} -7 558 199 0.317200465426604 0.31760487833839 0.317021438925765 0.317647058823529 0.00654261184251943 0.0067372005925992 29996698 12009814 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} -8 611 199 0.317662328419939 0.317233769405502 0.317524986648356 0.317387655451286 0.0061453342150915 0.0068297286701427 30040375 11995781 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} -9 663 199 0.317502822469634 0.317156601596326 0.317616540779736 0.317250324254215 0.00512500325397431 0.00423706801484297 30025291 11992863 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} -10 716 198 0.317467133489106 0.338727300100389 0.317616540779736 0.330922407873655 0.00524246850801832 0.0226830467335381 30021916 19112903 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} -11 241 249 0.317475106671719 0.317877425096913 0.317326619363699 0.31783016708629 0.00541371723744002 0.00509930794822978 30022670 12020120 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} -12 294 249 0.317575776033089 0.318263740160807 0.317479209582666 0.318211642633707 0.00482458600265979 0.00432107183900343 30032190 12034728 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} -13 347 250 0.317363260050374 0.317505126118989 0.317265583276112 0.317402914473182 0.00397226984528298 0.00387470941344487 30012093 12006042 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} -14 399 250 0.317364349225187 0.31723699574982 0.317326619363699 0.316945143816281 0.00392125530217616 0.00401696972095121 30012196 11995903 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} -15 452 250 0.317616149522764 0.318355823201092 0.317524986648356 0.318043793392844 0.00477323801278755 0.00447405283436093 30036008 12038210 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} -16 505 251 0.317863772887806 0.320161782655728 0.31773861295491 0.3196307316701 0.00623310490707946 0.00698577780551504 30059425 12106500 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} -17 558 251 0.318204441390525 0.317915321419925 0.318211642633707 0.318089570458534 0.00606489128226303 0.00597093763076231 30091641 12021553 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} -18 610 251 0.318638778927174 0.318811055095251 0.318608377203021 0.318562600137331 0.00575750795392554 0.00571182741255689 30132715 12055424 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} -19 663 251 0.318127279170996 0.318381528173853 0.31805905241474 0.318394750896468 0.00432801038599513 0.00410925400730302 30084344 12039182 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} -20 716 252 0.31772703386345 0.317731261121136 0.317662317845426 0.317570763714046 0.0044854825619176 0.00452534189469418 30046494 12014593 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} -21 241 301 0.317686364287417 0.317663534335907 0.317723353933013 0.317570763714046 0.00531057371098409 0.00551532156079563 30042648 12012032 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} -22 294 302 0.317535286223773 0.31802485845406 0.317479209582666 0.318089570458534 0.00474610975904026 0.00423546995427139 30028361 12025695 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} -23 346 302 0.318125121970396 0.318231344490402 0.31815060654612 0.31810482948043 0.00449368697862277 0.00443210069242021 30084140 12033503 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} -24 399 302 0.317944107461159 0.317363219859895 0.31801327534905 0.317158770122835 0.00425499738399945 0.00426564005879891 30067022 12000676 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} -25 452 302 0.318965076667068 0.318067276948206 0.318715190356298 0.318043793392844 0.00442985033661867 0.00435777259733685 30163572 12027299 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} -26 505 303 0.318847847618733 0.319146251113519 0.318760967421988 0.319310292210269 0.00477500141031164 0.00559309337298324 30152486 12068099 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} -27 557 303 0.319105823431756 0.318689670501653 0.319157701991302 0.318654154268711 0.00550102821460244 0.0053982758697251 30176882 12050834 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} -28 610 303 0.318781164741339 0.319027299500882 0.318913557640955 0.318913557640955 0.0057658548725673 0.00555122791907753 30146180 12063601 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} -29 663 303 0.318744037627077 0.318994692266916 0.318638895246815 0.319081406881819 0.00434767250567103 0.00426827153600625 30142669 12062368 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} -30 716 304 0.318299548558189 0.31852364599651 0.318287937743191 0.318486305027848 0.00422457854774099 0.00411226363623754 30100635 12044556 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} -31 241 353 0.317785711834693 0.31737771196388 0.317723353933013 0.317494468604562 0.00634732579500197 0.00653667020536496 30052043 12001224 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} -32 293 354 0.318162640341629 0.317874516097938 0.31805905241474 0.317936980239567 0.00515193438389851 0.00457195966971561 30087688 12020010 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} -33 346 354 0.31843523013127 0.318121886792603 0.318532082093538 0.318410009918364 0.00535315066193878 0.00570732409725739 30113466 12029364 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} -34 399 354 0.318325540710526 0.318376847330048 0.318333714808881 0.318211642633707 0.00458673557578931 0.00452927980640217 30103093 12039005 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} -35 452 355 0.318600308849794 0.319435352720754 0.318532082093538 0.319233997100786 0.00414100430986737 0.00394612909008099 30129077 12079031 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} -36 504 355 0.319199820275581 0.31891813270298 0.319127183947509 0.318638895246815 0.00481218625239393 0.0048343016596482 30185771 12059473 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} -37 557 355 0.319336665045065 0.319518761655004 0.31958495460441 0.319356069275959 0.0053932480531058 0.00493144399441752 30198712 12082185 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} -38 610 355 0.319492565086523 0.319003842390964 0.319386587319753 0.318715190356298 0.00485069545203737 0.00465330550456983 30213455 12062714 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} -39 663 356 0.319653181360666 0.318560854737946 0.319752803845273 0.318455786984054 0.00478888222105942 0.00472417678449074 30228644 12045963 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.318478585633541 0.318410274372816 0.318440527962158 0.318455786984054 0.00398355990642782 0.00377091329158105 30117566 12040269 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 240 406 0.317539621774 0.31810300474471 0.317418173495079 0.318074311436637 0.00654090056188038 0.00705049551103259 30028771 12028650 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} -42 293 406 0.318311444885031 0.318855377661453 0.318165865568017 0.318654154268711 0.00569391659185288 0.0053503670021282 30101760 12057100 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} -43 346 406 0.318621045469294 0.319118932968598 0.318654154268711 0.318913557640955 0.00525433846290085 0.00518294738613186 30131038 12067066 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} -44 399 406 0.319346478192896 0.319306140275368 0.319325551232166 0.319554436560616 0.00493128565656974 0.00511847077286058 30199640 12074145 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} -45 451 407 0.318934981603785 0.319252482467 0.318928816662852 0.319218738078889 0.0049750353102806 0.00500652245254418 30160726 12072116 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} -46 504 407 0.319518916772293 0.319154184747087 0.31944762340734 0.318883039597162 0.00477170162174925 0.00460336389590836 30215947 12068399 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} -47 557 407 0.319146418986199 0.319970106068714 0.319035629816129 0.320012207217517 0.00529254910608572 0.00514728004683951 30180721 12099252 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} -48 610 407 0.319356798917339 0.319538278393582 0.319264515144579 0.319371328297856 0.00511251762165791 0.00557500636872068 30200616 12082923 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.319097533013761 0.320171117897894 0.319096665903716 0.320195315480278 0.00440521472850135 0.00429829027782233 30176098 12106853 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 715 408 0.318852637873009 0.319066703214272 0.318806744487678 0.319157701991302 0.00413804618032832 0.00397121146809041 30152939 12065091 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} -51 240 458 0.31825977781574 0.317532629382027 0.318287937743191 0.317692835889219 0.0058933171441855 0.00582655000632613 30096874 12007082 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} -52 293 458 0.318877361083816 0.317801315105546 0.318898298619059 0.317647058823529 0.00490072691621909 0.00436871306680202 30155277 12017242 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} -53 346 458 0.319239305506186 0.319309075719789 0.319188220035096 0.319111924925612 0.00454593771054582 0.00438832232114566 30189505 12074256 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} -54 398 459 0.319694591152591 0.31950731077722 0.319661249713893 0.319371328297856 0.00476010400870593 0.0042759388039164 30232560 12081752 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} -55 451 459 0.319570171435587 0.319325577677611 0.319600213626307 0.319401846341649 0.00611576249758898 0.00665702578244128 30220794 12074880 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} -56 504 459 0.319271991325093 0.319253566730255 0.319050888838025 0.319005111772335 0.00591471652733113 0.00609188682997314 30192596 12072157 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} -57 557 459 0.319369837291559 0.319432681730786 0.319523918516823 0.319371328297856 0.0055840691064637 0.00551237049483573 30201849 12078930 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.319861160877412 0.320233132466954 0.319829098954757 0.320180056458381 0.00568067591335441 0.00527274433783216 30248312 12109198 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 662 460 0.319364349119442 0.319360803010655 0.319188220035096 0.319340810254063 0.00518124333116155 0.00507812968979688 30201330 12076212 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} -60 715 460 0.318957283251172 0.31887357212777 0.318837262531472 0.318684672312505 0.00459554379979572 0.00459764997103158 30162835 12057788 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} -61 240 510 0.318055266739176 0.318257551926623 0.31801327534905 0.317936980239567 0.005255035574356 0.00500432166747273 30077534 12034494 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} -62 293 510 0.318227588998933 0.318354976946844 0.318226901655604 0.318593118181125 0.00442626783890373 0.0042066976103936 30093830 12038178 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} -63 345 510 0.318865961759072 0.318935507360495 0.318776226443885 0.318852521553368 0.00399764698378282 0.00380437463299869 30154199 12060130 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} -64 398 511 0.319300764574283 0.31944241365463 0.319157701991302 0.319417105363546 0.00441057010651982 0.00406239457390644 30195317 12079298 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} -65 451 511 0.319597210464686 0.319318199398393 0.31958495460441 0.319203479056992 0.00600745126244447 0.00524638971502144 30223351 12074601 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} -66 504 511 0.319100927432353 0.318958990915857 0.319081406881819 0.318944075684749 0.00675133027661981 0.00648432081870547 30176419 12061018 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} -67 556 511 0.319206979220712 0.319327217295215 0.318974593728542 0.318974593728542 0.00593334417839424 0.00554777036213113 30186448 12074942 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} -68 609 512 0.319797396565536 0.320232815121611 0.319844357976654 0.320378423743038 0.00568690123952614 0.00593700572920543 30242282 12109186 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} -69 662 512 0.319619099706076 0.319956777564319 0.319569695582513 0.319981689173724 0.00556672581582971 0.00540386744744282 30225421 12098748 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} -70 714 512 0.319599251345646 0.321733356129307 0.319508659494926 0.319523918516823 0.00559779622429261 0.0169964302080283 30223544 12165927 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} -71 240 562 0.318228445534465 0.319007729871413 0.318211642633707 0.319096665903716 0.00521267818492432 0.00582031079175622 30093911 12062861 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} -72 292 562 0.318399054723156 0.317934335695044 0.318287937743191 0.3177843900206 0.0040582288083724 0.00406016665539504 30110045 12022272 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} -73 345 563 0.318649501483102 0.317982783750702 0.318745708400092 0.317708094911116 0.00423665076454072 0.00453285402006271 30133729 12024104 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} -74 398 563 0.319132249139116 0.319098887321115 0.319127183947509 0.319035629816129 0.00436825549345337 0.00450691031202115 30179381 12066308 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} -75 451 563 0.319186422367928 0.31885960893269 0.318944075684749 0.318669413290608 0.005651421855291 0.00580541939699915 30184504 12057260 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} -76 503 563 0.319608863577735 0.318956346371335 0.319783321889067 0.318684672312505 0.00697834703043291 0.00758011291531943 30224453 12060918 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} -77 556 564 0.319479843947686 0.320103999357905 0.319615472648203 0.319890135042344 0.00583280975080031 0.00577886929873111 30212252 12104315 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} -78 609 564 0.319354969526634 0.320330372369058 0.319325551232166 0.319951171129931 0.00528271873270795 0.00552684819580325 30200443 12112875 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} -79 661 564 0.320099055690724 0.320199388078843 0.31990539406424 0.320164797436484 0.00487882311291175 0.00492879170905161 30270809 12107922 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} -80 714 564 0.319776934883367 0.320225859969516 0.31981383993286 0.320210574502174 0.00535079192464325 0.0052898412191024 30240347 12108923 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} -81 241 616 0.317790988516555 0.343295259326723 0.317799649042496 0.332234683756771 0.00531494137970291 0.0284236129964892 30052542 19370653 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} -82 292 614 0.31794295483927 0.318086767241339 0.31787594415198 0.317906462195773 0.00453368764281868 0.00414039310174086 30066913 12028036 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} -83 345 615 0.318028957351457 0.318423708658993 0.317906462195773 0.318455786984054 0.00488468683552884 0.00530873337842971 30075046 12040777 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} -84 398 615 0.318784315946138 0.318617183536282 0.318852521553368 0.318776226443885 0.00492699993366379 0.00496141661190548 30146478 12048093 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} -85 450 615 0.31962415432317 0.319812147424366 0.319600213626307 0.319615472648203 0.00536520944862913 0.00559469839828512 30225899 12093279 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} -86 503 616 0.319669487259325 0.319402851268568 0.319645990691997 0.319233997100786 0.00546929716031377 0.00511701786091945 30230186 12077802 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} -87 556 616 0.318941791589995 0.3190305258452 0.318898298619059 0.318684672312505 0.00482834782092653 0.00468490731910887 30161370 12063723 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} -88 608 616 0.32002091004151 0.319857184017589 0.31990539406424 0.319554436560616 0.00479985790636271 0.00488947868524116 30263419 12094982 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} -89 661 616 0.32011173453151 0.320072397050857 0.320073243305104 0.320241092545968 0.0041233883367821 0.00397058842179298 30272008 12103120 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.319730618517526 0.319957306473224 0.31967650873579 0.319203479056992 0.00479168831562258 0.00650808582690015 30235967 12098768 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 670 0.317087857440341 0.337029773789874 0.316990920881971 0.327840085450523 0.00642263789159728 0.0235350958660768 29986049 19017119 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} -92 292 667 0.317523305300829 0.317402914473182 0.317433432516976 0.317402914473182 0.00466915715679578 0.00422560607617782 30027228 12002177 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} -93 345 667 0.31753238880728 0.317568595187537 0.317418173495079 0.317586022735943 0.00532708547057885 0.00547851079645445 30028087 12008442 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} -94 397 667 0.318321860780089 0.318755546105716 0.31819638361181 0.318577859159228 0.00504534716237431 0.00461411949749213 30102745 12053325 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} -95 450 667 0.318769152094856 0.318407973619082 0.318760967421988 0.318394750896468 0.00517914712330601 0.00537678142273476 30145044 12040182 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} -96 503 668 0.319407493131457 0.320002369511892 0.319310292210269 0.319661249713893 0.00466705930718966 0.00558064535921 30205410 12100472 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} -97 555 668 0.31944020009939 0.319840338268979 0.319401846341649 0.319691767757687 0.00415465237269611 0.00379942895517011 30208503 12094345 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} -98 608 668 0.318921414503928 0.319238704390036 0.318760967421988 0.319310292210269 0.00399958738286201 0.0039922540273891 30159443 12071595 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} -99 661 668 0.31994093500159 0.318937332096215 0.31981383993286 0.318654154268711 0.00413016147813311 0.00392997951360022 30255856 12060199 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} -100 714 672 0.319405494548548 0.340796873619588 0.319478141451133 0.33186846723125 0.00454067507937388 0.0253669388422927 30205221 19229680 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv deleted file mode 100644 index f575ed1..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 243 194 0.0332668037863735 0.0360909717719615 0.0332951857785916 0.0356908522163729 0.0024545430200893 0.00402203344119241 3145942 2036456 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} -2 294 197 0.0334492564293434 0.033347600651034 0.0334477759975586 0.0332951857785916 0.00196806776247227 0.00209196283395614 3163196 1260996 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} -3 347 198 0.033350173244886 0.0331436004865433 0.0333104448004883 0.033173113603418 0.00180489623478832 0.00178830747773127 3153826 1253282 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} -4 400 198 0.0331426484321884 0.0332049539194728 0.0330815594720378 0.0332341496910048 0.00178905205727539 0.00161443943368451 3134201 1255602 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} -5 452 198 0.0333910437366606 0.0332226194768853 0.0332799267566949 0.0331120775158312 0.00256926341298529 0.0024764744196212 3157691 1256270 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} -6 505 198 0.0332735397509945 0.0332489855857779 0.033173113603418 0.0330815594720378 0.00263950955570923 0.00265405781718823 3146579 1257267 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} -7 558 199 0.0332550555027094 0.0333541591214506 0.0332036316472114 0.0332951857785916 0.00253573840308123 0.00250110981424181 3144831 1261244 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} -8 611 199 0.0332737512412495 0.0333567507750829 0.0331425955596246 0.0332494087129015 0.00242955602861054 0.00263027291496919 3146599 1261342 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} -9 663 199 0.033327850448473 0.0333306226751974 0.0333714808880751 0.0333104448004883 0.00188462036182978 0.00171168195659794 3151715 1260354 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} -10 716 198 0.0334722877181106 0.0356802719189602 0.0334325169756619 0.0354619668879225 0.00208364635483365 0.00296925722475922 3165374 2013282 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} -11 241 249 0.0334126791897449 0.0332491971493397 0.0333562218661784 0.0333867399099718 0.00205297047250437 0.00200512553553757 3159737 1257275 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} -12 294 249 0.0332813225923778 0.0332732889499426 0.0332951857785916 0.0332036316472114 0.001785259328332 0.00161851302187749 3147315 1258186 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} -13 347 250 0.0331531171998098 0.0334296079766868 0.0331120775158312 0.0334172579537652 0.00160215690964452 0.00165756196943659 3135191 1264097 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} -14 399 250 0.0333464192928601 0.0333005277585277 0.033325703822385 0.033325703822385 0.0015768326310633 0.00164444615485174 3153471 1259216 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} -15 452 250 0.0332854889504008 0.0332339910183334 0.0332799267566949 0.0332646677347982 0.0017951238540349 0.00189576658299378 3147709 1256700 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} -16 505 251 0.033313151875752 0.0334061508667693 0.0332036316472114 0.0333104448004883 0.00233309701172133 0.00258253529254032 3150325 1263210 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} -17 558 251 0.0333756155225599 0.0331506614204192 0.0333562218661784 0.0330510414282445 0.00230642255647671 0.00232223382788836 3156232 1253549 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} -18 610 251 0.0334602116245513 0.0333276343398866 0.0334935530632486 0.0333714808880751 0.00221583816726152 0.00219810538600016 3164232 1260241 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} -19 663 251 0.0334591964713274 0.0332688990060347 0.0334477759975586 0.0332646677347982 0.00162895700023283 0.00166154373602111 3164136 1258020 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} -20 716 252 0.0332718266799292 0.0332093174179355 0.0332799267566949 0.0331578545815213 0.00180097476445387 0.00157572122355695 3146417 1255767 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} -21 241 301 0.0332236386253324 0.0334205900798639 0.0332036316472114 0.0334477759975586 0.00201784632633342 0.00198951889625079 3141860 1263756 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} -22 294 302 0.0333655380119102 0.0332308969012417 0.0333104448004883 0.0331883726253147 0.00180481594598168 0.00155204238254943 3155279 1256583 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} -23 346 302 0.033431544120489 0.0334285766043229 0.0334172579537652 0.0333562218661784 0.00174192429873356 0.00159979999201932 3161521 1264058 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} -24 399 302 0.0331522923878154 0.0333485526870622 0.0330815594720378 0.0332799267566949 0.0015723896026759 0.00156723363089755 3135113 1261032 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} -25 452 302 0.0333146746055879 0.0333007393220895 0.033325703822385 0.0332036316472114 0.00169689419990518 0.00165590185626234 3150469 1259224 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} -26 505 303 0.0332599409275994 0.0334473528704349 0.0331883726253147 0.0334019989318685 0.00194034832906346 0.00198781634035104 3145293 1264768 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} -27 557 303 0.0336252163214855 0.0335354690939354 0.0336461432822156 0.0335393301289387 0.00207717592919868 0.00215238730382279 3179836 1268100 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} -28 610 303 0.0335134119981911 0.0333373927091759 0.0334935530632486 0.0333867399099718 0.00220712549924728 0.00233559086673408 3169263 1260610 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} -29 663 303 0.0334339974074467 0.0334458719255021 0.0334935530632486 0.0333104448004883 0.00170730372439695 0.00163168166806994 3161753 1264712 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} -30 716 304 0.033404209005033 0.0332869876905708 0.0334019989318685 0.0332951857785916 0.00160978010009889 0.00158862397186971 3158936 1258704 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} -31 241 353 0.0334816778854316 0.0334540171226324 0.0333409628442817 0.0333714808880751 0.00243912496626176 0.00251514983348731 3166262 1265020 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} -32 293 354 0.033382478381334 0.0335498289706943 0.0333104448004883 0.033524071107042 0.0021434151913524 0.00182353473028463 3156881 1268643 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} -33 346 354 0.0333997571351657 0.0336891171307115 0.0333867399099718 0.0336614023041123 0.00202905654415475 0.00199951716854081 3158515 1273910 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} -34 399 354 0.03338984881672 0.0333710842063967 0.0334019989318685 0.0334325169756619 0.00168735219808491 0.00170781226743297 3157578 1261884 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} -35 452 355 0.0334531161264968 0.0333182197613854 0.0334477759975586 0.0332799267566949 0.001626440667445 0.00166753590581786 3163561 1259885 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} -36 504 355 0.0333298596058953 0.0333976883242963 0.0332799267566949 0.033325703822385 0.00181165330153327 0.00178065912568317 3151905 1262890 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} -37 557 355 0.0335625411844226 0.033496488507669 0.0335088120851453 0.0334630350194553 0.00204951500894798 0.00203356274846486 3173909 1266626 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} -38 610 355 0.0335498200455857 0.033554774268952 0.033524071107042 0.0337224383916991 0.00196648893875153 0.00190452986057331 3172706 1268830 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} -39 663 356 0.0335433061457323 0.033629614878948 0.0335088120851453 0.0337224383916991 0.00169851284418751 0.00164814527276277 3172090 1271660 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.0333831022775861 0.0333467808422319 0.0332951857785916 0.0333714808880751 0.00156303814530793 0.00157351307806479 3156940 1260965 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 240 406 0.0333992707075792 0.0335650086562554 0.033325703822385 0.0335088120851453 0.00267606079946398 0.00264281728063848 3158469 1269217 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} -42 293 406 0.0332127151536627 0.0333287979394767 0.0332341496910048 0.0332036316472114 0.0021723279984769 0.00206502089742629 3140827 1260285 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} -43 346 406 0.0334668101205066 0.0334404241637851 0.033524071107042 0.0334019989318685 0.00191535739365807 0.00193954272171111 3164856 1264506 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} -44 399 406 0.0335843881277619 0.0333031723030505 0.0336003662165255 0.0332036316472114 0.0019476793113939 0.00175085734050669 3175975 1259316 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} -45 451 407 0.0333840539837335 0.0333824028569543 0.0334172579537652 0.0332799267566949 0.00188075739585618 0.00187980447927774 3157030 1262312 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} -46 504 407 0.0333776246799822 0.0331006001926022 0.0333409628442817 0.0330357824063478 0.00190103772277447 0.00169626385708824 3156422 1251656 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} -47 557 407 0.0335480329529311 0.0335201836265935 0.0334935530632486 0.0334782940413519 0.00199872854538186 0.00195065033706683 3172537 1267522 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} -48 610 407 0.0335251602818552 0.0334686943447341 0.033524071107042 0.0333409628442817 0.00198772588817843 0.00208885826001011 3170374 1265575 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.0334970003544048 0.0336696797284687 0.0334782940413519 0.0335545891508354 0.00170536507771991 0.00159734517285757 3167711 1273175 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 715 408 0.0334504302002585 0.0336960722828065 0.0334019989318685 0.0336461432822156 0.00150714099207048 0.00157174103901936 3163307 1274173 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} -51 240 458 0.0333521718277955 0.033335091955441 0.0333409628442817 0.0332799267566949 0.00236348721452822 0.00223033376102829 3154015 1260523 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} -52 293 458 0.0333310756748614 0.0331638048066977 0.0333714808880751 0.0331883726253147 0.00188468186507567 0.00184099150950318 3152020 1254046 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} -53 346 458 0.0335582056341956 0.0333605589191958 0.0335393301289387 0.033325703822385 0.00174217923891893 0.00162603078160236 3173499 1261486 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} -54 398 459 0.0335505285379398 0.0337094801235373 0.0335545891508354 0.0336614023041123 0.00180914577636029 0.00170051497456344 3172773 1274680 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} -55 451 459 0.0335183820191831 0.033244833650877 0.0334630350194553 0.0332036316472114 0.0023313191615346 0.00259417614513938 3169733 1257110 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} -56 504 459 0.0334177338068389 0.0333843069290108 0.0334019989318685 0.0334325169756619 0.00225719310446024 0.00227166242129414 3160215 1262384 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} -57 557 459 0.0335228656125887 0.0335521561698744 0.0335851071946288 0.0336003662165255 0.0021255121350621 0.00200035097349576 3170157 1268731 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.0335535316995605 0.0336834842508779 0.0334935530632486 0.0335545891508354 0.00212279479538357 0.00205933528755043 3173057 1273697 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 662 460 0.0334648009630843 0.0333121108635377 0.0334325169756619 0.0333562218661784 0.0018386323199981 0.00193788777656865 3164666 1259654 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} -60 715 460 0.0335912827100742 0.0335109541662088 0.0336461432822156 0.0335088120851453 0.0017411678699857 0.00179394909600156 3176627 1267173 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} -61 240 510 0.0334735037870767 0.0332875165994754 0.0334019989318685 0.0332494087129015 0.00208072221174177 0.00191442261922061 3165489 1258724 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} -62 293 510 0.0334317133126929 0.0334847202845424 0.0334172579537652 0.0334477759975586 0.00160454820194201 0.00165646555517496 3161537 1266181 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} -63 345 510 0.0333698101150607 0.033450023860403 0.0333409628442817 0.0335698481727321 0.00157348510952905 0.00151176994836183 3155683 1264869 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} -64 398 511 0.0334019037612537 0.0335088120851453 0.0334630350194553 0.0334935530632486 0.00163954031458709 0.00143724204038909 3158718 1267092 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} -65 451 511 0.0333185766007922 0.0336018207160131 0.0332646677347982 0.0334782940413519 0.00217184541622269 0.00194423323689811 3150838 1270609 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} -66 504 511 0.0333634442583859 0.0335758512887989 0.0333867399099718 0.0336308842603189 0.00255600115813175 0.00257326179380241 3155081 1269627 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} -67 556 511 0.0336712788990198 0.0334398952548805 0.0336003662165255 0.0334782940413519 0.00228358836386945 0.00218694248215683 3184192 1264486 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} -68 609 512 0.0336254278117405 0.0338149710045527 0.0335851071946288 0.0337529564354925 0.00221589947653253 0.00224822426111317 3179856 1278669 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} -69 662 512 0.0334347270488264 0.0335813783868516 0.033524071107042 0.0335393301289387 0.00201289159784935 0.00214172354510325 3161822 1269836 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} -70 714 512 0.0335044976839438 0.0335129375746009 0.033524071107042 0.0333409628442817 0.00208780528769756 0.00256055080101923 3168420 1267248 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} -71 240 562 0.0332189435416719 0.0336154136748604 0.0331578545815213 0.0335698481727321 0.00206682886660299 0.00224716891054352 3141416 1271123 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} -72 292 562 0.0332750096082666 0.0333694445887925 0.0332341496910048 0.0334172579537652 0.00165449237020582 0.0016021348016093 3146718 1261822 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} -73 345 563 0.0334259925012958 0.0333214725511485 0.0334019989318685 0.0332341496910048 0.00162785699178922 0.00159564110984465 3160996 1260008 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} -74 398 563 0.033519354874356 0.0335261867426603 0.0335088120851453 0.0335851071946288 0.00170294399008324 0.00176775694777146 3169825 1267749 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} -75 451 563 0.0334784315100177 0.0334480140065656 0.0334325169756619 0.0333409628442817 0.00216548567502124 0.00214323506726624 3165955 1264793 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} -76 503 563 0.0333821082733877 0.0333396670174655 0.0333714808880751 0.0333104448004883 0.00259192203628832 0.00267048068783965 3156846 1260696 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} -77 556 564 0.0334823546542475 0.0336245902443546 0.0334019989318685 0.0335698481727321 0.00237350328937416 0.0021271901846953 3166326 1271470 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} -78 609 564 0.033703911845363 0.0335683936732446 0.0336308842603189 0.0334477759975586 0.00201885816904565 0.00208049748901504 3187278 1269345 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} -79 661 564 0.033497497356504 0.033702842316785 0.0334630350194553 0.0337071793698024 0.00189392432937351 0.00180136375214177 3167758 1274429 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} -80 714 564 0.0336139438908951 0.0332248937851749 0.0336156252384222 0.0331425955596246 0.00197725518412554 0.00202258761723932 3178770 1256356 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} -81 241 616 0.0333966059303665 0.0360214289125856 0.0333714808880751 0.0352635996032654 0.00205870993926471 0.00373240548998521 3158217 2032532 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} -82 292 614 0.0333541069636286 0.0334077640389282 0.0333562218661784 0.0334172579537652 0.00172515092382523 0.00154671713002955 3154198 1263271 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} -83 345 615 0.0333049249048333 0.0333775633404776 0.0332799267566949 0.0333562218661784 0.00189165445283172 0.0018502541967076 3149547 1262129 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} -84 398 615 0.033393972876692 0.0334971760892449 0.0333714808880751 0.0334019989318685 0.00194065803880214 0.00191627770635317 3157968 1266652 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} -85 450 615 0.0335946982776921 0.0333804194485622 0.0334782940413519 0.0333104448004883 0.00210057197998104 0.00219173562818549 3176950 1262237 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} -86 503 616 0.0334906239232172 0.0334561063128055 0.0334325169756619 0.0335088120851453 0.00202271552827104 0.00196343681734253 3167108 1265099 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} -87 556 616 0.0334949066008805 0.0333083027194248 0.033524071107042 0.0333714808880751 0.00186872788574938 0.00186575897690625 3167513 1259510 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} -88 608 616 0.0335898551508531 0.0335340145944479 0.0334935530632486 0.0335393301289387 0.00188924142365308 0.00182423975218969 3176492 1268045 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} -89 661 616 0.0335833095274615 0.033563580602213 0.0336461432822156 0.0335088120851453 0.0016461786553392 0.00164275508039556 3175873 1269163 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.0335559215394418 0.0337162766029609 0.0335545891508354 0.0336919203479057 0.00185915535605561 0.00183886122135141 3173283 1274937 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 670 0.0333275755111415 0.035390350502923 0.0332951857785916 0.0350652323186084 0.00236661146388578 0.00339620836398973 3151689 1996923 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} -92 292 667 0.0333583684922664 0.0332683436516849 0.0333562218661784 0.033173113603418 0.00171166648311574 0.00176913228488217 3154601 1257999 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} -93 345 667 0.0333379808316865 0.0332663337978476 0.033325703822385 0.0332188906691081 0.00191457815869065 0.00191360711588266 3152673 1257923 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} -94 397 667 0.0332857110151686 0.0332065670916318 0.0332799267566949 0.033173113603418 0.00193822467227273 0.00192140367487563 3147730 1255663 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} -95 450 667 0.0333286118133909 0.0333796525306506 0.0333104448004883 0.0333867399099718 0.0020027744560397 0.00210057160244902 3151787 1262208 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} -96 503 668 0.0334008357354661 0.0335671507373188 0.0333867399099718 0.033676661326009 0.00180385945564541 0.00182981125877178 3158617 1269298 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} -97 555 668 0.0333861583117706 0.0336400343843679 0.0333867399099718 0.0336919203479057 0.00156730959823203 0.00163314280355455 3157229 1272054 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} -98 608 668 0.0335627526746776 0.0334260642870262 0.033524071107042 0.0334172579537652 0.00159186511293502 0.00162073532842149 3173929 1263963 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} -99 661 668 0.0334275575291826 0.0335807172507209 0.0334172579537652 0.0336003662165255 0.00167089610890298 0.00153170917016667 3161144 1269811 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} -100 714 672 0.0335290517025468 0.0356813175429926 0.0335851071946288 0.0352483405813687 0.00170499219411887 0.00312886305251534 3170742 2013341 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv deleted file mode 100644 index 158387b..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 229 232 0.237023177375661 0.940666985847833 0.235828183413443 1 0.00888696825950806 0.162457865790493 22414572 53077732 1443 861 80 True 228 234 32 {X=0,Y=0,Width=0,Height=0} -2 281 234 0.231968708324854 0.244696213898166 0.231769283588922 0.233157854581521 0.00508516653128746 0.0349779934324558 21936586 9252868 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} -3 334 234 0.230401153129466 0.230464862003039 0.230365453574426 0.230289158464942 0.00383246772641037 0.00384215232490161 21788347 8714728 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} -4 387 234 0.230578540580829 0.230788818707085 0.23057907988098 0.230701152056153 0.00380075584633658 0.00354451659704764 21805122 8726978 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} -5 440 234 0.230931242879057 0.230708979907941 0.230869001297017 0.23076218814374 0.00461557897273654 0.00489786357149815 21838476 8723959 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.230870788389671 0.23117008269094 0.231052109559777 0.231403067063401 0.00581791794270854 0.00565528706323524 21832759 8741395 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} -7 546 235 0.230594476371542 0.230842185615555 0.230655374990463 0.231143663691157 0.00548578165127618 0.00527410635008516 21806629 8728996 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} -8 599 235 0.23110851401078 0.231413989032281 0.231158922713054 0.231387808041505 0.00449881870353299 0.00438621294863495 21855240 8750618 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} -9 652 235 0.232570281780627 0.231046767579841 0.232227054245823 0.231219958800641 0.0049426254035586 0.00378725587427508 21993475 8736732 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} -10 703 234 0.234928556741329 0.930466728464819 0.234729533836881 1 0.00477057735541999 0.175746725538948 22216490 52502176 1443 861 79 True 705 235 32 {X=0,Y=0,Width=0,Height=0} -11 228 286 0.230707190102933 0.231214749047931 0.230685893034257 0.231189440756847 0.00512306165673354 0.00493638070522819 21817288 8743084 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} -12 281 286 0.231043036627839 0.231028916904312 0.231052109559777 0.231113145647364 0.00400827861495283 0.00389685579999554 21849048 8736057 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} -13 334 287 0.286606972484748 0.231050179042276 0.231891355764096 0.230884260318914 0.139876450822765 0.00339090949930705 27103563 8736861 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} -14 387 287 0.233955923633195 0.23080912880902 0.231265735866331 0.230960555428397 0.0169002027089624 0.00356796054626891 22124511 8727746 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} -15 440 287 0.231622826587349 0.231139062183688 0.231509880216678 0.231219958800641 0.00398855133317693 0.00374946030334313 21903877 8740222 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} -16 493 287 0.23196207810536 0.231798426469563 0.232120241092546 0.231921873807889 0.00513663218524227 0.00553574540951862 21935959 8765155 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.23177812388158 0.231460982588451 0.231799801632715 0.231403067063401 0.00483668508511665 0.00475996858148897 21918563 8752395 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.231389531687083 0.232140762758043 0.231235217822538 0.232211795223926 0.00424030377606047 0.00449475202432267 21881815 8778100 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.231391784058298 0.231770526524848 0.231280994888228 0.231662470435645 0.00368684456759468 0.00325587045206721 21882028 8764100 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.231642791267419 0.230774432384881 0.231509880216678 0.230731670099947 0.00367069096575156 0.0032716304266637 21905765 8726434 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} -21 228 339 0.230242968993255 0.2302483795884 0.230197604333562 0.230365453574426 0.00509501163723867 0.00491362182846114 21773388 8706542 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} -22 281 339 0.231283321281032 0.230996362561236 0.231189440756847 0.231158922713054 0.00393366629056303 0.00382582917600323 21871771 8734826 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} -23 334 339 0.252449572660147 0.231703460875749 0.232547493705653 0.231586175326162 0.0633721569043612 0.00367817615188697 23873400 8761564 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} -24 387 339 0.233404399346262 0.231120127244904 0.232211795223926 0.231265735866331 0.00955680033360269 0.00402911783896385 22072355 8739506 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} -25 440 339 0.232409337696589 0.232822341217911 0.232455939574273 0.232730601968414 0.00416703707564174 0.00392221046428255 21978255 8803873 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} -26 493 339 0.232433944587756 0.23261945176212 0.232440680552377 0.232486457618067 0.00445869256176884 0.00473952634597108 21980582 8796201 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} -27 546 339 0.232349337911251 0.232254954190539 0.232410162508583 0.232211795223926 0.00427861704668112 0.0042851392751355 21972581 8782418 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} -28 599 340 0.231925987293348 0.231980080232836 0.231876096742199 0.232166018158236 0.00413983760460924 0.00417462535049625 21932546 8772024 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.232004513625022 0.231712954790586 0.231815060654612 0.231784542610819 0.00395758648063118 0.00362561636966093 21939972 8761923 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.231395294796531 0.232387604543804 0.231403067063401 0.231921873807889 0.00352396193343577 0.00608536633670333 21882360 8787434 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} -31 227 391 0.230596897934962 0.230452961552686 0.230640115968566 0.230487525749599 0.00523777586515266 0.00556170453227779 21806858 8714278 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} -32 280 391 0.231214639820728 0.231507076999484 0.231311512932021 0.231677729457542 0.00443090487490399 0.00419778320364926 21865276 8754138 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} -33 333 391 0.231762357283071 0.231773435523823 0.231616693369955 0.231937132829786 0.00415386387906354 0.00448596085161301 21917072 8764210 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} -34 387 392 0.232555435164728 0.234432736605084 0.232486457618067 0.234164950026703 0.00425616534394694 0.00498880901641911 21992071 8864768 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} -35 440 392 0.23359142017874 0.233860113379557 0.233615625238422 0.233600366216526 0.00408932123680821 0.00544592852958948 22090041 8843115 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} -36 493 392 0.232838356253325 0.232641745272447 0.233020523384451 0.232486457618067 0.00448790979164591 0.00475946956739956 22018826 8797044 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} -37 546 392 0.232744930433189 0.232838896066623 0.232776379034104 0.232913710231174 0.00390592648029428 0.00375391313021758 22009991 8804499 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} -38 599 392 0.232462738985971 0.232464322780411 0.232394903486687 0.232486457618067 0.00403322717021419 0.0038688153907266 21983305 8790335 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.232271075942397 0.232478523984498 0.232181277180133 0.23260852979324 0.00385242030156097 0.00366602425814606 21965180 8790872 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.231495329687136 0.231168469518782 0.231418326085298 0.231128404669261 0.00353479492836003 0.00377988545944731 21891820 8741334 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} -41 227 444 0.231269669585074 0.231085430820765 0.231387808041505 0.231296253910124 0.00603762228001122 0.0061933973244588 21870480 8738194 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} -42 280 444 0.231480990647848 0.231363769131792 0.231479362172885 0.231280994888228 0.00503069520442491 0.00526807096812296 21890464 8748719 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} -43 333 444 0.232239193786459 0.232562567609434 0.232272831311513 0.23247119859617 0.00431645337604405 0.00432287340679896 21962165 8794050 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} -44 386 444 0.233498184699833 0.23331126460929 0.233493553063249 0.232913710231174 0.00466130287131014 0.00499676451758899 22081224 8822361 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.233436376672815 0.233688932012595 0.233417257953765 0.233371480888075 0.00508330501053987 0.00514017783582427 22075379 8836642 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.233634046039631 0.248054362315029 0.233447775997559 0.234607461661707 0.00517912513097115 0.0608396761293599 22094072 9379852 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.236156892142243 0.24118484057165 0.233752956435492 0.234607461661707 0.0160320198393582 0.0237705077225505 22332650 9120090 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} -48 599 444 0.233185157973439 0.233007036207385 0.233157854581521 0.233234149691005 0.00458202915062017 0.00466173354950737 22051622 8810857 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} -49 652 445 0.232746389715948 0.232387921889146 0.232669565880827 0.232272831311513 0.00436319927719673 0.0042658679874188 22010129 8787446 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.231599160827817 0.231355015689422 0.231555657282368 0.231174181734951 0.0047965065919258 0.00508858757845404 21901639 8748388 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} -51 227 496 0.231146592831189 0.23080685450073 0.230930037384604 0.230914778362707 0.0055685946359915 0.00577702608544779 21858841 8727660 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} -52 280 496 0.231515347239769 0.232007081032414 0.231525139238575 0.232120241092546 0.00445789567513797 0.00423738180553705 21893713 8773045 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} -53 333 496 0.232682509084432 0.233097717639072 0.232745860990311 0.232959487296864 0.00384649811513261 0.00400261917082173 22004088 8814286 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} -54 386 496 0.233896632340212 0.234554650107587 0.233966582742046 0.234546425574121 0.00414255233744059 0.00464169766253441 22118904 8869378 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} -55 439 497 0.233723157458566 0.233564532638241 0.233798733501183 0.233524071107042 0.00537110443127672 0.0052286151826212 22102499 8831938 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.233906984788193 0.234380982868773 0.233875028610666 0.234515907530327 0.00596492836332403 0.00621080538013071 22119883 8862811 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.233916216337823 0.234158259329061 0.233768215457389 0.23408865491722 0.0049212179271914 0.00487138216633817 22120756 8854389 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.23331276061878 0.233407658257147 0.233218890669108 0.233371480888075 0.00564633116353238 0.00516526166103613 22063689 8826006 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.232234625596951 0.23234894130288 0.23228809033341 0.232318608377203 0.00449102666737085 0.00460308480255753 21961733 8785972 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} -60 704 497 0.231328485024983 0.231195205863907 0.231235217822538 0.231311512932021 0.00440706654489665 0.00415857000478581 21876042 8742345 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} -61 227 548 0.231606256325872 0.231016672663171 0.231631952391852 0.230930037384604 0.0051497682909089 0.00534542093493354 21902310 8735594 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} -62 280 549 0.232193596487485 0.232022551617873 0.232089723048753 0.232059205004959 0.00406384025229967 0.00398432976577302 21957853 8773630 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} -63 333 549 0.233141527533837 0.232940658139862 0.233173113603418 0.232959487296864 0.00380297932631004 0.00386898991664995 22047496 8808347 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} -64 386 549 0.233867531281127 0.23363270899604 0.233875028610666 0.233508812085145 0.00351181525916145 0.00336398872426378 22116152 8834516 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} -65 439 549 0.23376433461121 0.233706253779219 0.233707179369802 0.233783474479286 0.00463630155693842 0.00429274301346544 22106393 8837297 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} -66 492 549 0.233848687499408 0.23415643459334 0.233737697413596 0.233813992523079 0.00591131254838382 0.00632142924615788 22114370 8854320 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.233735148956023 0.23382679211857 0.233661402304112 0.233661402304112 0.00478568907196811 0.00522634764058267 22103633 8841855 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} -68 598 549 0.232824937196647 0.232770534590708 0.232745860990311 0.232883192187381 0.0042142123892585 0.0045274001427031 22017557 8801914 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} -69 651 549 0.231865818315807 0.232327150256012 0.231891355764096 0.232135500114443 0.00385358489930697 0.00377711606184018 21926856 8785148 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.231726298194598 0.231271315855274 0.231662470435645 0.231448844129091 0.00374163307064042 0.00388912481857191 21913662 8745223 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} -71 227 601 0.232183867935756 0.231717609188946 0.232303349355306 0.231601434348058 0.00504168402668869 0.00500670866239736 21956933 8762099 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} -72 280 601 0.232473239477131 0.232372186849235 0.232532234683757 0.2323338673991 0.00386857033553054 0.0038240429253031 21984298 8786851 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} -73 333 601 0.232865860560985 0.232534852782834 0.232867933165484 0.232623788815137 0.00369880116626001 0.00340168521780603 22021427 8793002 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} -74 386 601 0.233456499970576 0.233571672908453 0.233569848172732 0.233737697413596 0.00391491874573059 0.00383178812955558 22077282 8832208 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} -75 439 601 0.234070033200269 0.233429634422132 0.23399710078584 0.233417257953765 0.0044685780250449 0.00417178110119421 22135302 8826837 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} -76 492 602 0.23381753498485 0.234098360395619 0.233890287632563 0.233798733501183 0.00542073713038535 0.00549834190970762 22111424 8852124 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} -77 545 602 0.23340504439154 0.233111865952269 0.233310444800488 0.232837415121691 0.00456775024538956 0.00418360981926113 22072416 8814821 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.23223169645692 0.232146131183424 0.232120241092546 0.232059205004959 0.00409179079189194 0.00400474845846709 21961456 8778303 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.231689964168792 0.232054286152147 0.231708247501335 0.232013427939269 0.00340218455842259 0.00370579390616967 21910226 8774830 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} -80 704 602 0.2312097226723 0.231618068533107 0.231280994888228 0.231586175326162 0.00346996370428749 0.00344417112275337 21864811 8758335 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} -81 228 656 0.240274829471442 0.922103862898486 0.239154650186923 1 0.00835027179205036 0.187447649100312 22722071 52030296 1443 861 78 True 227 653 32 {X=0,Y=0,Width=0,Height=0} -82 280 653 0.234051707569675 0.233603645451734 0.233401998931868 0.233401998931868 0.00509379629806353 0.0038139067640339 22133569 8833417 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} -83 333 654 0.232571667041798 0.232497908495851 0.232501716639963 0.232410162508583 0.00355035391315398 0.00333696506561159 21993606 8791605 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} -84 386 654 0.232770161220608 0.232134786087421 0.23270008392462 0.231921873807889 0.00399594376773004 0.00385877549016591 22012377 8777874 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} -85 439 654 0.23319008569638 0.232822790790479 0.233218890669108 0.232761120012207 0.00434648718680467 0.00446604016350643 22052088 8803890 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} -86 492 654 0.233006395835419 0.233566568937524 0.232913710231174 0.233432516975662 0.00453334648130566 0.00462982062829649 22034717 8832015 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} -87 545 654 0.23272801121279 0.232463688089725 0.23270008392462 0.23237964446479 0.00378133833634873 0.00378243306974758 22008391 8790311 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} -88 598 654 0.23154785329196 0.231339968231087 0.231494621194781 0.231311512932021 0.00358755716126289 0.00348055544539695 21896787 8747819 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} -89 651 654 0.232460973042342 0.232119394838299 0.232120241092546 0.232074464026856 0.00433927224923662 0.00375526538636448 21983138 8777292 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} -90 704 654 0.231639914999952 0.231169606672926 0.231525139238575 0.23099107347219 0.00374384773772327 0.00345104550648125 21905493 8741377 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} -91 229 711 0.239303222091045 0.977852008471304 0.238559548332952 1 0.00801812889203738 0.0917107352218146 22630189 47998565 1443 749 91 True 227 706 31 {X=0,Y=0,Width=0,Height=0} -92 280 706 0.233739019227689 0.23257949269438 0.233173113603418 0.232623788815137 0.00509047419256219 0.00375916301650357 22103999 8794690 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} -93 333 706 0.231870587421057 0.231664903416606 0.231921873807889 0.231631952391852 0.0041351603987349 0.00442974048853074 21927307 8760106 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} -94 386 706 0.231876942703219 0.231800489214291 0.232059205004959 0.231891355764096 0.00447003370395203 0.00449072978918462 21927908 8765233 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} -95 439 706 0.232448283627043 0.232302159310271 0.23247119859617 0.232364385442893 0.00446354346076099 0.00458684455286169 21981938 8784203 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} -96 492 706 0.232143980873667 0.232288883696766 0.232043945983062 0.232043945983062 0.00477516400854864 0.00467141811747411 21953161 8783701 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} -97 545 706 0.231840524081311 0.232016231156463 0.231845578698405 0.232120241092546 0.00412873343673616 0.00406849456973808 21924464 8773391 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} -98 598 707 0.231752723901957 0.231347346510305 0.231708247501335 0.231296253910124 0.00373513787657557 0.00376664320432668 21916161 8748098 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} -99 651 707 0.231824397949369 0.231444110394395 0.231738765545129 0.231280994888228 0.00425965907564065 0.00373491210211166 21922939 8751757 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} -100 705 710 0.235139761484463 0.985116871578625 0.235004196231022 1 0.00567522785335099 0.0513385375574648 22236463 48355166 1443 749 87 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv deleted file mode 100644 index a1b3c3d..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 229 232 0.0238141728185216 0.159902391882697 0.0237888151369497 0.176958876935988 0.00220995918235332 0.0429990933943107 2252035 9022594 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} -2 281 234 0.0233888447667344 0.0247428345735586 0.0234073395895323 0.0239719233997101 0.00168065999110218 0.00394616115408048 2211813 935618 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} -3 334 234 0.0233336035121341 0.023589786716162 0.0233157854581521 0.0235904478522927 0.00148436077386058 0.0014953962779194 2206589 892017 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} -4 387 234 0.0231460539540192 0.0233554536259945 0.0231326771953918 0.0233615625238422 0.00154454579109003 0.00142305507693066 2188853 883156 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} -5 440 234 0.0232749466899158 0.0230629934472154 0.0231937132829786 0.0229037918669413 0.00189081930371216 0.00190293021221039 2201042 872097 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.0232826237861715 0.0231809665783785 0.023270008392462 0.0231631952391852 0.00236098730209202 0.00237586339251919 2201768 876558 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} -7 546 235 0.0232005549927271 0.0232914027576517 0.0231631952391852 0.0232547493705653 0.00215241638174653 0.00219658544337458 2194007 880734 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} -8 599 235 0.0232675974035553 0.0231328094226179 0.0232547493705653 0.0231021591515984 0.00187417894416529 0.00172882774077842 2200347 874737 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} -9 652 235 0.0234559294756136 0.0233513545819841 0.0233615625238422 0.0233768215457389 0.00154449297723115 0.00140734168432036 2218157 883001 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} -10 703 234 0.0237214554907391 0.154132106798621 0.0237430380712596 0.171908140688182 0.00154940024824856 0.0424893773836577 2243267 8697002 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} -11 228 286 0.0233362894383723 0.0232308955789695 0.0233768215457389 0.023224231326772 0.00206446327046951 0.00202253556834223 2206843 878446 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} -12 281 286 0.0233370085052392 0.0231263038430918 0.0232852674143587 0.0231021591515984 0.00160385294412105 0.00155284993644816 2206911 874491 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} -13 334 287 0.0290161774712015 0.0235524193020545 0.0236667429617761 0.0236209658960861 0.014583256433458 0.00137959429329807 2743973 890604 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} -14 387 287 0.0235461089203364 0.023232693869245 0.0233157854581521 0.0233005264362554 0.00227457549986305 0.00146091468946665 2226685 878514 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} -15 440 287 0.0232865257813759 0.0234417715592195 0.0233310444800488 0.0234531166552224 0.00163006047339698 0.00147500945510494 2202137 886420 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} -16 493 287 0.0233648829208454 0.0232634499220454 0.0233157854581521 0.0232089723048753 0.001981825093371 0.00202681164688661 2209547 879677 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.0232524969993498 0.0233294841987804 0.0232547493705653 0.0232852674143587 0.00190981080014623 0.00193958879579861 2198919 882174 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.0232526238935028 0.0234074982622037 0.0232394903486687 0.0233615625238422 0.00175911093798429 0.00182951417483827 2198931 885124 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.0232473472116411 0.0232533477619683 0.023270008392462 0.023270008392462 0.00140536388484328 0.00132927295526361 2198432 879295 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.0232995430065698 0.0232040534520628 0.023270008392462 0.0232089723048753 0.00143092813270972 0.00137553658764415 2203368 877431 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} -21 228 339 0.0232460782701112 0.0231180793096258 0.023270008392462 0.0230563820859083 0.00194577654578061 0.00201060794363407 2198312 874180 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} -22 281 339 0.0232237343246728 0.0231432553734831 0.0231937132829786 0.0230563820859083 0.00166546991893851 0.00152189344099799 2196199 875132 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} -23 334 339 0.0253587495977059 0.0234625576791689 0.0235141527428092 0.0234836346990158 0.0067825091868474 0.00148322732047556 2398101 887206 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} -24 387 339 0.0234494367247858 0.0233641541774746 0.0233615625238422 0.0233768215457389 0.00189332757891346 0.001585888421549 2217543 883485 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} -25 440 339 0.023454142382959 0.0232949464473123 0.0234073395895323 0.0233157854581521 0.00172584040640952 0.00162694111787611 2217988 880868 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} -26 493 339 0.0233256832020851 0.0233552156169874 0.0233005264362554 0.0232089723048753 0.00181832057804605 0.00189501123265224 2205840 883147 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} -27 546 339 0.0233040265999753 0.0232667291572537 0.023270008392462 0.023270008392462 0.00170981784641402 0.00162419874893169 2203792 879801 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} -28 599 340 0.0234262996908911 0.0234668153958506 0.0233615625238422 0.0233768215457389 0.00172235967536597 0.00169541738509489 2215355 887367 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.023408238423116 0.023208020268847 0.0233615625238422 0.023224231326772 0.00146102659737706 0.00151456732368956 2213647 877581 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.0233989962989734 0.0235904742977379 0.0233920805676356 0.0235904478522927 0.00141904597544321 0.00146942044808492 2212773 892043 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} -31 227 391 0.0232357469711555 0.0232537973345371 0.0232089723048753 0.023270008392462 0.00210663459311409 0.00210906511684201 2197335 879312 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} -32 280 391 0.0232864200362484 0.0232638994946143 0.0232852674143587 0.023224231326772 0.00186822857308888 0.00160627497463141 2202127 879694 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} -33 333 391 0.0233993981304579 0.0235000044296121 0.0233615625238422 0.0233768215457389 0.00174808625807489 0.00170469190250832 2212811 888622 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} -34 387 392 0.0234311639667556 0.0237418480262244 0.0234531166552224 0.0237430380712596 0.00166944060328499 0.00172554452644876 2215815 897767 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} -35 440 392 0.0235198947032319 0.0235405981880374 0.0234988937209125 0.0234378576333257 0.00162322016763373 0.00157888898779964 2224206 890157 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} -36 493 392 0.0235569900939551 0.0234276761369128 0.0235446707866026 0.0234531166552224 0.00177509698036671 0.00183302623004644 2227714 885887 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} -37 546 392 0.0233382034251799 0.0235389056795428 0.0233310444800488 0.0234378576333257 0.00158024643332205 0.00148125511764819 2207024 890093 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} -38 599 392 0.0233409105004436 0.023432912335068 0.0233920805676356 0.0234073395895323 0.00155934153909344 0.00143924790683558 2207280 886085 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.0232393423054902 0.0233221852558974 0.0232089723048753 0.0233157854581521 0.00153395184127729 0.00157704103854512 2197675 881898 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.023317096697733 0.0230102612294302 0.0233157854581521 0.0229495689326314 0.00142909027670969 0.00146249631337166 2205028 870103 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} -41 227 444 0.0233469062491722 0.0230822457313415 0.0233005264362554 0.0231174181734951 0.00244745718332752 0.00242095156465157 2207847 872825 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} -42 280 444 0.0232588628560247 0.0233278445811762 0.0232852674143587 0.0232394903486687 0.00211331426796915 0.00201905494857875 2199521 882112 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} -43 333 444 0.0235290416567597 0.0234289455182838 0.0235141527428092 0.0234378576333257 0.00170885523377238 0.00174231141319692 2225071 885935 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} -44 386 444 0.0236084773965296 0.0235079380631806 0.023575188830396 0.0236209658960861 0.00192437776206326 0.00196496595670591 2232583 888922 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.0235093413395084 0.0236352993273998 0.0235141527428092 0.0236209658960861 0.00200953502809613 0.00193975147477366 2223208 893738 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.0235787418666796 0.0248035797612479 0.023575188830396 0.0234988937209125 0.00204367267562551 0.0066707358465973 2229771 937915 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.0238357553990422 0.0242832127354917 0.0236514839398795 0.0238040741588464 0.00247435348106068 0.00307137042680766 2254076 918238 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} -48 599 444 0.0234674556945099 0.0235195476136357 0.0234531166552224 0.0235294117647059 0.00180372009213309 0.00189705393827254 2219247 889361 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} -49 652 445 0.0235568103272383 0.0234063082171684 0.0235294117647059 0.0233920805676356 0.00177309187280138 0.00161830314747354 2227697 885079 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.0233529019979009 0.0233226612739115 0.0233920805676356 0.0232089723048753 0.0018734629386951 0.00183528053040559 2208414 881916 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} -51 227 496 0.023310106944806 0.0232899218127189 0.0233157854581521 0.023224231326772 0.0021446325295881 0.00236238462200609 2204367 880678 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} -52 280 496 0.0233582527013518 0.0234273323461249 0.0233920805676356 0.0233463035019455 0.0017983085188394 0.00167115090115992 2208920 885874 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} -53 333 496 0.0234970114576432 0.0237699066436115 0.0234836346990158 0.0238651102464332 0.00159792438484721 0.00152140393205604 2222042 898828 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} -54 386 496 0.0235035782300603 0.0235429253872175 0.0235294117647059 0.0235446707866026 0.00163897708519069 0.00153152845892681 2222663 890245 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} -55 439 497 0.0236623333899599 0.0234802232365814 0.0236362249179828 0.0234378576333257 0.00221148542216312 0.00216104361939066 2237676 887874 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.023484427787472 0.0236050986289491 0.023422598611429 0.0237125200274662 0.00230735849954769 0.00230729329134399 2220852 892596 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.0235214914546569 0.0235860050174943 0.023422598611429 0.0235599298084993 0.00197660968399125 0.00176127559399484 2224357 891874 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.0234521015019985 0.023431748735478 0.0234836346990158 0.0234073395895323 0.00200073762412589 0.00205039120243358 2217795 886041 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.0234692745107028 0.0235309456005291 0.0234073395895323 0.0235141527428092 0.00176804016501263 0.0018341345518723 2219419 889792 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} -60 704 497 0.0233295111757002 0.0233424689123874 0.0233005264362554 0.0232852674143587 0.00178902533554713 0.00172957608959286 2206202 882665 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} -61 227 548 0.0233820559295496 0.0232837600239807 0.0233463035019455 0.0232394903486687 0.00196630452186444 0.00207457695688701 2211171 880445 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} -62 280 549 0.0232443757735587 0.0233910491952717 0.0232394903486687 0.0233310444800488 0.00158587976544157 0.00140757142336592 2198151 884502 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} -63 333 549 0.0233661518623753 0.0235805308103321 0.0233463035019455 0.0236362249179828 0.00141419280373334 0.00136820869672852 2209667 891667 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} -64 386 549 0.0234723411193999 0.0237710437977563 0.0234836346990158 0.0238345922026398 0.00143812614522109 0.00156225392025131 2219709 898871 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} -65 439 549 0.0236118506660965 0.0234648319874585 0.0236362249179828 0.023422598611429 0.00184287064889222 0.0016594753290783 2232902 887292 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} -66 492 549 0.0235294011901931 0.0237446512434186 0.0234531166552224 0.0235599298084993 0.00230997342617792 0.00254531742306059 2225105 897873 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.0235084213568993 0.0235204203133283 0.0234683756771191 0.0233920805676356 0.0018717790890964 0.00198822129888144 2223121 889394 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} -68 598 549 0.0234163596489071 0.0232172497292317 0.0233768215457389 0.0231174181734951 0.00168815196173366 0.00172661195706673 2214415 877930 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} -69 651 549 0.0233404663709081 0.0234391799055871 0.0234073395895323 0.0233768215457389 0.00151012759044786 0.001576555454517 2207238 886322 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.0233280201694026 0.023393746630685 0.0233310444800488 0.0234378576333257 0.00153585489036494 0.00162317341758518 2206061 884604 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} -71 227 601 0.0234301065154807 0.0233327105430982 0.023422598611429 0.0232089723048753 0.00194613171439323 0.00186801544208025 2215715 882296 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} -72 280 601 0.0234444455547683 0.023298622364199 0.0233920805676356 0.0233920805676356 0.00160317303089753 0.00147977584143657 2217071 881007 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} -73 333 601 0.0234268284165286 0.0234315636173614 0.0234073395895323 0.0234683756771191 0.00139877059746137 0.00140885511670226 2215405 886034 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} -74 386 601 0.0233943963859276 0.023456660344883 0.0234683756771191 0.023422598611429 0.00162895571642703 0.00163515168160438 2212338 886983 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} -75 439 601 0.0234832328675313 0.0236578572921795 0.0234988937209125 0.0235904478522927 0.00181691129952142 0.00169317398034239 2220739 894591 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} -76 492 602 0.0236210293431626 0.0234603627072149 0.0236209658960861 0.0233310444800488 0.00216388794125222 0.00219494607453383 2233770 887123 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} -77 545 602 0.0235363697940947 0.0236740154592139 0.0235294117647059 0.0237430380712596 0.00179786740515307 0.001664747479838 2225764 895202 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.0234835078048628 0.023554455601337 0.0234836346990158 0.0235446707866026 0.00152050460646026 0.00163180849901812 2220765 890681 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.0232944566659376 0.0234966194126229 0.0232547493705653 0.0235446707866026 0.00148550674335217 0.00148651279890561 2202887 888494 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} -80 704 602 0.0233556936692666 0.0231477775446171 0.0233615625238422 0.0231937132829786 0.00149658352348063 0.00138906536723108 2208678 875303 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} -81 228 656 0.0243507764679658 0.160512522366828 0.0243533989471275 0.180422674906538 0.00195189526040961 0.0493589839855304 2302780 9057021 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} -82 280 653 0.0235232891218243 0.0232720182462994 0.0234988937209125 0.0233310444800488 0.001614883904585 0.0016175219330643 2224527 880001 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} -83 333 654 0.0235673319674235 0.0235589777724711 0.0235599298084993 0.0235446707866026 0.0014591618560153 0.00131379250692973 2228692 890852 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} -84 386 654 0.023447194928083 0.023545067468281 0.0233615625238422 0.0235141527428092 0.00158153744153714 0.00154419521090506 2217331 890326 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} -85 439 654 0.0234605716867104 0.02338041812629 0.0233768215457389 0.0234073395895323 0.00168894968090525 0.00173964424275718 2218596 884100 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} -86 492 654 0.0234147100249183 0.0234085031891224 0.0233920805676356 0.0233463035019455 0.00186985598446697 0.00180543031873596 2214259 885162 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} -87 545 654 0.0232893280272543 0.0235167443964416 0.0232852674143587 0.0235294117647059 0.0014588921986067 0.00149338555250168 2202402 889255 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} -88 598 654 0.0234822071397947 0.0233471233107476 0.0234683756771191 0.0233463035019455 0.00143186316606726 0.0014000491652734 2220642 882841 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} -89 651 654 0.0233808081370453 0.0235243342392221 0.0233615625238422 0.0235141527428092 0.00147281181478856 0.00146860090749171 2211053 889542 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} -90 704 654 0.0233820453550369 0.0233368095871086 0.0233463035019455 0.0233005264362554 0.00142083343442451 0.00135493901348606 2211170 882451 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} -91 229 711 0.0240266147796475 0.17606635657645 0.0239566643778134 0.18304722667277 0.00216736771133182 0.0323183347474052 2272125 8642343 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} -92 280 706 0.0234887950612373 0.0232892606765882 0.0234378576333257 0.0233005264362554 0.00170510460602687 0.00156458826589566 2221265 880653 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} -93 333 706 0.0233766206299967 0.0233990621651759 0.0233920805676356 0.0233920805676356 0.00158538706930401 0.00175540464741064 2210657 884805 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} -94 386 706 0.0232575833399821 0.0234771555649349 0.0232089723048753 0.023422598611429 0.00170626341393957 0.00176781356575253 2199400 887758 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} -95 439 706 0.0235091827218172 0.0235080702904067 0.0235599298084993 0.0235294117647059 0.00175657103394593 0.0017213164435345 2223193 888927 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} -96 492 706 0.0233985838929762 0.0233171341758588 0.0233157854581521 0.023270008392462 0.00189154576657286 0.00179640408737606 2212734 881707 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} -97 545 706 0.0233031489154172 0.0233008966724886 0.0233157854581521 0.0233157854581521 0.00164737255429896 0.00172122938987139 2203709 881093 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} -98 598 707 0.0233281787870939 0.023244276974255 0.0233463035019455 0.0232089723048753 0.00151429812076153 0.00156561736358522 2206076 878952 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} -99 651 707 0.0233110692254661 0.0232820939609313 0.0233005264362554 0.0232547493705653 0.00165270310922317 0.00164458353850388 2204458 880382 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} -100 705 710 0.0237638169888113 0.168703460874513 0.0237430380712596 0.173708705271992 0.00171963967780093 0.0235043679465381 2247273 8280930 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv deleted file mode 100644 index 4678e81..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 229 232 0.326318476513029 0.394902742343972 0.32628366521706 0.407644769970245 0.00632961709947196 0.0355972493063294 30858961 22282638 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} -2 281 234 0.326222110978348 0.330032703759842 0.326222629129473 0.327748531319142 0.00508330876664428 0.0100911829070593 30849848 12479756 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} -3 334 234 0.325088428041049 0.325368599921272 0.325123979552911 0.325062943465324 0.00441759207584162 0.00449216849523229 30742639 12303389 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} -4 387 234 0.324941072205893 0.325805134885655 0.324879835202564 0.325841153582055 0.00400792207125807 0.00371376695444855 30728704 12319896 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} -5 440 234 0.325373781267578 0.32576287506418 0.325185015640497 0.325703822384985 0.00484884651564224 0.00409077905188053 30769624 12318298 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.325299463591979 0.324896442942167 0.325261310749981 0.32466620889601 0.00627539300198203 0.00610147465110893 30762596 12285535 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} -7 546 235 0.325311804048357 0.325305183743615 0.325398641947051 0.325398641947051 0.00665810112041126 0.00650807560536535 30763763 12300991 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} -8 599 235 0.325095058260542 0.324316362101085 0.324971389333944 0.324147402151522 0.00590362955891243 0.00620697251808928 30743266 12263600 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} -9 652 235 0.325595772013717 0.325053872677611 0.325413900968948 0.324910353246357 0.00476552184908546 0.00447279392945002 30790617 12291488 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} -10 703 234 0.324480086897116 0.384183713661353 0.324391546501869 0.393102922102693 0.00453770558958953 0.0283535571842337 30685110 21677810 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} -11 228 286 0.325458123581264 0.326066310102729 0.325093461509117 0.326024261844816 0.00514775623927425 0.00478698030886405 30777600 12329772 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} -12 281 286 0.326142728111142 0.326328781146619 0.326222629129473 0.326131074998093 0.0046938255471587 0.00506409617525793 30842341 12339697 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} -13 334 287 0.344026798776169 0.325603567702125 0.327183947508965 0.325383382925155 0.0448626530440372 0.00405179426592223 32533584 12312274 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} -14 387 287 0.326755880658376 0.325553030456294 0.325841153582055 0.325398641947051 0.00783404247722717 0.00416026906879481 30900325 12310363 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} -15 440 287 0.325623699301887 0.325426224546424 0.325581750209812 0.325551232166018 0.0043418912346313 0.00418785313867418 30793258 12305568 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} -16 493 287 0.325754231087259 0.325789108945846 0.325871671625849 0.325505455100328 0.00529540850593983 0.00546969708212036 30805602 12319290 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.325998946461295 0.325374655928229 0.326009002822919 0.325337605859464 0.00552086103131343 0.0053022640281498 30828744 12303618 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.325747199036281 0.32549236460494 0.325688563363088 0.325169756618601 0.00584910016833802 0.00642494746863369 30804937 12308069 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.325419071905682 0.325794371589447 0.325352864881361 0.325673304341192 0.00459041973517184 0.00448472890250169 30773907 12319489 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.324759306906251 0.325598622403867 0.3247119859617 0.325337605859464 0.00451375589173635 0.00432411147386714 30711515 12312087 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} -21 228 339 0.325988953546747 0.326095029856247 0.325795376516365 0.326176852063783 0.00610683557468153 0.00630673290089813 30827799 12330858 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} -22 281 339 0.326453248678014 0.326777084334128 0.326359960326543 0.327061875333791 0.00546957466500392 0.00528967750195145 30871706 12356649 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} -23 334 339 0.333728672066965 0.32715160472945 0.327763790341039 0.327260242618448 0.0217939281770675 0.00573698438026503 31559721 12370811 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} -24 387 339 0.32714603788076 0.32588862315624 0.32669565880827 0.325871671625849 0.0058069405717288 0.00437016803444539 30937221 12323053 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} -25 440 339 0.326639550443625 0.325746452442693 0.326497291523613 0.326009002822919 0.00419132589731892 0.00375705843732538 30889324 12317677 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} -26 493 339 0.326441637863016 0.325882011794933 0.32642099641413 0.325703822384985 0.00480441843527763 0.00485125014366466 30870608 12322803 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} -27 546 339 0.326606896348256 0.325863605765054 0.326588845654994 0.325856412603952 0.00518746615102216 0.00547623761178471 30886236 12322107 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} -28 599 340 0.325797681760145 0.326480974683908 0.325795376516365 0.32664988174258 0.00514098459157799 0.00514946105011474 30809711 12345452 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.325820543856708 0.325931544113846 0.325749599450675 0.325764858472572 0.00478813980006012 0.00459153580511378 30811873 12324676 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.325291099152395 0.324884859837157 0.325261310749981 0.32480354009308 0.00420233458850952 0.00471437343515581 30761805 12285097 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} -31 227 391 0.326201131145054 0.326474521995272 0.326207370107576 0.326192111085679 0.00701734199753463 0.00666814461634131 30847864 12345208 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} -32 280 391 0.326186231656591 0.326895639265086 0.326253147173266 0.326863508049134 0.00633530677679299 0.0060736440689601 30846455 12361132 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} -33 333 391 0.327021924824626 0.327100194783927 0.327016098268101 0.327000839246204 0.00542253478305987 0.00560006698727434 30925484 12368867 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} -34 387 392 0.327136700586003 0.327881155226962 0.327214465552758 0.328007934691386 0.00509523074882676 0.00504937544586764 30936338 12398398 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} -35 440 392 0.326948918388607 0.327179557565057 0.326863508049134 0.327168688487068 0.00451513825810655 0.00476420212922107 30918580 12371868 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} -36 493 392 0.326907349978991 0.327128094728643 0.326909285114824 0.326939803158618 0.00485450500666273 0.00444940156242689 30914649 12369922 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} -37 546 392 0.326622726393841 0.326269992921877 0.32651255054551 0.326207370107576 0.00532675220331061 0.00530708169781377 30887733 12337474 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} -38 599 392 0.325814727874696 0.32637000959573 0.325856412603952 0.32651255054551 0.00513266132186072 0.00554865934900084 30811323 12341256 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.325524415201687 0.326143134121117 0.325520714122225 0.326176852063783 0.00450064680546435 0.00458761401917859 30783869 12332677 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.325466424573772 0.325259115778027 0.325352864881361 0.325200274662394 0.00413387538557224 0.00406665400972473 30778385 12299249 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} -41 227 444 0.326468412529296 0.326875514281268 0.326268406195163 0.326314183260853 0.00626778624824883 0.00720036512984605 30873140 12360371 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} -42 280 444 0.327323816589095 0.327140100960776 0.327382314793622 0.327183947508965 0.00558669586110279 0.00481509153639834 30954033 12370376 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} -43 333 444 0.327335173615787 0.327353251249316 0.327321278706035 0.327199206530861 0.00480124470655154 0.00493468270350286 30955107 12378436 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} -44 386 444 0.327185269323058 0.327592265183289 0.327138170443275 0.327397573815518 0.0047713841225974 0.00492146272412084 30940931 12387474 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.326785637337251 0.327169032277856 0.326832990005341 0.327016098268101 0.00586362537327538 0.00593791166817094 30903139 12371470 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.32652105245376 0.332499640672513 0.32646677347982 0.327580682078279 0.00610058930610289 0.0242972883357595 30878118 12573040 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.327505497292634 0.32914038154695 0.327061875333791 0.327779049362936 0.0070738868662817 0.00834543692874493 30971214 12446014 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} -48 599 444 0.326226023548065 0.326095294310699 0.32628366521706 0.325993743801022 0.00580940906625942 0.00581030228996367 30850218 12330868 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} -49 652 445 0.325694347621562 0.325236452031466 0.325886930647745 0.325383382925155 0.00484282102058431 0.00535940505376413 30799939 12298392 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.325550608269766 0.324710028998753 0.325459678034638 0.324696726939803 0.00443809580829416 0.00427065369065926 30786346 12278486 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} -51 227 496 0.326109756780391 0.326641948109012 0.326009002822919 0.326756694895857 0.00581521542907064 0.00552869718976205 30839223 12351539 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} -52 280 496 0.326591013430107 0.326791417765442 0.3265583276112 0.326848249027237 0.00490446035995827 0.00460466296079895 30884734 12357191 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} -53 333 496 0.327336918410391 0.326871838364381 0.327534905012589 0.326787212939651 0.00421554148750956 0.00437334533667585 30955272 12360232 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} -54 386 496 0.326981699378129 0.327303269357834 0.326955062180514 0.327214465552758 0.00419707175841443 0.00449728714003015 30921680 12376546 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} -55 439 497 0.326651711133286 0.326898230918719 0.326634622720684 0.327122911421378 0.00556452469339068 0.00535062001198981 30890474 12361230 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.326291543229058 0.325471314030538 0.326359960326543 0.325261310749981 0.0069037074381645 0.00686749009634848 30856414 12307273 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.326465768901109 0.326216282222618 0.326359960326543 0.32646677347982 0.00571535939521846 0.00531631325311287 30872890 12335443 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.326535677004892 0.327327387603883 0.3265583276112 0.326985580224308 0.00563105470365675 0.0056952844961979 30879501 12377458 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.32561278640473 0.326289562551346 0.325520714122225 0.326253147173266 0.00533159936731006 0.00526004357579855 30792226 12338214 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} -60 704 497 0.325632148337573 0.325789346954853 0.325673304341192 0.325566491187915 0.00528517367858906 0.00526056963575629 30794057 12319299 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} -61 227 548 0.326392001100172 0.32593844637505 0.326314183260853 0.325749599450675 0.0057885269041742 0.00555490312946742 30865914 12324937 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} -62 280 549 0.326055414359374 0.326458892737142 0.326192111085679 0.326482032501717 0.00470242090019293 0.00420604537815149 30834084 12344617 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} -63 333 549 0.326809186777143 0.326697060416867 0.326802471961547 0.326665140764477 0.00419037747536099 0.00461350000478057 30905366 12353623 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} -64 386 549 0.326706730323119 0.326813843502995 0.326771953917754 0.326756694895857 0.00428780465229882 0.00433537212219795 30895677 12358039 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} -65 439 549 0.326663205628644 0.326883130569493 0.326543068589303 0.326817730983444 0.00525174981031461 0.0054397302403363 30891561 12360659 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} -66 492 549 0.326435049941573 0.326190127677287 0.32623788815137 0.326024261844816 0.00685436364687235 0.00704079028689624 30869985 12334454 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.326271652570577 0.325890527228296 0.32628366521706 0.325917448691539 0.00627480457909639 0.00655033708239558 30854533 12323125 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} -68 598 549 0.326227556852414 0.32706814290431 0.32623788815137 0.327351796749828 0.00559055902895425 0.00533543635427308 30850363 12367655 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} -69 651 549 0.326021967175549 0.326795225909555 0.325917448691539 0.326832990005341 0.00549526651490036 0.0053636132178164 30830921 12357335 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.3257565046075 0.325825630105706 0.325963225757229 0.325856412603952 0.00498955441896441 0.00528736738393846 30805817 12320671 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} -71 227 601 0.325321025023474 0.325727094376786 0.325307087815671 0.325566491187915 0.00527625842389792 0.00530124139920834 30764635 12316945 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} -72 280 601 0.325782866867783 0.325646329987059 0.325780117494469 0.325505455100328 0.00479056126386255 0.00439357934430166 30808310 12313891 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} -73 333 601 0.325870296939191 0.326335551180597 0.325871671625849 0.32660410467689 0.00452840000305871 0.00465470834771455 30816578 12339953 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} -74 386 601 0.326564471403107 0.327096016403581 0.326543068589303 0.326787212939651 0.00498014319406406 0.00539313704488077 30882224 12368709 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} -75 439 601 0.326450710794954 0.326131498125216 0.32660410467689 0.325963225757229 0.00540650790835376 0.00545490434369061 30871466 12332237 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} -76 492 602 0.326606283026517 0.32696439742268 0.326710917830167 0.326909285114824 0.00613100069276542 0.0058380110399202 30886178 12363732 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} -77 545 602 0.326460354750581 0.325788897382284 0.326543068589303 0.325810635538262 0.00535968375374457 0.00518414639700624 30872378 12319282 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.326319132132819 0.326121395965139 0.326314183260853 0.326131074998093 0.00498071973755345 0.00556617009849239 30859023 12331855 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.326437725293299 0.325972190763161 0.32642099641413 0.325886930647745 0.00447664233772476 0.00394812884038876 30870238 12326213 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} -80 704 602 0.3262530097046 0.325758088438594 0.326176852063783 0.325444419012741 0.00485522800919255 0.0046053410002852 30852770 12318117 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} -81 228 656 0.32491282768234 0.383676089777279 0.324925612268254 0.390051117723354 0.00589685519122499 0.0349917160328415 30726033 21649167 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} -82 280 653 0.325672151719302 0.325927735969733 0.325658045319295 0.325841153582055 0.00504193338963001 0.00459284793551208 30797840 12324532 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} -83 333 654 0.325254817999153 0.325222647509057 0.325215533684291 0.32503242542153 0.00508751127703267 0.00529212782592815 30758374 12297870 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} -84 386 654 0.325925210383897 0.325661853463408 0.325658045319295 0.325627527275502 0.00520572306760529 0.00497761569047086 30821771 12314478 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} -85 439 654 0.326680272892221 0.326502659948995 0.32664988174258 0.326436255436027 0.00524758202535516 0.0056795354472753 30893175 12346272 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} -86 492 654 0.326616656623523 0.326331425691142 0.326756694895857 0.326131074998093 0.00473137585504356 0.00498027215592177 30887159 12339797 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} -87 545 654 0.325975904598015 0.326872790400409 0.326024261844816 0.32674143587396 0.00419925585206803 0.00417001625183617 30826565 12360268 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} -88 598 654 0.326093091348299 0.326124066955107 0.326054779888609 0.325963225757229 0.00419669607411092 0.00420522515726037 30837647 12331956 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} -89 651 654 0.326002457199527 0.326403277965827 0.325810635538262 0.32632944228275 0.0040746068814955 0.0039414968071777 30829076 12342514 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} -90 704 654 0.32519510372566 0.326106903861154 0.325169756618601 0.325947966735332 0.00463001358875511 0.00451690080882448 30752727 12331307 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} -91 229 711 0.324002763966142 0.394330835356071 0.324040588998245 0.399069199664302 0.00709161348014819 0.029090675003019 30639971 19356011 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} -92 280 706 0.325165463366425 0.324495186201719 0.325139238574807 0.324116884107729 0.00584969535289297 0.00527100996349279 30749924 12270362 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} -93 333 706 0.325047864210144 0.324876899758143 0.324956130312047 0.32480354009308 0.00585843234963593 0.006247201173447 30738803 12284796 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} -94 386 706 0.325397933454697 0.325795429407256 0.325337605859464 0.325627527275502 0.00612173133845785 0.00596478767162896 30771908 12319529 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} -95 439 706 0.326143669242777 0.326333647108541 0.326009002822919 0.32623788815137 0.00605394844339157 0.00574007171216688 30842430 12339881 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} -96 492 706 0.326567612033394 0.326220936620978 0.326405737392233 0.326176852063783 0.0052431656248223 0.00524943458598811 30882521 12335619 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} -97 545 706 0.325885915494522 0.326393255142085 0.325825894560159 0.32637521934844 0.00439274865526381 0.00395271359771842 30818055 12342135 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} -98 598 707 0.325673928237444 0.326174630646384 0.325703822384985 0.32623788815137 0.00423003649072924 0.00397882237392719 30798008 12333868 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} -99 651 707 0.325644224431132 0.325595686959447 0.325627527275502 0.325688563363088 0.00429848855783029 0.0045871390943846 30795199 12311976 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} -100 705 710 0.325591531634104 0.392355637480273 0.325474937056535 0.394567788204776 0.00460052343488168 0.025365503709258 30790216 19259057 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv deleted file mode 100644 index 13f49e5..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 229 232 0.0342661375391977 0.0414038229255196 0.0343480582894636 0.0421911955443656 0.00232826961219453 0.00441671014557933 3240446 2336237 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} -2 281 234 0.0341262261610167 0.0344707651553227 0.0340428778515297 0.034332799267567 0.00194068360234761 0.00192519491342876 3227215 1303467 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} -3 334 234 0.0341198603043419 0.0340901358621526 0.0340733958953231 0.0341649500267033 0.00170862463139671 0.00165802050719139 3226613 1289074 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} -4 387 234 0.0340447812638245 0.0340807477290966 0.0339971007858396 0.0340581368734264 0.00158467124892748 0.00155485346732338 3219513 1288719 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} -5 440 234 0.0342087708075348 0.0341151003624481 0.0342107270923934 0.0341191729610132 0.00185378944973692 0.00175791264484062 3235021 1290018 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} -6 493 234 0.0340167270815016 0.0341439787886373 0.0339360646982528 0.0340886549172198 0.00258662810838998 0.00251242212451938 3216860 1291110 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} -7 546 235 0.034204678471101 0.0340808270654322 0.0341191729610132 0.0340428778515297 0.00257552967042982 0.00257319110416353 3234634 1288722 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} -8 599 235 0.0341535189784217 0.0342009422776589 0.0341039139391165 0.0342107270923934 0.00229468957265848 0.00240613145153288 3229796 1293264 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} -9 652 235 0.0342865886468542 0.0340683183698393 0.0343022812237736 0.0339208056763561 0.00182116551120558 0.00172807331864643 3242380 1288249 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} -10 703 234 0.0340480170647257 0.0402332734048983 0.0340123598077363 0.0406500343327993 0.00187558822836996 0.00355811519500477 3219819 2270188 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} -11 228 286 0.0342057993694524 0.0341669863259859 0.0341649500267033 0.0342107270923934 0.00194732754670361 0.00197281726528771 3234740 1291980 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} -12 281 286 0.034084012706123 0.0341444548066514 0.0340581368734264 0.0341649500267033 0.00190955393349488 0.00176152175563656 3223223 1291128 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} -13 334 287 0.036036120632138 0.0340701166601148 0.0346379797055009 0.0338750286106661 0.00491548150891754 0.00167861085021946 3407828 1288317 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} -14 387 287 0.0342400925142971 0.0342530133593133 0.0341039139391165 0.0342717631799802 0.00180241250694472 0.00169093071233689 3237983 1295233 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} -15 440 287 0.0341853271127705 0.03440904148616 0.0341954680704967 0.0344090943770504 0.00163941407747737 0.00163928395536712 3232804 1301133 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} -16 493 287 0.0342235328273323 0.0341306767296875 0.0342259861142901 0.0341344319829099 0.00199796522517638 0.00203983964658091 3236417 1290607 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} -17 546 287 0.0343764508561945 0.03425552567661 0.0343022812237736 0.0342259861142901 0.00215318629216737 0.00199624732956799 3250878 1295328 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} -18 599 287 0.0340031388326193 0.0340838418461883 0.0340581368734264 0.0340733958953231 0.00225439748351006 0.00239838251230449 3215575 1288836 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} -19 652 287 0.0342497787679752 0.0341990646510477 0.0342412451361868 0.0340886549172198 0.00169848831805296 0.00172033596028464 3238899 1293193 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} -20 705 287 0.0340097584776001 0.0342039306129697 0.0339818417639429 0.0341802090486 0.00165891867928128 0.00159296637416182 3216201 1293377 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} -21 228 339 0.0341496169832173 0.0341236951321472 0.0341802090486 0.0341344319829099 0.00242792632206288 0.00236638702360701 3229427 1290343 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} -22 281 339 0.0342279529736614 0.0344911545935937 0.0342565041580835 0.0345616845960174 0.00217869413503839 0.00199452360242865 3236835 1304238 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} -23 334 339 0.0349755498759848 0.0342448417167378 0.0345616845960174 0.0343633173113603 0.00297959571703094 0.00192802177395443 3307533 1294924 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} -24 387 339 0.0343361090900574 0.0343561505957035 0.0343022812237736 0.0344396124208438 0.00176195399489875 0.00172894990068735 3247063 1299133 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} -25 440 339 0.0342880162060753 0.0343036299414802 0.0342717631799802 0.034332799267567 0.00162969935867434 0.00155262151797185 3242515 1297147 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} -26 493 339 0.0343762922385033 0.0343519986608027 0.0343633173113603 0.0344701304646372 0.00184439660426361 0.00178200468691174 3250863 1298976 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} -27 546 339 0.0342643187230049 0.0341915541446029 0.0342107270923934 0.0341649500267033 0.00200773620512646 0.00202593529539689 3240274 1292909 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} -28 599 340 0.0341851684950792 0.0344531524888007 0.0341802090486 0.0345159075303273 0.00207254595098527 0.00213590448031724 3232789 1302801 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} -29 652 340 0.0341954997940349 0.0340345475362828 0.0341649500267033 0.0339971007858396 0.00183657731551037 0.00193861342662332 3233766 1286972 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} -30 705 340 0.0341720455247578 0.03416862594359 0.0341344319829099 0.0342107270923934 0.0015781043570268 0.00157502227029085 3231548 1292042 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} -31 227 391 0.034280317960794 0.0341119004635754 0.0341039139391165 0.0340123598077363 0.00259749554337077 0.00274636490590848 3241787 1289897 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} -32 280 391 0.0341413582887604 0.0341703713429751 0.0341496910048066 0.0340581368734264 0.00236007170549748 0.00232606386765315 3228646 1292108 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} -33 333 391 0.0343086259314229 0.0341818222207589 0.0343175402456703 0.0342107270923934 0.00189006309523415 0.00203773444201196 3244464 1292541 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} -34 387 392 0.0342989502522576 0.034527569971673 0.0342565041580835 0.034531166552224 0.00194654836558092 0.0019882923635517 3243549 1305615 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} -35 440 392 0.0342688551889742 0.0343168791095395 0.0342259861142901 0.034332799267567 0.00184650968011771 0.00180113642246513 3240703 1297648 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} -36 493 392 0.0343241598906511 0.0340859574818065 0.0343022812237736 0.0341191729610132 0.00183074379017142 0.00170954564909129 3245933 1288916 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} -37 546 392 0.0344564576196529 0.0341839907472676 0.0343633173113603 0.0342259861142901 0.0019455896359485 0.00210863379185982 3258444 1292623 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} -38 599 392 0.0343084250156807 0.034372546771745 0.0342412451361868 0.034378576333257 0.00200449182165871 0.00187244077943791 3244445 1299753 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} -39 652 392 0.0340118628056371 0.0341053155477136 0.0339971007858396 0.0340733958953231 0.00172466370273548 0.00184681401528628 3216400 1289648 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} -40 705 392 0.0341969485022815 0.0341721696332506 0.0341954680704967 0.0341496910048066 0.00155456435834522 0.00152535888150064 3233903 1292176 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} -41 227 444 0.0341781681676394 0.0342607089838748 0.0340886549172198 0.034332799267567 0.002511709888953 0.00262335708159619 3232127 1295524 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} -42 280 444 0.034195246005729 0.0345860937419631 0.0341954680704967 0.034531166552224 0.00203915461215183 0.00195536861450298 3233742 1307828 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} -43 333 444 0.0343665213887233 0.0343916403831998 0.0343480582894636 0.0344090943770504 0.00179230609969805 0.00177908956107346 3249939 1300475 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} -44 386 444 0.0343604516184054 0.0344897529849966 0.034378576333257 0.034378576333257 0.00186700265494831 0.00183861706047052 3249365 1304185 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} -45 439 444 0.0342552775146046 0.0341400384172983 0.0342717631799802 0.034027618829633 0.00229936498053145 0.00223175970464252 3239419 1290961 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} -46 492 444 0.0342946887236198 0.0351119349748815 0.0343022812237736 0.0348058289463645 0.00229978234274226 0.00327250810172913 3243146 1327712 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} -47 545 444 0.034496545597484 0.0343043175230561 0.0343938353551537 0.0342107270923934 0.00211053785488877 0.0021979415296868 3262235 1297173 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} -48 599 444 0.0343120837970918 0.0343754557707201 0.0342717631799802 0.0342259861142901 0.00220750612153201 0.00217828412977319 3244791 1299863 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} -49 652 445 0.0341684290413977 0.0343502532614176 0.0341649500267033 0.034332799267567 0.00196493103163249 0.00186711819047528 3231206 1298910 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} -50 705 445 0.0340757963097171 0.0340367425082368 0.0340123598077363 0.0339818417639429 0.00169541939550963 0.00163517609307864 3222446 1287055 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} -51 227 496 0.0342503392171508 0.0339171562049147 0.0342412451361868 0.0338902876325628 0.00229313891001459 0.00201604672551216 3238952 1282533 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} -52 280 496 0.0342483723577795 0.0342335230661801 0.0341802090486 0.0341496910048066 0.00181818623586183 0.00180978146135918 3238766 1294496 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} -53 333 496 0.0343101592357715 0.0341793892397979 0.0343022812237736 0.0341039139391165 0.00169586859983041 0.00162144657418138 3244609 1292449 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} -54 386 496 0.0343624607758277 0.034233628847961 0.034332799267567 0.0342565041580835 0.00160610145905243 0.00143589572364629 3249555 1294500 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} -55 439 497 0.0342672690120619 0.0344175304740782 0.0342870222018769 0.0344090943770504 0.00215688690734092 0.00212555421371461 3240553 1301454 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} -56 492 497 0.0343431728645736 0.0339104655072719 0.0343633173113603 0.0339513237201495 0.0026049388154814 0.00265313889752224 3247731 1282280 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} -57 545 497 0.0342319818630187 0.0344277648613816 0.0342107270923934 0.034378576333257 0.00220525727121598 0.00215929455879618 3237216 1301841 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} -58 598 497 0.0342453163235951 0.0344146479205484 0.0342565041580835 0.0343938353551537 0.00219306645649075 0.00226827948874859 3238477 1301345 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} -59 651 497 0.0341736951487466 0.0341706886883178 0.0340123598077363 0.0342565041580835 0.00213508840656506 0.00216141902892511 3231704 1292120 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} -60 704 497 0.0340705513513936 0.0340985984046256 0.0340428778515297 0.0339971007858396 0.00200516763712937 0.0020861922143614 3221950 1289394 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} -61 227 548 0.0342418055853625 0.034434878686148 0.0342107270923934 0.0343938353551537 0.00216352898149616 0.00211786903256569 3238145 1302110 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} -62 280 549 0.0341033852134791 0.0341905756631295 0.0340886549172198 0.0342412451361868 0.00187370451535691 0.0016994800096479 3225055 1292872 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} -63 333 549 0.0343073464153803 0.0342164393085627 0.0343175402456703 0.0340886549172198 0.00156227393313904 0.00149843401941116 3244343 1293850 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} -64 386 549 0.0343208183446224 0.0341468613421672 0.0343022812237736 0.0340581368734264 0.00165012416134395 0.0017552356718336 3245617 1291219 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} -65 439 549 0.0341837092123199 0.0340276981659687 0.0341954680704967 0.0339360646982528 0.00195904843337442 0.00199370012722523 3232651 1286713 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} -66 492 549 0.0342839767422052 0.034026111439255 0.0341802090486 0.0340428778515297 0.00265726683537011 0.00263605350067088 3242133 1286653 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} -67 545 549 0.0343232610570674 0.0342155401634249 0.0342717631799802 0.0342412451361868 0.00244995957862668 0.00240160673723189 3245848 1293816 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} -68 598 549 0.0341981116986839 0.0345602300965298 0.0341802090486 0.0344701304646372 0.00215264920353441 0.00205280079580129 3234013 1306850 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} -69 651 549 0.0342065818833958 0.0345021294533634 0.0342412451361868 0.0345006485084306 0.00202002627807955 0.002214525895783 3234814 1304653 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} -70 704 550 0.0340784399379043 0.0342395261822469 0.0340581368734264 0.0341649500267033 0.00200852384430111 0.00193305737473869 3222696 1294723 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} -71 227 601 0.0341220280794554 0.0342573504123308 0.0340886549172198 0.0342870222018769 0.00216056000529009 0.00210797275604859 3226818 1295397 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} -72 280 601 0.0340771815708872 0.0342383890281021 0.0340733958953231 0.0342107270923934 0.00175884868123305 0.00174902453610733 3222577 1294680 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} -73 333 601 0.0341555598593822 0.0342046975308813 0.0341191729610132 0.0340733958953231 0.00182120705136743 0.00179027230751129 3229989 1293406 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} -74 386 601 0.034211668224028 0.0345054615794622 0.0342107270923934 0.0344548714427405 0.00187887861922546 0.00194960671199432 3235295 1304779 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} -75 439 601 0.034411135258011 0.0341247000590659 0.0343175402456703 0.0340886549172198 0.00201501590135811 0.00198382167761711 3254158 1290381 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} -76 492 602 0.0343199406600643 0.0343256854428005 0.0342717631799802 0.0343633173113603 0.00235185408111856 0.00240848267076282 3245534 1297981 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} -77 545 602 0.0343987313545565 0.0345583524699186 0.0344090943770504 0.0345159075303273 0.00205755827745993 0.00199788765524209 3252985 1306779 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} -78 598 602 0.034258164356585 0.0342506861601333 0.0343022812237736 0.0342412451361868 0.00198061347375135 0.00199614984174681 3239692 1295145 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} -79 651 602 0.0343337826972526 0.0344924504204099 0.0343022812237736 0.0345006485084306 0.00172369236524697 0.00161218201547905 3246843 1304287 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} -80 704 602 0.0343570043272492 0.0342629568467192 0.0344090943770504 0.0343633173113603 0.00178590572317629 0.00173035847250104 3249039 1295609 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} -81 228 656 0.0342055984537102 0.0403274504575801 0.0341954680704967 0.040512703135729 0.00229195001494774 0.00432158301371473 3234721 2275502 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} -82 280 653 0.0340672415289032 0.033852655764003 0.0339971007858396 0.0338139925230793 0.0018204845500491 0.00176274548763852 3221637 1280094 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} -83 333 654 0.0341439173208457 0.0340988364136327 0.0342412451361868 0.0340581368734264 0.00194809418338977 0.00194907526936587 3228888 1289403 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} -84 386 654 0.0341446152386871 0.0342254307599403 0.0341649500267033 0.0342565041580835 0.00191613512719962 0.00179283401304375 3228954 1294190 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} -85 439 654 0.0342428313130991 0.0340857988091352 0.0341954680704967 0.0339513237201495 0.00205870087319007 0.0020587013964866 3238242 1288910 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} -86 492 654 0.0343806912358068 0.0345039806345294 0.034378576333257 0.0344701304646372 0.00188672075470468 0.00186012981952982 3251279 1304723 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} -87 545 654 0.0342771773305076 0.0343283035418781 0.0342870222018769 0.034332799267567 0.00164591919643113 0.00158164824284597 3241490 1298080 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} -88 598 654 0.0342891371044266 0.0345770229542498 0.0343175402456703 0.0345616845960174 0.00164234401525303 0.001691752307425 3242621 1307485 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} -89 651 654 0.0342082209328719 0.0343541142964209 0.0342107270923934 0.0342717631799802 0.00158592972145545 0.0016349788281372 3234969 1299056 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} -90 704 654 0.0341783796578944 0.0344839878779368 0.0341954680704967 0.0344701304646372 0.00170305039796281 0.00176693808161058 3232147 1303967 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} -91 229 711 0.0338840486700409 0.0414683986980734 0.0339055466544594 0.0416876478217746 0.00260056542367393 0.00414798988259963 3204313 2035506 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} -92 280 706 0.0339345525429298 0.0338543747179428 0.033829251544976 0.0338139925230793 0.00217271804240645 0.00197653314107559 3209089 1280159 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} -93 333 706 0.0341572094833711 0.0341398004082912 0.0341649500267033 0.0341496910048066 0.0021832278387283 0.00236893717385299 3230145 1290952 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} -94 386 706 0.0341185173412228 0.0339931604145006 0.0341649500267033 0.0339818417639429 0.00231139170069106 0.00222818056785802 3226486 1285407 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} -95 439 706 0.0341792679169653 0.0342243464966859 0.0341344319829099 0.0341802090486 0.00224370774163061 0.00218138762064366 3232231 1294149 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} -96 492 706 0.0341097299211284 0.0342113617830789 0.0340886549172198 0.0342412451361868 0.00202066987092569 0.00207613574409338 3225655 1293658 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} -97 545 706 0.0342198951949467 0.0343393048470931 0.0341496910048066 0.0343938353551537 0.00170074584617014 0.00169354820767893 3236073 1298496 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} -98 598 707 0.0341686722551909 0.0342853561388275 0.0341496910048066 0.034378576333257 0.00158632006306853 0.00146112647719735 3231229 1296456 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} -99 651 707 0.0340566458671288 0.0341650822539294 0.0340123598077363 0.0341496910048066 0.00167462128861343 0.00161157986624482 3220635 1291908 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} -100 705 710 0.0341290812794589 0.0411500168633583 0.0341039139391165 0.0414587624933242 0.00176522476636816 0.00334150388153267 3227485 2019878 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv deleted file mode 100644 index f83d6d0..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 255 216 0.239151044278076 0.944861037009154 0.23750667582208 1 0.00976279047501302 0.142954657980535 22615798 53314384 1443 861 77 True 253 219 32 {X=0,Y=0,Width=0,Height=0} -2 306 219 0.233298611920722 0.232279892245389 0.232822156099794 0.232166018158236 0.00521674630089494 0.00430967206868509 22062351 8783361 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} -3 359 219 0.231309842159007 0.231323334046038 0.231219958800641 0.231433585107195 0.00396370583589128 0.00382077292254087 21874279 8747190 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} -4 412 219 0.231346387675067 0.231024976532973 0.231311512932021 0.231143663691157 0.00428030469326025 0.0043163721823318 21877735 8735908 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} -5 465 219 0.230974947340248 0.231304240434583 0.23099107347219 0.231555657282368 0.00579178588346739 0.00611074161930845 21842609 8746468 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} -6 518 219 0.231083716778384 0.231017518917419 0.231174181734951 0.230960555428397 0.00611266803654388 0.00573438401003625 21852895 8735626 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} -7 571 219 0.231163078496564 0.231410974251524 0.231158922713054 0.231311512932021 0.00521332947283633 0.00479756069130571 21860400 8750504 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} -8 623 219 0.231422661635525 0.231787610282465 0.231448844129091 0.231570916304265 0.00436589362736763 0.00472619958145119 21884948 8764746 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} -9 676 219 0.232362048475576 0.231618147869443 0.2323338673991 0.231479362172885 0.0038566147670869 0.00333277505191581 21973783 8758338 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.236606287785047 0.93668310422453 0.236163881895171 1 0.00630933788915726 0.143792769862209 22375148 59728118 1443 973 75 True 729 219 34 {X=0,Y=0,Width=0,Height=0} -11 253 271 0.232196546776542 0.231612991007623 0.23224231326772 0.231403067063401 0.00473227808788332 0.00447857950160897 21958132 8758143 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} -12 306 271 0.235424332197049 0.23230377248243 0.232166018158236 0.232196536202029 0.0189247747998943 0.0037639716773712 22263374 8784264 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} -13 359 271 0.231508262316228 0.231223634717528 0.231403067063401 0.231052109559777 0.00357448744320154 0.00342365996590052 21893043 8743420 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} -14 412 271 0.232003445599234 0.231216547338206 0.232059205004959 0.231143663691157 0.00365465247468658 0.00357202692662456 21939871 8743152 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} -15 465 271 0.231682858096225 0.231431919044145 0.231647211413748 0.231494621194781 0.00471053325017143 0.00447272270173075 21909554 8751296 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} -16 518 271 0.23179555067859 0.231839284682441 0.231860837720302 0.231952391851682 0.00562135471854968 0.00535186390720744 21920211 8766700 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} -17 571 271 0.232217315119581 0.233010156769922 0.232211795223926 0.23270008392462 0.00463284962577184 0.00519550998722431 21960096 8810975 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} -18 623 271 0.231691825283036 0.231529000273578 0.231692988479438 0.231586175326162 0.00387170293083083 0.00392761174909241 21910402 8754967 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} -19 676 272 0.231404388877495 0.231736914363963 0.231311512932021 0.231631952391852 0.00347609696071867 0.00348137898063843 21883220 8762829 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} -20 729 272 0.231801059999732 0.231855813085709 0.231738765545129 0.231647211413748 0.00376889261666584 0.00389488082160159 21920732 8767325 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} -21 253 323 0.231942198021392 0.231577765674579 0.232043945983062 0.231738765545129 0.00461561464847268 0.00453473477916266 21934079 8756811 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} -22 306 323 0.23214730127067 0.232055687760744 0.232135500114443 0.231998168917372 0.00346547546230798 0.00355770697240682 21953475 8774883 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} -23 359 323 0.231727820924433 0.232046035173236 0.231677729457542 0.231921873807889 0.00384794178889318 0.00437645980091515 21913806 8774518 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} -24 412 323 0.231590331109672 0.231542699014206 0.231647211413748 0.231692988479438 0.00377175584832264 0.00401732633241971 21900804 8755485 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} -25 465 323 0.23253397947836 0.232467258224831 0.23242542153048 0.232349126420996 0.00441396540821587 0.00458250524750071 21990042 8790446 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} -26 518 324 0.232542914941633 0.233119773140393 0.232623788815137 0.233463035019455 0.00474226926370313 0.00470465918299382 21990887 8815120 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} -27 570 324 0.244106697098744 0.233170416168005 0.233585107194629 0.233203631647211 0.0683643492421273 0.00445620392932758 22716496 8817035 1420 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} -28 623 324 0.233543380167322 0.232389429279524 0.232593270771344 0.2323338673991 0.00826750528703 0.00407491191429185 22085498 8787503 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} -29 676 324 0.232357765797912 0.232272434629835 0.232303349355306 0.232013427939269 0.00343123640332385 0.00343999353877546 21973378 8783079 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} -30 729 324 0.231823530839324 0.231297999309509 0.231891355764096 0.231128404669261 0.00363799162832347 0.00349928915315672 21922857 8746232 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} -31 253 375 0.232357712925349 0.231664189389585 0.23237964446479 0.231464103150988 0.00514832404014218 0.00528006141133158 21973373 8760079 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} -32 306 375 0.232201030369948 0.23301232529643 0.232303349355306 0.232913710231174 0.00407999272790577 0.00344685442158611 21958556 8811057 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} -33 359 376 0.231945031990809 0.232395167941139 0.231937132829786 0.23247119859617 0.00426495706938988 0.00413404751219887 21934347 8787720 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} -34 412 376 0.232603866433118 0.232773602262355 0.232501716639963 0.23260852979324 0.00379907780643308 0.00408025945719502 21996651 8802030 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} -35 465 376 0.233082764966491 0.233330622675197 0.233127336537728 0.233279926756695 0.00419564749851248 0.00388052563500644 22041939 8823093 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} -36 527 379 0.233774147759041 0.233991441460561 0.233813992523079 0.233844510566873 0.0042951167669013 0.00387978488194324 22107321 8848081 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} -37 570 376 0.242762040558225 0.233955131864262 0.23436331731136 0.233829251544976 0.0540478512375953 0.00382862986689003 22798185 8846708 1433 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} -38 623 376 0.233682096625562 0.233207730691222 0.233737697413596 0.233310444800488 0.00383860341716027 0.00399522575921742 22098616 8818446 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} -39 676 376 0.23261752870359 0.23253665107311 0.232410162508583 0.23242542153048 0.00368804908503578 0.00360510458485771 21997943 8793070 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} -40 729 376 0.231969099581826 0.231742097671227 0.232013427939269 0.231616693369955 0.00365477052275792 0.00363071919579894 21936623 8763025 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} -41 253 428 0.232295037788286 0.231707930155992 0.232532234683757 0.231967650873579 0.00566479845912828 0.00607833108907761 21967446 8761733 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} -42 306 428 0.23265492018067 0.23302269191096 0.23256275272755 0.233020523384451 0.00439341486018561 0.00482045950183237 22001479 8811449 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} -43 359 428 0.232912071181698 0.232370600122522 0.232944228274968 0.232394903486687 0.00461939446924782 0.00437327549903336 22025797 8786791 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} -44 412 428 0.233649823212652 0.23387666822827 0.233447775997559 0.233936064698253 0.00463287085226451 0.00416801330651448 22095564 8843741 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} -45 465 428 0.234024679115089 0.233992710841932 0.23399710078584 0.234073395895323 0.00496391781358579 0.00502440581960722 22131013 8848129 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} -46 517 428 0.23442640485442 0.234456987078359 0.234378576333257 0.234348058289464 0.00476943136148823 0.00461209483319125 22169003 8865685 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} -47 570 428 0.234251280348785 0.234419408100689 0.234027618829633 0.234210727092393 0.00426472780543212 0.00428632256428534 22152442 8864264 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} -48 623 428 0.233871845682329 0.234462064603843 0.233875028610666 0.23436331731136 0.00426160770880194 0.00411353181179875 22116560 8865877 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} -49 676 428 0.233459080151687 0.232850241162626 0.233234149691005 0.232745860990311 0.00435686016251007 0.00426264996709436 22077526 8804928 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} -50 729 428 0.232188975425414 0.232076632553365 0.232043945983062 0.232104982070649 0.00455155662350271 0.00484458652833924 21957416 8775675 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} -51 253 480 0.232048270958777 0.232293511649681 0.231860837720302 0.232104982070649 0.00524164564788279 0.00542663697464938 21944110 8783876 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} -52 306 480 0.232847598377468 0.232916301884807 0.232852674143587 0.232959487296864 0.0042143663695676 0.00372221933700681 22019700 8807426 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} -53 359 480 0.233573284889376 0.233187764380074 0.233356221866178 0.233112077515831 0.0043812460913309 0.00437588578229563 22088326 8817691 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} -54 412 480 0.233976300719262 0.234076093330736 0.233890287632563 0.234058136873426 0.00489748352406134 0.00476586636664046 22126438 8851282 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} -55 464 480 0.234566485424805 0.234553645180668 0.234485389486534 0.234637979705501 0.00623612051443825 0.00616844552925072 22182250 8869340 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} -56 517 480 0.234392037687986 0.235306626342652 0.234454871442741 0.235202563515679 0.00528717859441459 0.00545222485802938 22165753 8897813 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} -57 570 480 0.234701056674048 0.234928800266676 0.234805828946365 0.235202563515679 0.00495999681061316 0.00547991428856867 22194976 8883526 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} -58 623 481 0.234223786615638 0.234430568078576 0.23413443198291 0.234210727092393 0.00504130560078561 0.00542899450024159 22149842 8864686 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} -59 676 481 0.232727884318637 0.232823610599282 0.232837415121691 0.232776379034104 0.00460304185429536 0.0046506775889996 22008379 8803921 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} -60 729 481 0.231871993831252 0.231834921183978 0.232074464026856 0.231830319676509 0.00508768886792317 0.00524301899612361 21927440 8766535 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} -61 253 532 0.233709125080148 0.232265638150411 0.232730601968414 0.232257572289616 0.00883590774307624 0.00423148285958004 22101172 8782822 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} -62 306 532 0.2329652398318 0.233309307646343 0.232761120012207 0.233234149691005 0.00425444698568822 0.00393473522758815 22030825 8822287 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} -63 359 532 0.234031943805347 0.233793232848575 0.234103913939117 0.233752956435492 0.00369897770199464 0.00376796520933873 22131700 8840586 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} -64 411 533 0.234415692873006 0.23411470368077 0.234348058289464 0.233890287632563 0.00414236991873986 0.00352860472453951 22167990 8852742 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} -65 464 533 0.234612600874903 0.235047751879313 0.234485389486534 0.234973678187228 0.0059689472494158 0.00598534067681105 22186611 8888024 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} -66 517 533 0.23494167971165 0.234971430324384 0.234988937209125 0.234836346990158 0.00592355610158015 0.00529332860525858 22217731 8885138 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} -67 570 533 0.234702759170601 0.234980501112097 0.234515907530327 0.234897383077745 0.00450885360278215 0.00422455178653514 22195137 8885481 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} -68 623 533 0.234044717816748 0.23369062452109 0.234012359807736 0.233768215457389 0.00429903856408512 0.00462336684729354 22132908 8836706 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} -69 676 533 0.232891260540608 0.232705663913564 0.232730601968414 0.232852674143587 0.00373392906310105 0.00393545633925979 22023829 8799461 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} -70 729 533 0.232055778862829 0.232211874560262 0.232089723048753 0.232196536202029 0.0042681696514458 0.00426190069141602 21944820 8780789 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} -71 253 585 0.233196314084389 0.2327364993027 0.233112077515831 0.233157854581521 0.00457990406237317 0.00489769543929184 22052677 8800627 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} -72 306 585 0.23311565170114 0.233405225276186 0.232913710231174 0.233295185778592 0.00367938486211423 0.0033500549805991 22045049 8825914 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} -73 358 585 0.234098859322023 0.233751792835902 0.234103913939117 0.233600366216526 0.00373820999199399 0.00357742137469827 22138028 8839019 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} -74 411 585 0.234777150867789 0.234602172572662 0.234439612420844 0.234760051880674 0.0056929573772427 0.00400210792995518 22202172 8871175 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} -75 464 585 0.235452819934395 0.234779409946582 0.234958419165332 0.234805828946365 0.00829513411001125 0.00504387312092818 22266068 8877877 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} -76 517 585 0.235179955207421 0.234972593923974 0.235095750362402 0.234699015793088 0.00545653193683518 0.00570099879423659 22240264 8885182 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} -77 570 585 0.235278668283933 0.234468702410595 0.234729533836881 0.234439612420844 0.00548741323083135 0.00425313914194653 22249599 8866128 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} -78 623 585 0.233220487420533 0.233319436251866 0.233035782406348 0.233264667734798 0.00385941340609455 0.00405157626254314 22054963 8822670 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} -79 676 585 0.232538029516743 0.232493280542936 0.232486457618067 0.232440680552377 0.0034481889867939 0.00315680081093848 21990425 8791430 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} -80 729 585 0.231859579353285 0.231800621441517 0.231738765545129 0.231570916304265 0.00423487024236706 0.00401695663996687 21926266 8765238 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} -81 254 636 0.243050871707315 0.918916322341787 0.240527962157626 1 0.0131565513846877 0.188207380928327 22984593 51850437 1443 861 75 True 253 637 32 {X=0,Y=0,Width=0,Height=0} -82 306 637 0.235496757034866 0.234598919782899 0.234821087968261 0.234500648508431 0.00516652534124839 0.00340054621843643 22270223 8871052 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} -83 358 637 0.234150071687266 0.234482877169237 0.233813992523079 0.234195468070497 0.00423274377168866 0.00372925856562599 22142871 8866664 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} -84 411 637 0.235517377334727 0.234016432406301 0.234393835355154 0.233768215457389 0.00884086791481015 0.0042285983096038 22272173 8849026 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} -85 464 637 0.235452396953885 0.233956507027414 0.234882124055848 0.233966582742046 0.00718085525724224 0.00476129631037208 22266028 8846760 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} -86 517 637 0.234915116535625 0.234620763720657 0.234790569924468 0.234699015793088 0.00456224742367775 0.00415270415031429 22215219 8871878 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} -87 570 637 0.234397726775845 0.233469857944324 0.23399710078584 0.233447775997559 0.00515383650688131 0.00424592746256032 22166291 8828358 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} -88 623 637 0.232498650031266 0.233037131124054 0.23247119859617 0.233096818493935 0.00372420084069905 0.00361750215742476 21986701 8811995 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} -89 676 638 0.232351685453082 0.232688738828618 0.232349126420996 0.23256275272755 0.00364711971751713 0.00340578297388399 21972803 8798821 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} -90 729 638 0.232476803087927 0.23224408511255 0.232394903486687 0.232349126420996 0.00389894270173921 0.00381666822845959 21984635 8782007 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} -91 255 692 0.241468512194079 0.93556532689806 0.239581902800031 1 0.0102587634312756 0.171120633778487 22834954 45922893 1443 749 79 True 253 689 31 {X=0,Y=0,Width=0,Height=0} -92 305 689 0.235855708870129 0.234379713487402 0.234897383077745 0.23427176317998 0.00607173369783603 0.0036741825018501 22304168 8862763 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} -93 358 689 0.23350167428904 0.232910272323295 0.233569848172732 0.232822156099794 0.00427294722616106 0.00378892628396925 22081554 8807198 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} -94 411 689 0.236841708162376 0.233142701341406 0.23399710078584 0.233081559472038 0.0132949337206976 0.00394208534563403 22397411 8815987 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} -95 464 689 0.236560923125354 0.234465052939153 0.234302281223774 0.23431754024567 0.0111194000129932 0.00443939365169648 22370858 8865990 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} -96 517 690 0.234120092943622 0.237549332325233 0.234012359807736 0.233737697413596 0.00581549009741817 0.0180713961032166 22140036 8982618 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} -97 570 690 0.234005750737268 0.235749957786458 0.233127336537728 0.233508812085145 0.00653895140131191 0.0086169721558925 22129223 8914577 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} -98 623 690 0.232237174054524 0.231932346204199 0.232364385442893 0.231738765545129 0.00368840129168598 0.00363954981383145 21961974 8770219 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} -99 676 690 0.232819078916584 0.232236442378879 0.232928969253071 0.232410162508583 0.003803531168831 0.0037292818964303 22017003 8781718 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} -100 729 692 0.235857432515707 0.943997085721765 0.23566033417258 1 0.00584327261541056 0.138997439018845 22304331 53265635 1443 861 78 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv deleted file mode 100644 index 27ef01e..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 255 216 0.0242331878861977 0.160017694085321 0.024124513618677 0.179873350118257 0.00222612008481225 0.0472373652185702 2291660 9029100 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} -2 306 219 0.0234966307751842 0.0237441752254044 0.0234988937209125 0.0237582970931563 0.0016749391809497 0.00160683049066023 2222006 897855 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} -3 359 219 0.023417840080692 0.0231944802008902 0.0234378576333257 0.0231784542610819 0.00158366227058237 0.00148422320344991 2214555 877069 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} -4 412 219 0.0233559791811108 0.0235838100455404 0.0233920805676356 0.0235599298084993 0.00181587015973548 0.00174268514516639 2208705 891791 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} -5 465 219 0.0233270473142297 0.0232173290655674 0.0233157854581521 0.0231784542610819 0.00223287407738773 0.00232611944847177 2205969 877933 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} -6 518 219 0.0232906709903734 0.0234464788484701 0.0232394903486687 0.0234073395895323 0.00229692727870975 0.00220502159294847 2202529 886598 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} -7 571 219 0.023457050373965 0.0233862625696854 0.0234683756771191 0.0233310444800488 0.00206536567827749 0.00200561554257239 2218263 884321 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} -8 623 219 0.0234779984837206 0.0233979250110311 0.0234836346990158 0.023422598611429 0.00185254437407469 0.00188574533006858 2220244 884762 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} -9 676 219 0.0234837721676815 0.0235035481192727 0.0234988937209125 0.0234683756771191 0.0015763418532685 0.00141049630602983 2220790 888756 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.0239309577373207 0.175432880651631 0.0239108873121233 0.198443579766537 0.00188782090306632 0.0609363145130837 2263079 11186575 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} -11 253 271 0.0234739695943633 0.0235007184566332 0.023422598611429 0.0236057068741894 0.00182166104277281 0.00170000290761213 2219863 888649 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} -12 306 271 0.0238659562074531 0.0235552225192486 0.0235904478522927 0.0235599298084993 0.00251398245395334 0.00141939811421477 2256932 890710 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} -13 359 271 0.0234026233568463 0.0232663324755753 0.0233920805676356 0.023270008392462 0.00149774084492464 0.00141948005019338 2213116 879786 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} -14 412 271 0.02338355751036 0.023549589639415 0.0233920805676356 0.0235904478522927 0.0014419423792807 0.00140470560905998 2211313 890497 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} -15 465 271 0.0232954295211105 0.0233347997332712 0.0233615625238422 0.0233005264362554 0.00193720506713791 0.00178593698259922 2202979 882375 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} -16 518 271 0.0234600429610729 0.0232975381009446 0.0234683756771191 0.0233157854581521 0.00216312339917306 0.00209225226016075 2218546 880966 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} -17 571 271 0.0235340116777517 0.0235588190997997 0.0235446707866026 0.0234988937209125 0.00179798425051551 0.00183203694300206 2225541 890846 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} -18 623 271 0.0235316429868959 0.0234412955412054 0.0234988937209125 0.023422598611429 0.00155366760428952 0.00156796244767592 2225317 886402 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} -19 676 272 0.0233892148746807 0.0230934850455635 0.0233920805676356 0.0231174181734951 0.00137926252275621 0.00150072381717 2211848 873250 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} -20 729 272 0.023464082424943 0.0235395668156735 0.0235141527428092 0.0235599298084993 0.00155683226190933 0.00144553760000401 2218928 890118 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} -21 253 323 0.0235425770330783 0.023267337402494 0.0235294117647059 0.0232089723048753 0.0018468906486499 0.0018801994176489 2226351 879824 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} -22 306 323 0.0234659964117506 0.0234471928754913 0.0234378576333257 0.0234683756771191 0.00142531439611579 0.00144698466600353 2219109 886625 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} -23 359 323 0.0233630112320888 0.0234105923792954 0.0233463035019455 0.0233920805676356 0.00157361632841686 0.00180577070739879 2209370 885241 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} -24 412 323 0.0234013015427527 0.0233311238163845 0.0233615625238422 0.0232089723048753 0.00158567936276614 0.00161757943543012 2212991 882236 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} -25 465 323 0.0234601698552259 0.0230610364842685 0.0234073395895323 0.023071641107805 0.00173486299301118 0.00170685169737511 2218558 872023 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} -26 518 324 0.0236586111614722 0.023379148744919 0.0236667429617761 0.023270008392462 0.00189526343449755 0.00203262303039328 2237324 884052 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} -27 570 324 0.0331055953395161 0.023772736306251 0.0237277790493629 0.02392614633402 0.0662640132633871 0.00171435532958934 3130697 898935 1443 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} -28 623 324 0.0236041101227643 0.0233817932894418 0.0235599298084993 0.0233768215457389 0.00189130273259254 0.00156244213104996 2232170 884152 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} -29 676 324 0.0234353303247787 0.0233894095776676 0.0233768215457389 0.0233310444800488 0.00139877199876149 0.00129888510299093 2216209 884440 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} -30 729 324 0.0234361022642094 0.0233713473385767 0.0234073395895323 0.0233920805676356 0.00144291152518723 0.00152047502199549 2216282 883757 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} -31 253 375 0.023461978096906 0.0234704913127374 0.0234683756771191 0.0234836346990158 0.00199913972934979 0.00204701045575119 2218729 887506 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} -32 306 375 0.0234969797341049 0.0233920805676356 0.0234683756771191 0.023422598611429 0.00149850901042153 0.00150585228430696 2222039 884541 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} -33 359 376 0.0235852557665329 0.023403134763741 0.0235904478522927 0.0233768215457389 0.00167725174870632 0.00161503140014849 2230387 884959 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} -34 412 376 0.0234927182054671 0.0233899649320174 0.0234683756771191 0.0233615625238422 0.00161031310900672 0.00145445434688204 2221636 884461 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} -35 465 376 0.0233853234539891 0.0236336597097956 0.0233310444800488 0.0236057068741894 0.0016793893699149 0.00162664653627461 2211480 893676 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} -36 527 379 0.0236228798828936 0.0236099910363163 0.0236057068741894 0.0235599298084993 0.00163674071777863 0.00158017474707733 2233945 892781 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} -37 570 376 0.0267710392224011 0.023546574858659 0.0237430380712596 0.023575188830396 0.0278269882332183 0.00146122988776418 2531657 890383 1443 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} -38 623 376 0.0235620552855618 0.0235061662183503 0.0236209658960861 0.0234531166552224 0.00156678961245623 0.00161920999249788 2228193 888855 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} -39 676 376 0.0234703213874649 0.0234134220419348 0.0234683756771191 0.0233463035019455 0.00147515742485162 0.0015272014723089 2219518 885348 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} -40 729 376 0.023398256083081 0.0233616683056231 0.0234073395895323 0.0233157854581521 0.00156496955445486 0.00139008525442929 2212703 883391 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} -41 253 428 0.0235276775446151 0.0232582401693355 0.0234531166552224 0.023270008392462 0.00230548442621941 0.00239560502312632 2224942 879480 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} -42 306 428 0.0236704123177 0.0234748548112 0.0236362249179828 0.0234378576333257 0.00171898246699731 0.00171464902069445 2238440 887671 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} -43 359 428 0.0235975750738854 0.023444733449085 0.0235904478522927 0.0234073395895323 0.0018158440520083 0.00172070007284549 2231552 886532 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} -44 412 428 0.0235440574648631 0.023532664554469 0.023422598611429 0.0235904478522927 0.00190837007330093 0.00176892302485939 2226491 889857 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} -45 465 428 0.0236109941305638 0.023711911782226 0.0235599298084993 0.0237277790493629 0.00196831741184972 0.0020860311877736 2232821 896635 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} -46 517 428 0.0235765212190023 0.0236765542219558 0.0235904478522927 0.0235904478522927 0.00187435246082142 0.00179654290092038 2229561 895298 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} -47 570 428 0.0236401480622126 0.0237561550120928 0.0236514839398795 0.0237888151369497 0.00163364754204016 0.00160338522000229 2235578 898308 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} -48 623 428 0.0236320691344724 0.023626175648796 0.0236057068741894 0.0236362249179828 0.00172349057288115 0.00161892608738891 2234814 893393 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} -49 676 428 0.0235480123326312 0.0235180137778125 0.0234988937209125 0.0234378576333257 0.00161458622613377 0.00146148835537176 2226865 889303 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} -50 729 428 0.0235242514024844 0.02332017540206 0.0234836346990158 0.023270008392462 0.00174403875293661 0.00186255660683823 2224618 881822 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} -51 253 480 0.0234752068123549 0.0235114817528411 0.0233920805676356 0.0234683756771191 0.00213391804343065 0.00217429862516798 2219980 889056 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} -52 306 480 0.0235744486145035 0.0234979416848843 0.023575188830396 0.0234531166552224 0.00169087164813308 0.00160054483498762 2229365 888544 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} -53 359 480 0.0236070392627957 0.0233862096787949 0.023575188830396 0.0234683756771191 0.00170978915388095 0.00161434981338879 2232447 884319 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} -54 412 480 0.0236711102355415 0.0236633843902322 0.0235904478522927 0.0235446707866026 0.00194026584489226 0.00175869411138521 2238506 894800 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} -55 464 480 0.0236569826865089 0.0237387539091327 0.0236209658960861 0.0237430380712596 0.0023505758122046 0.00246832674946578 2237170 897650 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} -56 517 480 0.0236895627602883 0.0238996744433465 0.0237125200274662 0.02392614633402 0.0020964401455751 0.00210324659415418 2240251 903735 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} -57 570 480 0.0237076346025762 0.023696732096665 0.0236972610055695 0.0237430380712596 0.00202377025251587 0.00211486021173675 2241960 896061 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} -58 623 481 0.0237411558079903 0.0236500823312824 0.0236667429617761 0.0236667429617761 0.00204221032483766 0.00190202731476127 2245130 894297 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} -59 676 481 0.0234707655170004 0.0235088107628731 0.0234378576333257 0.0234531166552224 0.00180995957156601 0.00186093001576102 2219560 888955 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} -60 729 481 0.0234096025352606 0.0233859716697879 0.023422598611429 0.0233768215457389 0.00194762055090887 0.00196400659751767 2213776 884310 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} -61 253 532 0.023694754846048 0.0232617309681056 0.0236057068741894 0.023224231326772 0.00199055297885382 0.00179054359289524 2240742 879612 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} -62 306 532 0.0235509731962009 0.0235365784803627 0.0235294117647059 0.0234988937209125 0.00148129607888693 0.00159820494623993 2227145 890005 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} -63 359 532 0.0235821891578358 0.0236763955492845 0.023575188830396 0.0236667429617761 0.00149997842016278 0.00149148133257993 2230097 895292 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} -64 411 533 0.0237737887543335 0.0237286253036102 0.0238193331807431 0.0238345922026398 0.00158991737484948 0.00138936575959721 2248216 897267 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} -65 464 533 0.0235978500112169 0.0236059977740869 0.0235294117647059 0.0235294117647059 0.00227311422236515 0.00240996375753436 2231578 892630 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} -66 517 533 0.0237558120826603 0.0238044972859701 0.0237125200274662 0.0237277790493629 0.00209260753404056 0.0020081112387374 2246516 900136 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} -67 570 533 0.0236588649497782 0.0236791723210334 0.0236362249179828 0.0236057068741894 0.00181478769074614 0.00172821657983245 2237348 895397 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} -68 623 533 0.0236135108645981 0.0234698301766067 0.0236057068741894 0.0234531166552224 0.00173734917851943 0.00172362328368676 2233059 887481 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} -69 676 533 0.0234566591169933 0.0236554243112185 0.0234531166552224 0.0236209658960861 0.00148817877392259 0.00151198508191627 2218226 894499 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} -70 729 533 0.0233070191870833 0.0234226779477647 0.0232547493705653 0.0233463035019455 0.00172872176017566 0.0017837785302385 2204075 885698 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} -71 253 585 0.0235419848603644 0.0235658800336756 0.0234836346990158 0.0236057068741894 0.00170359438980661 0.00178014012693096 2226295 891113 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} -72 306 585 0.0236569826865089 0.0235772251296785 0.0236209658960861 0.0235904478522927 0.00149043586008213 0.00136219318317711 2237170 891542 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} -73 358 585 0.0237234540736486 0.0235241491211055 0.0236972610055695 0.0234683756771191 0.00152172636778609 0.00143304099690984 2243456 889535 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} -74 411 585 0.023623577800735 0.0235589777724711 0.0235904478522927 0.0234836346990158 0.00170542801444634 0.00150397847219065 2234011 890852 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} -75 464 585 0.0238867879975685 0.0236349290911666 0.0238498512245365 0.0235446707866026 0.00223880172125465 0.00202064334503037 2258902 893724 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} -76 517 585 0.023746432489852 0.0237381456638924 0.0236667429617761 0.0238345922026398 0.0021675032428322 0.00233958755646502 2245629 897627 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} -77 570 585 0.0237946839915254 0.0235861372447205 0.0238040741588464 0.0235904478522927 0.00174051264645598 0.00163235099196571 2250192 891879 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} -78 623 585 0.0236072613275635 0.0236842762919625 0.0236057068741894 0.0236362249179828 0.00154526906668726 0.00161698986366044 2232468 895590 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} -79 676 585 0.0234274100147298 0.0235032043284847 0.0233310444800488 0.0233920805676356 0.00134028491453478 0.00144948207875824 2215460 888743 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} -80 729 585 0.0233334025963918 0.0236059448831964 0.0233157854581521 0.0237125200274662 0.00167221771064687 0.00156637555095278 2206570 892628 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} -81 254 636 0.0245539763049491 0.158490622214531 0.024429694056611 0.176546883344778 0.00218311941590989 0.0535170430202685 2321996 8942934 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} -82 306 637 0.0238632385576766 0.0234937104136478 0.0238193331807431 0.0235294117647059 0.00139401168616452 0.00127769413433061 2256675 888384 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} -83 358 637 0.0237790971597335 0.0235603264901777 0.023773556115053 0.0235904478522927 0.00153311892176035 0.00143393424132525 2248718 890903 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} -84 411 637 0.0238070350224161 0.0238003717965145 0.0236667429617761 0.0238040741588464 0.00189944994705061 0.00159728893993628 2251360 899980 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} -85 464 637 0.0238198301828423 0.0236926594980998 0.0237888151369497 0.0236972610055695 0.00204661561897442 0.00195982270661806 2252570 895907 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} -86 517 637 0.0236787133102079 0.023678431848567 0.0236820019836728 0.0236514839398795 0.00178696015708093 0.00161035001454096 2239225 895369 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} -87 570 637 0.0235398170852508 0.0237064111296185 0.0234836346990158 0.0236972610055695 0.00164376586699975 0.00162866856418081 2226090 896427 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} -88 623 637 0.0236260099386673 0.023638340553601 0.0235294117647059 0.0236057068741894 0.00151868978713613 0.00145762597365074 2234241 893853 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} -89 676 638 0.0233528174017989 0.0233235604190492 0.0233157854581521 0.0232547493705653 0.00136268157116024 0.00136592295141967 2208406 881950 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} -90 729 638 0.0234212979463609 0.0234224399387576 0.023422598611429 0.0233768215457389 0.00148747727298674 0.00146533762803936 2214882 885689 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} -91 255 692 0.0243632120949585 0.158000183963909 0.0242465857938506 0.16928358892195 0.00212372604039191 0.0506497881675485 2303956 7755552 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} -92 305 689 0.0237786213066598 0.0238848121031282 0.0237888151369497 0.0238193331807431 0.00152044433396491 0.00135755545821872 2248673 903173 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} -93 358 689 0.0235680193107522 0.023384596506636 0.023575188830396 0.023270008392462 0.00166637989029138 0.0016207656265294 2228757 884258 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} -94 411 689 0.0239769039952148 0.0236479402502189 0.0238651102464332 0.0236209658960861 0.00208916153797582 0.00157799266950996 2267424 894216 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} -95 464 689 0.0239892867496438 0.0237171479803812 0.0238498512245365 0.0237277790493629 0.00208489791133653 0.00172194971594541 2268595 896833 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} -96 517 690 0.0235495033389288 0.0239268603610412 0.0235141527428092 0.0237582970931563 0.0017266917351453 0.0023731382062591 2227006 904763 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} -97 570 690 0.0236096617419575 0.0236049135108325 0.0235446707866026 0.0235294117647059 0.00162281545782229 0.00155113050913863 2232695 892589 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} -98 623 690 0.0234785906564346 0.0235732054220039 0.0233920805676356 0.023575188830396 0.00157115528418552 0.00144017101141355 2220300 891390 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} -99 676 690 0.0234289115955401 0.0233321551887484 0.0233768215457389 0.0232852674143587 0.00149811010182956 0.00147629757354323 2215602 882275 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} -100 729 692 0.0238108629960312 0.164012686786777 0.0238193331807431 0.18295567254139 0.00169582920866831 0.0458372829418296 2251722 9254520 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv deleted file mode 100644 index 81c6c41..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 255 216 0.316156211143622 0.343313194437245 0.31607537956817 0.33667505912871 0.00563943156313752 0.0242139289702235 29897946 19371665 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} -2 306 219 0.316436943308081 0.316282288731635 0.316365300984207 0.31635004196231 0.00493191106182275 0.00486594286097362 29924494 11959802 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} -3 359 219 0.315826043132063 0.315717228903444 0.315831235217823 0.315510795757992 0.00433209062086779 0.00416657342072699 29866723 11938435 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} -4 412 219 0.316309055150895 0.315999692703926 0.31621271076524 0.315800717174029 0.00458817300816052 0.00411794164283755 29912400 11949116 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} -5 465 219 0.315988552243988 0.315855670809213 0.315953307392996 0.315800717174029 0.00609035577475635 0.00601621285373469 29882091 11943670 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} -6 518 219 0.316109408350196 0.316236300102384 0.31607537956817 0.31602960250248 0.00670891178588849 0.00736542256124888 29893520 11958063 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} -7 571 219 0.316107060808365 0.316011619599724 0.316044861524376 0.315587090867475 0.0062777904358497 0.00611175422666218 29893298 11949567 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} -8 623 219 0.316254067684601 0.316695419476991 0.31621271076524 0.316670481422141 0.00590466569400949 0.00619390555644201 29907200 11975424 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} -9 676 219 0.316051290828128 0.315928184220029 0.31616693369955 0.315831235217823 0.0044314791604672 0.00421044847558085 29888024 11946412 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.315545776246165 0.341969171286912 0.315648126955062 0.331364919508659 0.00536409856751946 0.0323072984518795 29840219 21805854 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} -11 253 271 0.316708665987677 0.316453073416919 0.316731517509728 0.316517891203174 0.0050750797838547 0.00470610188788211 29950190 11966260 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} -12 306 271 0.317023543253802 0.317191483138582 0.316777294575418 0.317158770122835 0.00483076949361648 0.00411581036793795 29979967 11994182 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} -13 359 271 0.316480119043635 0.316878580630642 0.316548409246967 0.316807812619211 0.00378455324286288 0.00415822704840465 29928577 11982350 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} -14 412 271 0.315988668563629 0.316462408659085 0.315892271305409 0.316472114137484 0.00414526668842702 0.00359381459185212 29882102 11966613 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} -15 465 271 0.316489921616953 0.316655248845689 0.316472114137484 0.316502632181277 0.00480649816523648 0.00479654034576226 29929504 11973905 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} -16 518 271 0.31639643234974 0.317190160866321 0.316578927290761 0.316990920881971 0.00572852049653571 0.00580441425833751 29920663 11994132 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} -17 571 271 0.316910258498723 0.317127908288254 0.316945143816281 0.316746776531624 0.00600437626170843 0.00574330490273726 29969254 11991778 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} -18 623 271 0.317169217741431 0.317121931617632 0.317174029144732 0.316945143816281 0.00524731843456326 0.00492623274366907 29993743 11991552 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} -19 676 272 0.316204589539449 0.315931595682464 0.31616693369955 0.316014343480583 0.00414912915556623 0.00392967282179878 29902521 11946541 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} -20 729 272 0.315803445398318 0.316212234747226 0.316105897611963 0.316426337071794 0.0048076766339792 0.00455859631563143 29864586 11957153 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} -21 253 323 0.317097205309611 0.316424829681416 0.317128252079042 0.31635004196231 0.00579970135605514 0.00657572672336685 29986933 11965192 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} -22 306 323 0.317078594167173 0.317302342444979 0.317021438925765 0.317112993057145 0.00459292158281235 0.00434617758468427 29985173 11998374 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} -23 359 323 0.316965119070864 0.316122346678895 0.316975661860075 0.315815976195926 0.00470896023152746 0.0049806076020341 29974442 11953754 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} -24 412 323 0.3167022155349 0.317076842133518 0.316624704356451 0.317051956969558 0.00427665502855121 0.00408694804402656 29949580 11989847 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} -25 465 323 0.317186961773824 0.317523664376094 0.317158770122835 0.317387655451286 0.00452777779001783 0.004545912560555 29995421 12006743 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} -26 518 324 0.317671189861622 0.317529693937606 0.317601281757839 0.317814908064393 0.00527372967843012 0.00494800009647388 30041213 12006971 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} -27 570 324 0.326284371950705 0.31747280978492 0.31815060654612 0.317662317845426 0.0604895243206656 0.00551521898793059 30470841 12004820 1425 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} -28 623 324 0.318650326295096 0.317350949173309 0.317357137407492 0.317494468604562 0.0121839001062215 0.00535167190740323 30133807 12000212 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} -29 676 324 0.317329707121422 0.317117092101155 0.317219806210422 0.317296101319905 0.00437119179758358 0.00444206948215433 30008920 11991369 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} -30 729 324 0.316435822409729 0.316733844708908 0.316578927290761 0.316670481422141 0.00419638564513997 0.00421545999934274 29924388 11976877 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} -31 253 375 0.316852289019833 0.316439136667284 0.316655222400244 0.316517891203174 0.00682440180653252 0.00727327483297276 29963772 11965733 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} -32 306 375 0.317208956760342 0.317513985343141 0.317067215991455 0.317326619363699 0.00528819107851439 0.00526042972368231 29997501 12006377 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} -33 359 376 0.317068823317393 0.317795920234719 0.316792553597314 0.3177843900206 0.00528123828158004 0.00548872269244643 29984249 12017038 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} -34 412 376 0.317747432098542 0.318697286789879 0.3177843900206 0.318547341115434 0.00448050417787376 0.00452495365242945 30048423 12051122 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} -35 465 376 0.317421113209623 0.317922038563013 0.317448691538872 0.31787594415198 0.00427988502569556 0.00373446479189702 30017564 12021807 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} -36 527 379 0.317793981103663 0.317895936908572 0.317799649042496 0.317998016327153 0.00478249158031947 0.00486907507650559 30052825 12020820 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} -37 570 376 0.323027026785955 0.317662450072652 0.31787594415198 0.317555504692149 0.0412563935389177 0.00555836810692145 30420681 12011991 1437 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} -38 623 376 0.317924872422469 0.317408838252913 0.317982757305257 0.317387655451286 0.00484049772709167 0.00462941286584 30065203 12002401 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} -39 676 376 0.317150278789098 0.317528556783462 0.317204547188525 0.317448691538872 0.00420920801522324 0.00413087008212498 29991952 12006928 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} -40 729 376 0.31678388249686 0.316408618623491 0.316792553597314 0.316594186312657 0.00410042796335484 0.00387007721592507 29957303 11964579 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} -41 253 428 0.317597083676278 0.317274363163928 0.317296101319905 0.317082475013352 0.00668438229766277 0.00660186906232462 30034205 11997316 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} -42 306 428 0.318298427659838 0.317623707495393 0.318318455786984 0.317616540779736 0.00514269255646949 0.00463337276369986 30100529 12010526 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} -43 359 428 0.318484137252734 0.318591161218178 0.318562600137331 0.318608377203021 0.00493171135464979 0.00496503390962345 30118091 12047109 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} -44 412 428 0.31824235101873 0.318637837429006 0.318226901655604 0.318547341115434 0.00529443569989042 0.00564100449367101 30095226 12048874 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} -45 465 428 0.318052982644422 0.318490324735522 0.31805905241474 0.318348973830777 0.00574167193198004 0.00619755580449587 30077318 12043296 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} -46 517 428 0.317933374330719 0.318016237238916 0.317845426108186 0.31805905241474 0.00497970365786874 0.00496834888176091 30066007 12025369 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} -47 570 428 0.317609974007319 0.317975987271278 0.317540245670253 0.318043793392844 0.00547041561435085 0.00558755853962417 30035424 12023847 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} -48 623 428 0.318118565772491 0.317944543636902 0.31796749828336 0.317982757305257 0.0051108045753309 0.00513990703886393 30083520 12022658 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} -49 676 428 0.317655729923984 0.317208064432741 0.317448691538872 0.317082475013352 0.00463503825488038 0.00433133353967415 30039751 11994809 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} -50 729 428 0.316905774905317 0.317121614272289 0.316731517509728 0.317082475013352 0.00419267849077825 0.00436678720594411 29968830 11991540 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} -51 253 480 0.317770262471567 0.317790922045571 0.317692835889219 0.317601281757839 0.00520016226890708 0.00520171344264215 30050582 12016849 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} -52 306 480 0.318206450547947 0.317858728167136 0.318379491874571 0.31787594415198 0.00460957994576299 0.00477701344097768 30091831 12019413 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} -53 359 480 0.318319597834361 0.31862273707978 0.318394750896468 0.318791485465782 0.00428444710408365 0.00423369502536014 30102531 12048303 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} -54 412 480 0.318248177575255 0.318155287389926 0.318135347524224 0.318135347524224 0.00474298628343277 0.00464628968019571 30095777 12030627 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} -55 464 480 0.31783178498674 0.318003252525309 0.317845426108186 0.31805905241474 0.00633382004033524 0.00685804607829282 30056400 12024878 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} -56 517 480 0.317758767976209 0.317412196824457 0.31783016708629 0.317586022735943 0.00600797849445881 0.00636758353665562 30049495 12002528 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} -57 570 480 0.318101879191373 0.318520446097637 0.31801327534905 0.318760967421988 0.00547788520697075 0.00550670478399459 30081942 12044435 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} -58 623 481 0.317912997244652 0.317662529408988 0.31796749828336 0.317616540779736 0.00550105811928027 0.00569124707782912 30064080 12011994 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} -59 676 481 0.317141470219978 0.317421902302856 0.317174029144732 0.317128252079042 0.00505116748720091 0.00483795835453418 29991119 12002895 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} -60 729 481 0.317278864864125 0.317407753989659 0.317341878385595 0.317448691538872 0.0051436953072842 0.00520428143817501 30004112 12002360 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} -61 253 532 0.317711024051148 0.317754638894718 0.317677576867323 0.317479209582666 0.0052430290150251 0.0054070783761927 30044980 12015477 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} -62 306 532 0.317306030787377 0.317704736339572 0.317280842298009 0.317570763714046 0.00403123364594621 0.00417292247317461 30006681 12013590 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} -63 359 532 0.317939084567604 0.318415933698095 0.317998016327153 0.318318455786984 0.00431075406645824 0.00412099227417007 30066547 12040483 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} -64 411 533 0.318214666944353 0.318234068371261 0.318211642633707 0.31796749828336 0.00450064351081551 0.00421145697310095 30092608 12033606 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} -65 464 533 0.317818831208623 0.318201328910068 0.317906462195773 0.318715190356298 0.00613981595642341 0.00572771856289355 30055175 12032368 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} -66 517 533 0.318342195568105 0.31748090209116 0.318135347524224 0.317219806210422 0.00698998472265751 0.00682357578683418 30104668 12005126 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} -67 570 533 0.317764309020889 0.31793568441275 0.317906462195773 0.31787594415198 0.00571851032054439 0.006228892735617 30050019 12022323 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} -68 623 533 0.317882732989165 0.318475250831742 0.317936980239567 0.318471046005951 0.00542494843293983 0.00528796811600832 30061218 12042726 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} -69 676 533 0.317798887677578 0.317814114701036 0.317799649042496 0.317860685130083 0.0052248600151938 0.00501704702213094 30053289 12017726 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} -70 729 533 0.317481853210853 0.317585573163374 0.317494468604562 0.317570763714046 0.00551077506159746 0.00580013715800419 30023308 12009084 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} -71 253 585 0.317147888949216 0.31745651939066 0.317158770122835 0.317357137407492 0.00535650096683622 0.00543198998147387 29991726 12004204 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} -72 306 585 0.317633502298185 0.317464743924126 0.317586022735943 0.317326619363699 0.00417717319478964 0.00407185067595631 30037649 12004515 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} -73 358 585 0.317882077369374 0.317325905336678 0.31783016708629 0.317143511100938 0.0047916378576126 0.00500301948985424 30061156 11999265 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} -74 411 585 0.31833709865296 0.318639556382945 0.318303196765087 0.318562600137331 0.00516441852652066 0.00459502923018662 30104186 12048939 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} -75 464 585 0.318484613105808 0.318000026180991 0.318303196765087 0.318303196765087 0.00618143739032867 0.00554341624756459 30118136 12024756 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} -76 517 585 0.317836258005633 0.318140821731386 0.31783016708629 0.318379491874571 0.00634009450001827 0.00670969380969532 30056823 12030080 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} -77 570 585 0.318119454031562 0.317367980040036 0.318181124589914 0.317418173495079 0.00532093163507948 0.0051204535030618 30083604 12000856 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} -78 623 585 0.318452688651819 0.318351777047972 0.318303196765087 0.318455786984054 0.00516499373378963 0.00513342254854878 30115117 12038057 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} -79 676 585 0.317925073338211 0.318238326087942 0.317982757305257 0.318165865568017 0.00443652513166843 0.00434963891074487 30065222 12033767 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} -80 729 585 0.317489403412956 0.31770214468594 0.317463950560769 0.317677576867323 0.00548890415296062 0.00532930462866348 30024022 12013492 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} -81 254 636 0.316415572217815 0.34503946654743 0.316456855115587 0.34023041123064 0.00509290010566111 0.0226103475038266 29922473 19469071 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} -82 306 637 0.317372798260873 0.317418596622203 0.317204547188525 0.317601281757839 0.00440287401085315 0.00454265049225204 30012995 12002770 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} -83 358 637 0.317385149291764 0.317580046065321 0.317311360341802 0.317570763714046 0.00509370456433595 0.00515686503988359 30014163 12008875 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} -84 411 637 0.318979436855381 0.316984917765905 0.318089570458534 0.317219806210422 0.00798202717736786 0.00535404584081887 30164930 11986371 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} -85 464 637 0.318846769018433 0.31796689003812 0.31801327534905 0.317677576867323 0.00689529318129692 0.00543629511920592 30152384 12023503 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} -86 517 637 0.318091780531698 0.317997222963797 0.31810482948043 0.31792172121767 0.00490044927716319 0.00434613835491907 30080987 12024650 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} -87 570 637 0.317670904349778 0.318182526198511 0.317586022735943 0.318135347524224 0.00472147885846912 0.00438107646690839 30041186 12031657 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} -88 623 637 0.318251519121283 0.318591822354308 0.318089570458534 0.318699931334401 0.00451109677888811 0.00407491508817359 30096093 12047134 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} -89 676 638 0.317733790977096 0.317543101778337 0.317814908064393 0.317616540779736 0.00403084897028966 0.00373318432580729 30047133 12007478 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} -90 729 638 0.317400672676479 0.316614020396579 0.317219806210422 0.316609445334554 0.00495485378530497 0.00477942373628537 30015631 11972346 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} -91 255 692 0.316015622996626 0.350958725975572 0.316136415655756 0.343724727244984 0.00603534869584294 0.0368857973531483 29884651 17227060 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} -92 305 689 0.316898838024954 0.317709470074268 0.316823071641108 0.317860685130083 0.00521006079104634 0.00519028525032037 29968174 12013769 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} -93 358 689 0.317092626545591 0.31623072011344 0.317128252079042 0.316090638590066 0.00553611098139138 0.00558722411049374 29986500 11957852 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} -94 411 689 0.320138244834972 0.317280154716433 0.318364232852674 0.317296101319905 0.0110649068336406 0.00550087110621049 30274515 11997535 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} -95 464 689 0.320165632822991 0.318206247762881 0.318760967421988 0.318303196765087 0.00947564709652464 0.00525469737191075 30277105 12032554 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} -96 517 690 0.317879222250932 0.319134006872378 0.317677576867323 0.318226901655604 0.00495245799839377 0.0070451702870915 30060886 12067636 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} -97 570 690 0.318295223582475 0.318818618492586 0.318135347524224 0.318364232852674 0.00425911484153194 0.00468512614535418 30100226 12055710 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} -98 623 690 0.317417613045903 0.317298825200764 0.317387655451286 0.317387655451286 0.00420513918824277 0.00401023663423507 30017233 11998241 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} -99 676 690 0.317521401888534 0.317383397734604 0.317677576867323 0.317402914473182 0.00431576543414673 0.00391559404664825 30027048 12001439 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} -100 729 692 0.316952112420183 0.345652485789482 0.316960402838178 0.34004730296788 0.00460383823492141 0.0203426317073283 29973212 19503661 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv deleted file mode 100644 index b374237..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 255 216 0.0331805897839315 0.0360938073625578 0.0332036316472114 0.0357824063477531 0.00215867168839291 0.00326680396538519 3137789 2036616 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} -2 306 219 0.0331901597179693 0.0334983661342802 0.0332036316472114 0.0334782940413519 0.0019314376564994 0.00183026115719577 3138694 1266697 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} -3 359 219 0.0330288138024462 0.0332637950351057 0.0329900053406577 0.033325703822385 0.00167300642469557 0.00169343788154385 3123436 1257827 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} -4 412 219 0.0331470897275429 0.0332272474298002 0.0331273365377279 0.0331883726253147 0.00179094249585381 0.00149325173506092 3134621 1256445 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} -5 465 219 0.0332759295908758 0.0333262327312895 0.0333104448004883 0.0332036316472114 0.00230531097562792 0.00235439274374149 3146805 1260188 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} -6 518 219 0.0332839450715395 0.03325096899417 0.0332646677347982 0.0332036316472114 0.00250943562349375 0.0026429434000538 3147563 1257342 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} -7 571 219 0.0331969697041796 0.0330774604280275 0.0330357824063478 0.032974746318761 0.00250208691530974 0.00245477900468586 3139338 1250781 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} -8 623 219 0.0331772588124156 0.0334976785527042 0.0331578545815213 0.0334019989318685 0.00236802197810134 0.00227371413569456 3137474 1266671 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} -9 676 219 0.0333427710859618 0.0332188906691081 0.0332646677347982 0.0331883726253147 0.00170363859509647 0.00151179684386989 3153126 1256129 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} -10 730 217 0.0331692962043157 0.0359804756658983 0.0331425955596246 0.0352483405813687 0.00217507044165044 0.00405941638767052 3136721 2294315 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} -11 253 271 0.0332055773575572 0.0332894471169771 0.0331120775158312 0.0332341496910048 0.00203587570337382 0.00193655434407208 3140152 1258797 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} -12 306 271 0.0333218335507189 0.0333064779837041 0.0332951857785916 0.033325703822385 0.0016877261099988 0.00154100986355473 3151146 1259441 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} -13 359 271 0.0333719673156615 0.0333256773769398 0.0334172579537652 0.0333562218661784 0.00163042309344912 0.00154810230378215 3155887 1260167 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} -14 412 271 0.0333274803405268 0.0331332338720138 0.0333714808880751 0.0331578545815213 0.00159399249624002 0.00153988446933434 3151680 1252890 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} -15 465 271 0.033433521554373 0.033236609117411 0.0334172579537652 0.0333562218661784 0.00181862527841127 0.00184178358305008 3161708 1256799 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} -16 518 271 0.0330817815368056 0.0332270094207932 0.0330663004501411 0.0331273365377279 0.00225266255995115 0.00234297140317026 3128445 1256436 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} -17 571 271 0.0332863877839845 0.0330793380546387 0.0331425955596246 0.0330205233844511 0.00235772932145014 0.00226642554306772 3147794 1250852 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} -18 623 271 0.0332309879116929 0.0333328969834871 0.0332341496910048 0.0332799267566949 0.00199864440045525 0.00190503055843481 3142555 1260440 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} -19 676 272 0.0332229724310292 0.0331451343223665 0.0331883726253147 0.0330815594720378 0.00162153367928555 0.00159725483336396 3141797 1253340 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} -20 729 272 0.0332497365227967 0.0332653288709289 0.0332494087129015 0.0332646677347982 0.00185064000675128 0.00180519106589736 3144328 1257885 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} -21 253 323 0.0332493241167995 0.0330706110577133 0.0330815594720378 0.0331120775158312 0.00227590000343453 0.0023473890291465 3144289 1250522 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} -22 306 323 0.0333686046206074 0.0331912816242898 0.0333104448004883 0.0331120775158312 0.00178650232799894 0.00157769116039671 3155569 1255085 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} -23 359 323 0.0333706032035169 0.0334398423639901 0.0333867399099718 0.0334172579537652 0.00182937926060443 0.00198710087803381 3155758 1264484 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} -24 412 323 0.0333297432862551 0.0333944355345332 0.0334019989318685 0.0334172579537652 0.00166109838413361 0.00166574129477716 3151894 1262767 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} -25 465 323 0.033305823738417 0.0334383349736121 0.0332799267566949 0.0334630350194553 0.00177121904100381 0.00176218322527486 3149632 1264427 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} -26 518 324 0.0334402469444813 0.0334478817793395 0.0334172579537652 0.0334477759975586 0.00194333367927892 0.00207250811915274 3162344 1264788 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} -27 570 324 0.0363293201471274 0.0332365562265206 0.0335088120851453 0.0332799267566949 0.0187790479691804 0.00217144674737879 3435555 1256797 1443 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} -28 623 324 0.0334126474662066 0.0334057277396456 0.033173113603418 0.0334172579537652 0.00236684391296569 0.00193524166680428 3159734 1263194 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} -29 676 324 0.0332419113833625 0.0332757748217941 0.0332188906691081 0.0332951857785916 0.0016827675578028 0.00162196998394006 3143588 1258280 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} -30 729 324 0.0332565993815708 0.0331756259207147 0.0332341496910048 0.0331578545815213 0.00165943622468115 0.00155487932928283 3144977 1254493 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} -31 253 375 0.0334110507147815 0.0333677785257431 0.0333104448004883 0.0332188906691081 0.00256802753535974 0.00291894809824103 3159583 1261759 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} -32 306 375 0.0332605859728771 0.0332569192193463 0.0332341496910048 0.0332036316472114 0.00196619929843431 0.00190397860695583 3145354 1257567 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} -33 359 376 0.0334918928647471 0.0332636099169891 0.0334630350194553 0.0331578545815213 0.00194352344668909 0.00194370135807788 3167228 1257820 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} -34 412 376 0.0333380125552247 0.0333821119570568 0.033325703822385 0.033325703822385 0.001706476878235 0.00173407612433303 3152676 1262301 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} -35 465 376 0.0334158409690568 0.0334786907230304 0.0333714808880751 0.0334630350194553 0.00165291395188356 0.00161249826061866 3160036 1265953 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} -36 527 379 0.0333803211807332 0.0332097140996139 0.0333409628442817 0.0332036316472114 0.00191189188558315 0.00191280669923255 3156677 1255782 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} -37 570 376 0.03434715945588 0.0334902473825951 0.0334630350194553 0.0334172579537652 0.00809237043490993 0.00210265418600843 3248108 1266390 1443 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} -38 623 376 0.0333980652131259 0.0335959762726176 0.0333409628442817 0.0337376974135958 0.00186651143371584 0.00184861469440214 3158355 1270388 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} -39 676 376 0.0332559860598313 0.0334255618235668 0.0332494087129015 0.0333867399099718 0.00167443447960264 0.00171713364331603 3144919 1263944 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} -40 729 376 0.0332529300256469 0.0334132118006452 0.0332188906691081 0.0334477759975586 0.0016249836285436 0.00157154515195038 3144630 1263477 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} -41 253 428 0.0332309773371801 0.0333372340365045 0.0330968184939345 0.0333562218661784 0.00242477502266878 0.00258356341644722 3142554 1260604 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} -42 306 428 0.0334011952688996 0.0333817152753784 0.0334172579537652 0.0334477759975586 0.00201113004697139 0.00186244298882632 3158651 1262286 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} -43 359 428 0.0334569123765736 0.0333574383566589 0.0335088120851453 0.0333562218661784 0.00189107703840059 0.00191325135922247 3163920 1261368 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} -44 412 428 0.0333217066565659 0.0331167848050819 0.033325703822385 0.0330205233844511 0.00188440179043622 0.0020521371783585 3151134 1252268 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} -45 465 428 0.0335504227928124 0.0333323416291373 0.0335545891508354 0.0332188906691081 0.00211150020599901 0.00221163574916149 3172763 1260419 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} -46 517 428 0.033448516213451 0.0335656169014956 0.0334172579537652 0.0336003662165255 0.00196922886087676 0.00197275497069194 3163126 1269240 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} -47 570 428 0.0334832957858822 0.0334555774039009 0.0333714808880751 0.0333867399099718 0.00213842121370485 0.0022147829583709 3166415 1265079 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} -48 623 428 0.0333881463201674 0.0333126662178875 0.0333714808880751 0.0333867399099718 0.00207374822523872 0.00211948305367552 3157417 1259675 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} -49 676 428 0.0332991089228214 0.0333183784340568 0.0333104448004883 0.033325703822385 0.00169310362320744 0.0015176580326984 3148997 1259891 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} -50 729 428 0.0332153693563627 0.0334156447816062 0.0332188906691081 0.0334172579537652 0.00162825873253432 0.00163129205044928 3141078 1263569 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} -51 253 480 0.0333383192160944 0.0334468504069756 0.0333562218661784 0.0333867399099718 0.00194456488642632 0.00194038129537073 3152705 1264749 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} -52 306 480 0.0334089358122318 0.0335342526034549 0.0334172579537652 0.0335393301289387 0.00171775509604467 0.00190155795961738 3159383 1268054 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} -53 359 480 0.0334368842494272 0.0336921319114675 0.0334019989318685 0.0336156252384222 0.00156870067240088 0.00150741777292242 3162026 1274024 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} -54 412 480 0.033364829519556 0.0335153705555619 0.0333409628442817 0.0335088120851453 0.0018065032592822 0.00184429683145803 3155212 1267340 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} -55 464 480 0.0335094042578593 0.033433574793471 0.0334782940413519 0.0333867399099718 0.00239298233607892 0.0029043833409393 3168884 1264247 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} -56 517 480 0.0334182308089381 0.033461263174625 0.0333714808880751 0.0332341496910048 0.00236350874664092 0.00250147278620189 3160262 1265294 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} -57 570 480 0.0334294503669647 0.0335719902537956 0.0334172579537652 0.0335698481727321 0.00213777784553901 0.00194929301075441 3161323 1269481 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} -58 623 481 0.0332135293911444 0.0335908458562434 0.0331578545815213 0.0335088120851453 0.00221938359085485 0.00228031446513608 3140904 1270194 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} -59 676 481 0.0332869693821857 0.0334493891697175 0.0332036316472114 0.0333409628442817 0.00193166593936154 0.00175599043694208 3147849 1264845 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} -60 729 481 0.0333140507093357 0.0332276176660334 0.0332646677347982 0.033325703822385 0.00193631367993084 0.0020738931218222 3150410 1256459 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} -61 253 532 0.0333099160748508 0.0333386356451016 0.0332494087129015 0.0332951857785916 0.00194818077241555 0.00207443721517914 3150019 1260657 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} -62 306 532 0.0333868350805865 0.0333779335767108 0.0334019989318685 0.0334019989318685 0.00156645857886556 0.00156253020797144 3157293 1262143 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} -63 359 532 0.0334100038380194 0.0334919134456445 0.0334325169756619 0.0334935530632486 0.00160891700090982 0.00158629243680334 3159484 1266453 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} -64 411 533 0.0333696197738313 0.0334988157068491 0.0333409628442817 0.0334172579537652 0.00172438848185074 0.00174937064619662 3155665 1266714 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} -65 464 533 0.0332201384616125 0.0335661193649549 0.033173113603418 0.0335545891508354 0.00231403411469267 0.00212426094840151 3141529 1269259 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} -66 517 533 0.0334941452359626 0.0334196909347262 0.0334172579537652 0.0335088120851453 0.00259495546419079 0.00270884563533779 3167441 1263722 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} -67 570 533 0.0333765883777328 0.0331696228046479 0.0333867399099718 0.0331273365377279 0.00215711212994891 0.00234182717993369 3156324 1254266 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} -68 623 533 0.0333331482793602 0.0333962602702539 0.0333714808880751 0.0334325169756619 0.00221532148535278 0.00202360404740472 3152216 1262836 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} -69 676 533 0.0333723902961715 0.0332281994658284 0.0333867399099718 0.0331578545815213 0.00200621396351122 0.00194716681082862 3155927 1256481 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} -70 729 533 0.0333940786218195 0.0334352673019656 0.0334019989318685 0.0335545891508354 0.0021147877418272 0.00230306320396935 3157978 1264311 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} -71 253 585 0.0333476670853645 0.0332871728086874 0.0333409628442817 0.0332036316472114 0.00204880188702694 0.00210621158706091 3153589 1258711 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} -72 306 585 0.0334820479933778 0.0333197271517634 0.033524071107042 0.0334019989318685 0.00162693204216793 0.00146972448666292 3166297 1259942 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} -73 358 585 0.0334608355208035 0.0334483313519083 0.0334630350194553 0.0334172579537652 0.00179610432272713 0.0019444086609903 3164291 1264805 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} -74 411 585 0.0334530844029585 0.0332514979030745 0.0333562218661784 0.0332799267566949 0.00183480808776505 0.00175424785419652 3163558 1257362 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} -75 464 585 0.0335551707490366 0.0334355846473083 0.0335393301289387 0.0333409628442817 0.00224775562770058 0.0022525357662325 3173212 1264323 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} -76 517 585 0.0334400566032518 0.0333658744536867 0.033325703822385 0.0332188906691081 0.00243918608021574 0.002505431685706 3162326 1261687 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} -77 570 585 0.0334368419513762 0.0334992652794179 0.0334325169756619 0.0336461432822156 0.00197173036508189 0.00202761780186473 3162022 1266731 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} -78 623 585 0.0335411806686698 0.0335416308826736 0.0335088120851453 0.0335545891508354 0.0020350337933417 0.00203439424624663 3171889 1268333 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} -79 676 585 0.0333702648191089 0.0334197438256166 0.0333409628442817 0.0333714808880751 0.00175143784801031 0.00170470489160176 3155726 1263724 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} -80 729 585 0.0333006633761955 0.0332514714576293 0.0332646677347982 0.0331578545815213 0.00216816771598055 0.00211369006018199 3149144 1257361 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} -81 254 636 0.0330089231439655 0.0362036333308433 0.0329900053406577 0.0360265506981002 0.00191685383408559 0.00309604806287365 3121555 2042813 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} -82 306 637 0.0333462923987071 0.0333655042174535 0.0333714808880751 0.0333867399099718 0.00165673828424508 0.00165646248788116 3153459 1261673 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} -83 358 637 0.0334244803459727 0.0333512236770302 0.0334019989318685 0.0333409628442817 0.00190189313060787 0.00201453436055157 3160853 1261133 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} -84 411 637 0.0335224214830532 0.0334054368397481 0.0334325169756619 0.0333104448004883 0.00206103978143823 0.00183173711370355 3170115 1263183 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} -85 464 637 0.0336741234429493 0.0334382556372764 0.0336919203479057 0.0334172579537652 0.00213196503963079 0.00195419864269987 3184461 1264424 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} -86 517 637 0.0333325561066463 0.0335725191627002 0.0333104448004883 0.0335393301289387 0.00175887885534953 0.00171836088386064 3152160 1269501 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} -87 570 637 0.033330546949224 0.0334151158727017 0.0332951857785916 0.0333562218661784 0.00169375846273176 0.00171884343867002 3151970 1263549 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} -88 623 637 0.0335130524647577 0.0334463743889615 0.0335545891508354 0.0334630350194553 0.00170130871151183 0.00154089871577413 3169229 1264731 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} -89 676 638 0.0333094296472644 0.0334323054121 0.0333104448004883 0.0333867399099718 0.0015224378329931 0.00156658975217151 3149973 1264199 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} -90 729 638 0.0332674171081129 0.0333971858608369 0.0332341496910048 0.0333409628442817 0.00192392361383081 0.00191648976243544 3146000 1262871 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} -91 255 692 0.0330838647158171 0.0371101653505506 0.0330357824063478 0.0365606164644846 0.0023031220834307 0.00467534395647309 3128642 1821579 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} -92 305 689 0.0332101032490138 0.0333325796381443 0.0332494087129015 0.0333104448004883 0.00191250732195682 0.00196424844625776 3140580 1260428 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} -93 358 689 0.0331818058528976 0.0332132577892745 0.0331273365377279 0.0332188906691081 0.00218645797751311 0.00210335920807025 3137904 1255916 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} -94 411 689 0.0336707607478951 0.033259087745855 0.0336156252384222 0.0332036316472114 0.00231341740907953 0.00208081905658446 3184143 1257649 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} -95 464 689 0.0336342681043986 0.033442037335944 0.033524071107042 0.0334477759975586 0.00219519216397275 0.00208733801050547 3180692 1264567 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} -96 517 690 0.0332942023489059 0.0334012055685116 0.0332341496910048 0.0333562218661784 0.00175034971479486 0.00173776230118962 3148533 1263023 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} -97 570 690 0.0333858093528499 0.0333753419230784 0.0333867399099718 0.033325703822385 0.00158229418355421 0.00161179445310458 3157196 1262045 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} -98 623 690 0.0332239029881511 0.0332922767796165 0.033173113603418 0.0332646677347982 0.00155029009553197 0.0016363388006109 3141885 1258904 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} -99 676 690 0.0333586011315469 0.033077063746349 0.0333714808880751 0.032974746318761 0.00164800177594748 0.00151545883581374 3154623 1250766 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} -100 729 692 0.0331180415410216 0.0361612412514277 0.0331883726253147 0.0359502555886168 0.00182374939172726 0.00274502832110671 3131874 2040421 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv deleted file mode 100644 index a0cf875..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 101 231 0.234664999009066 0.93314281709014 0.234027618829633 1 0.00683675541320027 0.174823444123989 20792098 52653176 1352 861 79 True 99 231 32 {X=0,Y=0,Width=0,Height=0} -2 152 231 0.231932279738502 0.230663784642046 0.231464103150988 0.230685893034257 0.0059479041243466 0.00586076101251957 20549970 8722250 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} -3 205 231 0.231012867237932 0.231197771072094 0.231006332494087 0.231113145647364 0.00555845154838659 0.00493473836206077 20468507 8742442 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} -4 259 231 0.231412355654393 0.231565627215219 0.231403067063401 0.231555657282368 0.00457085734518175 0.00420625196169277 20503903 8756352 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} -5 312 231 0.232111426524424 0.231796813297405 0.232089723048753 0.231876096742199 0.00395442101390926 0.00426388554720669 20565843 8765094 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} -6 366 232 0.232553294842676 0.231795147234355 0.23270008392462 0.231876096742199 0.00355163767487927 0.00364152971277152 20604994 8765031 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} -7 419 232 0.232705839916608 0.232096281519169 0.232715342946517 0.232196536202029 0.00408060685510246 0.00388775919190104 20618510 8776418 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} -8 472 232 0.232709880397258 0.233186362771477 0.232669565880827 0.233066300450141 0.0055434698691338 0.00632349984842531 20618868 8817638 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} -9 526 232 0.234024503822204 0.233845991511805 0.23404287785153 0.234073395895323 0.00583720164148633 0.00578363460710039 20735348 8842581 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} -10 577 231 0.236973727395317 0.927443262269002 0.236972610055695 1 0.00552724710426998 0.190781858309876 20996659 52331575 1352 861 80 True 579 232 32 {X=0,Y=0,Width=0,Height=0} -11 98 283 0.230355070216331 0.230073733868113 0.230289158464942 0.229953459983215 0.00386520463201129 0.00366779864977095 20410224 8699938 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} -12 152 284 0.231208920839535 0.230128211485283 0.231204699778744 0.229953459983215 0.00432180630959584 0.00424662425071997 20485878 8701998 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} -13 205 284 0.231441801503601 0.231138030811324 0.231509880216678 0.231219958800641 0.00493484949876092 0.00507952191376603 20506512 8740183 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} -14 259 284 0.23235134981398 0.231609024190839 0.2323338673991 0.231525139238575 0.00425882534500419 0.00470408241186258 20587101 8757993 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} -15 312 284 0.232209695979789 0.232688950392179 0.232135500114443 0.232486457618067 0.00342357815503228 0.00346735723794332 20574550 8798829 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} -16 365 284 0.232736448250472 0.232698232743454 0.232806897077897 0.232883192187381 0.00359027339442626 0.00387563213137598 20621222 8799180 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} -17 419 285 0.233388839154108 0.233338688535992 0.233386739909972 0.233493553063249 0.0037342259053789 0.00354865863239039 20679026 8823398 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} -18 472 285 0.233730857940763 0.234218422716955 0.233783474479286 0.233844510566873 0.0049383362768815 0.00487444163288805 20709330 8856664 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} -19 526 285 0.233535323507065 0.233360030010291 0.233417257953765 0.233295185778592 0.00536653254399803 0.00520460162709014 20692005 8824205 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} -20 579 285 0.234194418448428 0.234232227239364 0.23422598611429 0.234149691004807 0.00474127970458844 0.00456006269769338 20750403 8857186 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} -21 98 336 0.230333332881883 0.230271096225852 0.230548561837186 0.230258640421149 0.00454193660716111 0.00463275022045729 20408298 8707401 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} -22 152 336 0.231688519120954 0.231067209909003 0.231769283588922 0.231067368581674 0.00436508296710693 0.00429620427618218 20528372 8737505 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} -23 205 337 0.231626467270075 0.231914971546684 0.231479362172885 0.231815060654612 0.00481808160893363 0.00451244013002306 20522874 8769562 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} -24 258 337 0.232704158264047 0.232660389311333 0.232684824902724 0.232547493705653 0.00473562619007389 0.00445445797405781 20618361 8797749 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} -25 312 337 0.233295750091532 0.23341257710996 0.233264667734798 0.233417257953765 0.00369056684893778 0.00353175800803304 20670778 8826192 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} -26 365 337 0.233718172185873 0.233885157216188 0.233707179369802 0.233936064698253 0.00407772594738716 0.00421541865454201 20708206 8844062 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} -27 419 337 0.234193808990453 0.234116369743819 0.23422598611429 0.234058136873426 0.00390874269022534 0.00382921343807284 20750349 8852805 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} -28 472 338 0.234494937661478 0.234643374576327 0.234561684596017 0.234729533836881 0.00470839315940646 0.00483912725280542 20777030 8872733 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} -29 525 338 0.234752636808643 0.234403355715436 0.234790569924468 0.234561684596017 0.00434135556041 0.00445784862206752 20799863 8863657 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} -30 579 338 0.23443738902786 0.235108735076009 0.234378576333257 0.234500648508431 0.00427539321494401 0.00639588944888605 20771931 8890330 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} -31 98 389 0.230622272393405 0.231093152890771 0.23067063401236 0.23099107347219 0.00465282173025356 0.0043296468718016 20433899 8738486 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} -32 151 389 0.231866288983302 0.231089027401316 0.231769283588922 0.23080796520943 0.0045106953442147 0.00473538158299041 20544123 8738330 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} -33 205 389 0.232280630116343 0.232100063217837 0.232257572289616 0.232074464026856 0.00479632458563092 0.00513837641715689 20580835 8776561 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} -34 258 390 0.233062101961868 0.233316871043679 0.233218890669108 0.233325703822385 0.00499896526737166 0.00532437117373088 20650076 8822573 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} -35 312 390 0.233848923494063 0.233510980611654 0.233798733501183 0.233371480888075 0.00415028864050133 0.00385127773638925 20719791 8829913 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} -36 365 390 0.234787770932286 0.234794378068581 0.234805828946365 0.234836346990158 0.00430332289058637 0.0042080190887271 20802976 8878443 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} -37 418 390 0.235477485493772 0.235374115118874 0.235431448844129 0.235202563515679 0.00434935896009846 0.00413179021977591 20864087 8900365 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} -38 472 390 0.235302277612171 0.235139200228912 0.235278858625162 0.235019455252918 0.00474935489811038 0.00411140776273665 20848563 8891482 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} -39 525 391 0.235712770130961 0.234474414626764 0.235614557106889 0.234287022201877 0.00500157784891816 0.0038095681384259 20884934 8866344 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} -40 579 391 0.23464428872417 0.235390035276902 0.234470130464637 0.234943160143435 0.00426274716420167 0.00527992407812001 20790263 8900967 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} -41 98 442 0.231228683078693 0.231376515836392 0.231189440756847 0.230914778362707 0.00524146598872679 0.00530831795373523 20487629 8749201 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} -42 151 442 0.232141741415559 0.232323791684468 0.232089723048753 0.232211795223926 0.00537565609985599 0.00496091347908531 20568529 8785021 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} -43 205 442 0.232720117033989 0.232729359032488 0.232578011749447 0.233020523384451 0.00585429035242303 0.00605235854959718 20619775 8800357 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} -44 258 442 0.233654066235893 0.233437911846488 0.233600366216526 0.233676661326009 0.00574639846525192 0.00628396294266762 20702526 8827150 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} -45 311 443 0.234883579983233 0.234857635573567 0.234897383077745 0.234744792858778 0.00461697400808271 0.00447727633278745 20811465 8880835 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} -46 365 443 0.236360195080726 0.235878429759377 0.236255436026551 0.235965514610513 0.00444667115240614 0.00519775048932992 20942298 8919435 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} -47 418 443 0.236928334062426 0.236996516738182 0.236621652552071 0.236545357442588 0.00560284986072215 0.00495876404436877 20992637 8961714 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} -48 472 443 0.238593937563513 0.235865656609332 0.23746089875639 0.235812924391546 0.00880727578879933 0.00541561261024736 21140215 8918952 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} -49 525 443 0.235984193368826 0.23542928031762 0.236057068741894 0.235400930800336 0.00484260058227679 0.00499093612332391 20908983 8902451 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} -50 578 444 0.234970777618717 0.235990188210911 0.234775310902571 0.236057068741894 0.00466686124022132 0.00458024429131524 20819191 8923661 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} -51 98 494 0.231518311052001 0.231727023767447 0.231464103150988 0.231754024567025 0.00513084228250775 0.00541342146611943 20513291 8762455 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} -52 151 495 0.232418266042401 0.233034407243196 0.232440680552377 0.233310444800488 0.00524560501573758 0.00543163610508427 20593030 8811892 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} -53 204 495 0.233055510786729 0.233091582295779 0.232806897077897 0.233188372625315 0.00600781004005419 0.00629627607474393 20649492 8814054 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} -54 258 495 0.233706028171405 0.234089580507803 0.233783474479286 0.234332799267567 0.00507905978094534 0.00514201053155785 20707130 8851792 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} -55 311 495 0.236257580415723 0.236188053032109 0.236377508201724 0.236240177004654 0.0041428704065595 0.00400971886102667 20933206 8931143 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} -56 365 496 0.237720448849998 0.237823994719373 0.237659266041047 0.237949187457084 0.00407402461117207 0.00413290324850259 21062821 8993004 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} -57 418 496 0.238199697257394 0.23817815212187 0.238071259632258 0.238178072785534 0.00496097795112 0.00489368534441567 21105284 9006396 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} -58 471 496 0.237644165026773 0.238107119655987 0.237720302128634 0.238330663004501 0.00585960727556351 0.00626438021203104 21056062 9003710 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} -59 525 496 0.236683252952598 0.236932333642613 0.236575875486381 0.236926832990005 0.00523630792433542 0.00501097307764624 20970922 8959287 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} -60 578 496 0.235780261958581 0.235971782181033 0.235782406347753 0.23575188830396 0.00495338129035766 0.00489930712857276 20890914 8922965 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} -61 97 547 0.23209397796832 0.231593791614387 0.23224231326772 0.231647211413748 0.00402263523936934 0.00364124812045122 20564297 8757417 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} -62 151 547 0.232735793647462 0.232577958858556 0.23270008392462 0.232364385442893 0.00451242743820488 0.00408183896142873 20621164 8794632 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} -63 204 548 0.233793191948112 0.233080316536112 0.233920805676356 0.232898451209277 0.00530913402110193 0.00572034614293115 20714853 8813628 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} -64 258 548 0.234562926084485 0.234437391003445 0.234805828946365 0.234515907530327 0.00445270103113874 0.00433258873867417 20783054 8864944 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} -65 311 548 0.238918191778818 0.237368075243639 0.237186236362249 0.237476157778286 0.01882199969403 0.00385059816918359 21168945 8975764 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} -66 364 548 0.24211021663748 0.24019297770292 0.240451667048142 0.240131227588312 0.00799854265877026 0.00387017448401757 21451769 9082584 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} -67 418 549 0.276775309064135 0.260550152530717 0.245334554055085 0.25113298237583 0.0928722999789412 0.0325530881305669 22582395 9852364 1245 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} -68 471 549 0.24051560370424 0.239276405016754 0.240177004654002 0.239581902800031 0.00680898458078115 0.0058309154474618 21310481 9047925 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} -69 525 549 0.237425595338865 0.237395737179347 0.237338826581216 0.237430380712596 0.00523828972190922 0.0054613205073582 21036696 8976810 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} -70 578 549 0.235852200572168 0.235687255635822 0.23588921950103 0.235461966887922 0.00442438802681205 0.00412038751407796 20897288 8912206 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} -71 97 600 0.232994508557919 0.232506847056338 0.232776379034104 0.232349126420996 0.00478172642525121 0.00415794490607954 20644087 8791943 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} -72 151 600 0.233010647908002 0.233347891550931 0.233020523384451 0.233432516975662 0.00435539107239267 0.00490761826368179 20645517 8823746 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} -73 204 600 0.233420824411546 0.233732540551776 0.233401998931868 0.233615625238422 0.00459939856804687 0.00505856418938939 20681860 8838291 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} -74 257 601 0.234486608402484 0.234082678246598 0.234653238727398 0.233905546654459 0.00457514257930402 0.00431037398672323 20776292 8851531 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} -75 311 601 0.236868437886978 0.236842577801508 0.236713206683452 0.236758983749142 0.00374106997705449 0.00339549342105079 20987330 8955893 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} -76 364 601 0.245144324163022 0.240615602363112 0.240512703135729 0.240863660639353 0.0133945001342796 0.00428054065285955 21720601 9098565 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} -77 418 601 0.290390299775997 0.392502028696217 0.247699702449073 0.272968642710002 0.10476254517849 0.252144714426315 23674226 14841952 1244 577 10 False 418 601 27 {X=0,Y=0,Width=0,Height=0} -78 471 601 0.240664322736439 0.239251493407349 0.240802624551766 0.239200427252613 0.00576492038309854 0.00506051852733927 21323658 9046983 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} -79 524 602 0.237545444121055 0.237213528061725 0.237430380712596 0.237323567559319 0.0051335541549828 0.00520547838650922 21047315 8969920 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} -80 578 602 0.235172327628355 0.23489280801572 0.235202563515679 0.235004196231022 0.00414795675345652 0.00414982919016687 20837049 8882165 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} -81 99 654 0.237603365201214 0.94363384656637 0.237384603646906 1 0.00574476531510802 0.145307685869953 21052447 53245139 1352 861 79 True 97 653 32 {X=0,Y=0,Width=0,Height=0} -82 150 653 0.23459352313209 0.234231037194329 0.234485389486534 0.234149691004807 0.00472085633083679 0.00401993069721232 20785765 8857141 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} -83 204 653 0.233166274130586 0.233377748458594 0.233203631647211 0.233356221866178 0.00499417118060241 0.00461827202056758 20659306 8824875 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} -84 257 653 0.234253027990373 0.233843373412728 0.234439612420844 0.233798733501183 0.00431317067829282 0.00468772786017697 20755596 8842482 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} -85 311 654 0.235705975803164 0.235724094141025 0.235523002975509 0.235553521019303 0.00453286783567333 0.00347302316210146 20884332 8913599 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} -86 364 654 0.236731851582988 0.236901947826046 0.236697947661555 0.236881055924315 0.00395231168041768 0.0040178423242229 20975228 8958138 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} -87 417 654 0.240496417064282 0.238492905810977 0.238605325398642 0.238651102464332 0.00861831979425966 0.00411879165015045 21308781 9018298 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} -88 471 654 0.238476695907106 0.237863662887216 0.237933928435187 0.23768978408484 0.00592711516367966 0.00506526023637782 21129827 8994504 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} -89 524 654 0.236051290177388 0.236468480533309 0.236087586785687 0.236667429617761 0.00417305353620919 0.00401587114659126 20914928 8941747 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} -90 577 655 0.235264096198653 0.234886804899653 0.235095750362402 0.234943160143435 0.0042687365919544 0.00364615117108091 20845180 8881938 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} -91 99 709 0.237940553469103 0.939792560597679 0.23759822995346 1 0.00769752411018085 0.157059061171633 21082323 53028392 1352 861 79 True 97 706 32 {X=0,Y=0,Width=0,Height=0} -92 150 706 0.23476131594166 0.233045963902761 0.234287022201877 0.232898451209277 0.007365299425192 0.00441026676108066 20800632 8812329 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} -93 204 706 0.233417145091177 0.232562858509331 0.233401998931868 0.23237964446479 0.00542585178310966 0.00545640438471024 20681534 8794061 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} -94 257 706 0.233251237086827 0.232963030986525 0.233188372625315 0.232730601968414 0.00470710405755658 0.00488735056455581 20666834 8809193 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} -95 310 706 0.233940071320127 0.234469548664842 0.233905546654459 0.234348058289464 0.00392853865404545 0.00398689893169775 20727867 8866160 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} -96 364 707 0.235335165770312 0.235012552991714 0.234988937209125 0.234958419165332 0.00533437602279696 0.00444141189148208 20851477 8886693 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} -97 417 707 0.235635346395598 0.235669431405738 0.235812924391546 0.235538261997406 0.00431753942061539 0.00426867199553324 20878074 8911532 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} -98 471 707 0.235409135910483 0.235294249874285 0.235263599603265 0.235187304493782 0.00469487894447249 0.00440179205107986 20858031 8897345 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} -99 524 707 0.23571588513839 0.234508529251109 0.235675593194476 0.234348058289464 0.00435706880919049 0.00478193966578519 20885210 8867634 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} -100 578 708 0.238185216987354 0.924281915480437 0.237964446478981 1 0.00527863893822685 0.185404964972635 21104001 52153194 1352 861 79 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv deleted file mode 100644 index 6946c4b..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 101 231 0.0234818063250903 0.144723723534525 0.0233615625238422 0.159716182192721 0.00209236932192275 0.038819792378046 2080566 8166128 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} -2 152 231 0.023180023051055 0.0231334441133034 0.0230869001297017 0.0232394903486687 0.00218829010973403 0.00228413297763524 2053827 874761 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} -3 205 231 0.0232589252863211 0.0231286045968266 0.023224231326772 0.0230563820859083 0.00218896461894004 0.00210655058158972 2060818 874578 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} -4 259 231 0.0233359540026265 0.0233135375953077 0.023270008392462 0.0233615625238422 0.00183877840505628 0.00184820407355056 2067643 881571 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} -5 312 231 0.0234157704248554 0.0233179275392156 0.0234531166552224 0.023270008392462 0.00163110748670505 0.00170951775532982 2074715 881737 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} -6 366 232 0.0233656932945628 0.0233810792624207 0.0233615625238422 0.0233768215457389 0.00147527927963149 0.00143138847114871 2070278 884125 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} -7 419 232 0.0234129488601556 0.0233173192939754 0.0234073395895323 0.0232852674143587 0.00167723990025247 0.00155699261634054 2074465 881714 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} -8 472 232 0.0235974791915247 0.0234248464742734 0.0235446707866026 0.0235446707866026 0.00226304029053292 0.00236220663958903 2090815 885780 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} -9 526 232 0.0235860574976197 0.0235270845655258 0.0236362249179828 0.023422598611429 0.00221000823244417 0.00240632848901387 2089803 889646 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} -10 577 231 0.0237624730089121 0.144366439119383 0.0238193331807431 0.160967421988251 0.00194862166902326 0.0399048568880723 2105434 8145968 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} -11 98 283 0.0230209432332784 0.0231022913788245 0.0229953459983215 0.0231174181734951 0.0015497294434509 0.00160705915318953 2039732 873583 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} -12 152 284 0.023271306312224 0.0232710397648259 0.0232852674143587 0.0231631952391852 0.0017398973998672 0.0017595070144931 2061915 879964 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} -13 205 284 0.023264782854638 0.0233614831875065 0.023224231326772 0.023270008392462 0.00189836483587988 0.00210445042436477 2061337 883384 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} -14 259 284 0.0234002856777827 0.0234698830674971 0.0234073395895323 0.0235141527428092 0.00175534409150535 0.00184737408489081 2073343 887483 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} -15 312 284 0.023469391440411 0.0234113328517618 0.0234683756771191 0.0234683756771191 0.00141383021171817 0.00144917114965398 2079466 885269 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} -16 365 284 0.0235530903356669 0.0235513879296906 0.0234988937209125 0.023575188830396 0.00151600604311449 0.0014412640565124 2086882 890565 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} -17 419 285 0.0234387492477709 0.0234529844279963 0.0234073395895323 0.0233920805676356 0.00155244740041732 0.00144959900131291 2076751 886844 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} -18 472 285 0.0235563407782011 0.0235011680292021 0.0235599298084993 0.0234683756771191 0.00199505861798716 0.00179100485910917 2087170 888666 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} -19 526 285 0.0234455097167917 0.0235010622474212 0.0234836346990158 0.0235141527428092 0.00210354280424892 0.00221623826711839 2077350 888662 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} -20 579 285 0.0235379328900994 0.0235566241278457 0.0235294117647059 0.0235141527428092 0.00182769226552774 0.00165043463852554 2085539 890763 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} -21 98 336 0.0231483763813816 0.023149972516571 0.0231174181734951 0.0231479362172885 0.00171650341302635 0.00177183397933766 2051023 875386 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} -22 152 336 0.0232604715037766 0.0231790360608769 0.0232852674143587 0.0232089723048753 0.00182135005658861 0.00171993119514157 2060955 876485 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} -23 205 337 0.0233483688873058 0.0234043512542215 0.0233157854581521 0.023422598611429 0.00188926670486125 0.00181058494763885 2068743 885005 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} -24 258 337 0.0234141903486235 0.0231826590868732 0.0234378576333257 0.023071641107805 0.00185207830501507 0.00197944716296429 2074575 876622 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} -25 312 337 0.0235600426710873 0.0233985597017165 0.0235294117647059 0.0234531166552224 0.00141536879187753 0.00130053958401498 2087498 884786 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} -26 365 337 0.0235315787263954 0.0235304166916246 0.0235141527428092 0.0234836346990158 0.00163648664883758 0.00172174225748813 2084976 889772 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} -27 419 337 0.0235402240006356 0.0236598142551263 0.0235294117647059 0.0235904478522927 0.00159195312837667 0.00147914495928651 2085742 894665 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} -28 472 338 0.0235770849218743 0.023681208620316 0.0234836346990158 0.0236362249179828 0.00179089619753424 0.00189489903616107 2089008 895474 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} -29 525 338 0.0236262930102393 0.023629296211333 0.0236209658960861 0.0236362249179828 0.00181712434203671 0.00180605898613695 2093368 893511 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} -30 579 338 0.0235496705992507 0.023493155059298 0.023575188830396 0.0235446707866026 0.00163075477876043 0.0017792132105719 2086579 888363 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} -31 98 389 0.0231087728992548 0.0232180695380338 0.0231479362172885 0.0231326771953918 0.00190909978495818 0.00192009872543462 2047514 877961 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} -32 151 389 0.023318663454146 0.0232069624510379 0.0233005264362554 0.0231784542610819 0.00177275690824355 0.00179878670545499 2066111 877541 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} -33 205 389 0.0232780442087272 0.0233263371907982 0.0232547493705653 0.0231021591515984 0.00207760672534417 0.00202784088314825 2062512 882055 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} -34 258 390 0.023462698688943 0.0235716980316258 0.0234378576333257 0.0235446707866026 0.0020007736035649 0.00211633945546358 2078873 891333 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} -35 312 390 0.0235066360944488 0.023544723677493 0.0235294117647059 0.0234683756771191 0.00164685988408494 0.00160072713853775 2082766 890313 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} -36 365 390 0.0236482334973452 0.0234565281176568 0.0236209658960861 0.0233920805676356 0.00170100833524948 0.00171685220838772 2095312 886978 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} -37 418 390 0.023659440752333 0.0236695990698608 0.0235904478522927 0.0236820019836728 0.00163515669622935 0.0015483922354578 2096305 895035 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} -38 472 390 0.0237135357907582 0.0235261325294976 0.0237430380712596 0.0234378576333257 0.0017392362174066 0.00160751664083344 2101098 889610 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} -39 525 391 0.023712418451137 0.0235716451407354 0.0237430380712596 0.0235446707866026 0.00177304269216988 0.00161835956506219 2100999 891331 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} -40 579 391 0.0237441666971396 0.0237891853731829 0.0237888151369497 0.023773556115053 0.00156272955400785 0.00149959836920346 2103812 899557 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} -41 98 442 0.023182381879144 0.0233809205897493 0.0231479362172885 0.0234378576333257 0.00214784051474692 0.00229110773817254 2054036 884119 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} -42 151 442 0.0233068128824067 0.0233945135485966 0.0232547493705653 0.0233157854581521 0.00210365748185335 0.00195763189874612 2065061 884633 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} -43 205 442 0.0234916705152809 0.0233231637373708 0.0234531166552224 0.0233768215457389 0.00242517571478881 0.00251819432238598 2081440 881935 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} -44 258 442 0.023499593468958 0.0233842262704028 0.0234836346990158 0.0233157854581521 0.00225952071717133 0.00239595303576581 2082142 884244 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} -45 311 443 0.0236136298278665 0.0235570208095242 0.0236514839398795 0.0234531166552224 0.00173490069164037 0.00177434588808816 2092246 890778 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} -46 365 443 0.0237665360620798 0.0238810304044606 0.0237430380712596 0.0238803692683299 0.0018349729991343 0.00193609862682931 2105794 903030 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} -47 418 443 0.0237548999292577 0.0237637713003186 0.0236820019836728 0.0235904478522927 0.0019520522291316 0.00200417307950846 2104763 898596 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} -48 472 443 0.024071028038227 0.0237471106698248 0.0239871824216068 0.0235599298084993 0.00213742434631715 0.00212411812477678 2132773 897966 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} -49 525 443 0.0236698918279812 0.0235761673118694 0.0236057068741894 0.0235446707866026 0.00193033922441564 0.00194039062782807 2097231 891502 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} -50 578 444 0.02381720007783 0.0238675432273942 0.0238040741588464 0.0238345922026398 0.00189541591616183 0.00174880182657472 2110283 902520 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} -51 98 494 0.0232821411206713 0.0232745570090413 0.0232852674143587 0.0232394903486687 0.00215537734312897 0.00211040659464772 2062875 880097 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} -52 151 495 0.0234132535891432 0.0233567494528107 0.0234531166552224 0.0230869001297017 0.00227649725413423 0.00230279014453536 2074492 883205 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} -53 204 495 0.0233373534987177 0.0233269983269289 0.0232394903486687 0.0233463035019455 0.00229636407575243 0.00240711836266767 2067767 882080 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} -54 258 495 0.0236302770595955 0.02354147088773 0.0236514839398795 0.0234836346990158 0.00192527224586203 0.00184187796984428 2093721 890190 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} -55 311 495 0.023845325434758 0.0237224106239816 0.0238803692683299 0.0236820019836728 0.00158045933101503 0.00145482672418586 2112775 897032 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} -56 365 496 0.0239354687837882 0.0239743034897806 0.0238498512245365 0.0239108873121233 0.00166136883315505 0.00161060866743295 2120762 906557 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} -57 418 496 0.0240623263326927 0.0240514977444019 0.0240177004654002 0.0240482185091936 0.00191071961887693 0.00174169119556929 2132002 909476 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} -58 471 496 0.0239888866466855 0.0239694639733039 0.0240177004654002 0.0239414053559167 0.00225979329536261 0.0026088166063569 2125495 906374 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} -59 525 496 0.0238408335037558 0.0237669711991912 0.0238193331807431 0.0236820019836728 0.00199504530735327 0.00197743937599774 2112377 898717 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} -60 578 496 0.0236821374187784 0.0238112937653937 0.0236362249179828 0.0236667429617761 0.00194458046421928 0.00186178424506827 2098316 900393 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} -61 97 547 0.0232382150014243 0.0230968700625527 0.023270008392462 0.0230411230640116 0.00157743978761205 0.00152771483104557 2058983 873378 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} -62 151 547 0.0233334935982083 0.0234336263620892 0.0233768215457389 0.0233310444800488 0.00182463520148793 0.0018421231127094 2067425 886112 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} -63 204 548 0.0234000373800891 0.0232687919019815 0.023422598611429 0.0234836346990158 0.00206055448120461 0.00220960136151158 2073321 879879 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} -64 258 548 0.0235811141162656 0.023514708097159 0.0236667429617761 0.0234988937209125 0.00177593901411942 0.00177218439318993 2089365 889178 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} -65 311 548 0.0240036603594538 0.0237983619426771 0.0238651102464332 0.0237430380712596 0.00236642810513743 0.00157308025754848 2126804 899904 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} -66 364 548 0.0244219178242982 0.0240320338967139 0.0243228809033341 0.0241092545967803 0.00170740139677951 0.0014614480178639 2163863 908740 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} -67 418 549 0.0436009246039597 0.0265261831725252 0.0253757534142061 0.0259403372243839 0.101513805336914 0.00342669908783735 3666027 1003053 1283 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} -68 471 549 0.024156295723456 0.0242207750393078 0.0241550316624704 0.0243076218814374 0.0023603528694236 0.00225439939906555 2140328 915877 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} -69 525 549 0.0239979607987601 0.023990223647808 0.0239719233997101 0.0239566643778134 0.00216441488611815 0.00229589405225768 2126299 907159 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} -70 578 549 0.023754267898765 0.0237465817609202 0.0237888151369497 0.0237430380712596 0.00174309015603662 0.00155755630930575 2104707 897946 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} -71 97 600 0.0233172752443136 0.0230447196445626 0.0233005264362554 0.0231021591515984 0.00168318836773571 0.00175193794344182 2065988 871406 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} -72 151 600 0.0234784994512621 0.0232496189541911 0.0235294117647059 0.023422598611429 0.00182837464471192 0.0018539949419301 2080273 879154 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} -73 204 600 0.0234830252410406 0.0233875848419468 0.0234988937209125 0.0233310444800488 0.00196721185798228 0.00209062390861821 2080674 884371 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} -74 257 601 0.0235133062733992 0.0235496425303055 0.0234836346990158 0.0235141527428092 0.00171370587975499 0.0017643953769033 2083357 890499 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} -75 311 601 0.0237611976616678 0.0237988379606912 0.0238040741588464 0.0237582970931563 0.00141871970602109 0.00145118085110395 2105321 899922 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} -76 364 601 0.0246411759739928 0.0243173538052814 0.024429694056611 0.0241702906843671 0.00190231103006485 0.00148979577872397 2183290 919529 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} -77 418 601 0.0459036062392762 0.117184263532035 0.0258182650492103 0.028198672465095 0.104261397342466 0.252342836092758 3862648 4431170 1284 577 4 False 418 601 27 {X=0,Y=0,Width=0,Height=0} -78 471 601 0.0242492719234449 0.0240708558103089 0.0242313267719539 0.0240329594872969 0.00206700333726057 0.00184433410211565 2148566 910208 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} -79 524 602 0.0237122265847375 0.0237083945380106 0.0237430380712596 0.0236057068741894 0.00198216301702559 0.00202006221958114 2100982 896502 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} -80 578 602 0.0236642938436167 0.0236070820373412 0.0236362249179828 0.0236667429617761 0.00162204174063071 0.00175483630511358 2096735 892671 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} -81 99 654 0.0238635414564601 0.145425479039802 0.0238803692683299 0.156786449988556 0.00174283414532241 0.0350801375635895 2114389 8205725 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} -82 150 653 0.0235521422899277 0.023437540287983 0.023575188830396 0.0234683756771191 0.00166705957590554 0.00172313414049188 2086798 886260 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} -83 204 653 0.0234984535568193 0.023436032897605 0.0234531166552224 0.0234378576333257 0.00189494271768906 0.00177976939969082 2082041 886203 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} -84 257 653 0.0236156613544504 0.023642624715728 0.0236057068741894 0.0235904478522927 0.00177065193514706 0.00175469708416405 2092426 894015 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} -85 311 654 0.0236928706508966 0.0236801508025069 0.0236820019836728 0.0236667429617761 0.00138082157249014 0.0012869274955699 2099267 895434 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} -86 364 654 0.0238308338784596 0.0236877141998421 0.0238193331807431 0.0237125200274662 0.00148204771595169 0.00153213128013805 2111491 895720 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} -87 417 654 0.0241485420636608 0.0239086130038337 0.0240939955748837 0.0238803692683299 0.00182765679220524 0.00166113294498415 2139641 904073 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} -88 471 654 0.0240247205183734 0.023884203857888 0.0239871824216068 0.0237888151369497 0.00193903996941638 0.00202817849833448 2128670 903150 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} -89 524 654 0.0237801134314154 0.0237398910632775 0.023773556115053 0.0237125200274662 0.00161103004927635 0.00153376011535531 2106997 897693 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} -90 577 655 0.0236619011567512 0.0236931884070044 0.0236820019836728 0.0236209658960861 0.00147491466738605 0.00145250842910095 2096523 895927 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} -91 99 709 0.0239221284258874 0.145246801387348 0.0238803692683299 0.1588921950103 0.00206436191199858 0.0367152507834915 2119580 8195643 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} -92 150 706 0.0236421050588172 0.0234614734159145 0.0236514839398795 0.0232547493705653 0.00194236408612263 0.00182224050396661 2094769 887165 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} -93 204 706 0.0234188515735076 0.0235750566031698 0.0233463035019455 0.0234836346990158 0.00195483187654776 0.00197572011385416 2074988 891460 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} -94 257 706 0.0234555657733819 0.0233328427703243 0.0234683756771191 0.0233005264362554 0.00186722845628829 0.00196477872811862 2078241 882301 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} -95 310 706 0.0235598282321701 0.0237266683406634 0.023575188830396 0.0237277790493629 0.00146138067023056 0.00154796518220649 2087479 897193 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} -96 364 707 0.023679349712855 0.023709478801265 0.0236667429617761 0.0235599298084993 0.00187075841511405 0.00190623358395935 2098069 896543 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} -97 417 707 0.023651732237573 0.0237361622555003 0.0236667429617761 0.023773556115053 0.00166917279618932 0.00167514767514709 2095622 897552 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} -98 471 707 0.0235348743139648 0.0236710006784579 0.0235599298084993 0.0236057068741894 0.00186351838157612 0.00172102499146437 2085268 895088 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} -99 524 707 0.0235891837913071 0.0235864810355084 0.0236057068741894 0.0234683756771191 0.00176475650642091 0.00190197903462523 2090080 891892 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} -100 578 708 0.0240545162416036 0.14410517489081 0.024078736552987 0.160311284046693 0.00156367167517836 0.0397979761148212 2131310 8131226 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv deleted file mode 100644 index 3f4f27a..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 101 231 0.324811395329204 0.353230069985034 0.3247119859617 0.354421301594568 0.00543403770179023 0.013203962851817 28779368 19931231 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} -2 152 231 0.326052037327721 0.325439341487257 0.325917448691539 0.325185015640497 0.00604930387324953 0.00562457358928658 28889293 12306064 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} -3 205 231 0.325864820866758 0.326321508649181 0.325902189669642 0.325978484779126 0.00636436485606988 0.00617516946334334 28872705 12339422 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} -4 259 231 0.325685809515941 0.325917263573422 0.325764858472572 0.325993743801022 0.00567303009311332 0.00534103049062061 28856844 12324136 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} -5 312 231 0.32533491972987 0.325319913856607 0.325383382925155 0.325261310749981 0.00462852513793319 0.0045602289658968 28825754 12301548 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} -6 366 232 0.325059625305237 0.32476003733568 0.324971389333944 0.324696726939803 0.00420667877791081 0.00406351030483787 28801362 12280377 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} -7 419 232 0.325170388649094 0.325026237187347 0.325108720531014 0.324910353246357 0.00447578988908673 0.00434511507674744 28811176 12290443 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} -8 472 232 0.325191539098083 0.324893031479732 0.325093461509117 0.325139238574807 0.0058497788022002 0.00552449047901663 28813050 12285406 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} -9 526 232 0.324517512436329 0.325610840199563 0.32466620889601 0.325444419012741 0.00672753467218789 0.00699171348359604 28753329 12312549 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} -10 577 231 0.324466250248862 0.345662977474689 0.324467841611353 0.346272983901732 0.00647932504367962 0.0103859104861705 28748787 19504253 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} -11 98 283 0.324342620569974 0.324839585234926 0.324315251392386 0.32480354009308 0.00463015509838015 0.00453826487178107 28737833 12283385 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} -12 152 284 0.325083890761655 0.325352045072559 0.325017166399634 0.325581750209812 0.00470368407477983 0.00463111781104367 28803512 12302763 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} -13 205 284 0.325857552516091 0.325602218984418 0.325932707713436 0.325383382925155 0.00517199783720868 0.00447958050653992 28872061 12312223 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} -14 259 284 0.326043132469528 0.325639216162293 0.326054779888609 0.325139238574807 0.00511390984719353 0.00500035819689255 28888504 12313622 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} -15 312 284 0.325676588642502 0.326204752008498 0.325490196078431 0.326207370107576 0.00413318916602613 0.00419337139140977 28856027 12335007 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} -16 365 284 0.325391057581138 0.325426700564438 0.325490196078431 0.325490196078431 0.00441486530983562 0.00418289811686509 28830728 12305586 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} -17 419 285 0.325270791207372 0.325561228544314 0.325215533684291 0.325551232166018 0.00429073029900358 0.00412160850985971 28820072 12310673 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} -18 472 285 0.325916432928247 0.325743966570842 0.325963225757229 0.325841153582055 0.00475291654462565 0.00484438453386622 28877278 12317583 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} -19 526 285 0.325643463472926 0.325239599039449 0.325673304341192 0.325139238574807 0.00559689478112422 0.00544708944926628 28853092 12298511 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} -20 579 285 0.325239313831581 0.325379601226487 0.325200274662394 0.325566491187915 0.00600799552306265 0.00599287752485728 28817283 12303805 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} -21 98 336 0.324966152509861 0.324685831416369 0.32480354009308 0.324299992370489 0.00528471103231675 0.00528611406137655 28793080 12277571 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} -22 152 336 0.325082084960248 0.324430553533581 0.32489509422446 0.324406805523766 0.00529454854524964 0.00503498701646463 28803352 12267918 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} -23 205 337 0.325866163931555 0.325819732771421 0.326024261844816 0.325825894560159 0.00552334647741611 0.00585521234253982 28872824 12320448 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} -24 258 337 0.326512223244005 0.326739426020123 0.326405737392233 0.326680399786374 0.00606407984107286 0.00659368173417966 28930067 12355225 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} -25 312 337 0.326348391911274 0.326376356502585 0.326405737392233 0.326344701304646 0.0049274170787288 0.00477955007151858 28915551 12341496 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} -26 365 337 0.326652692021021 0.326766559046927 0.326573586633097 0.326863508049134 0.00496840630769626 0.00512988949724823 28942513 12356251 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} -27 419 337 0.326373910142419 0.325977003834193 0.326405737392233 0.325856412603952 0.00413628210442045 0.00427628042265664 28917812 12326395 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} -28 472 338 0.326087442321574 0.326643667062952 0.326115815976196 0.32660410467689 0.0043345755843379 0.00457128734156601 28892430 12351604 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} -29 525 338 0.325587980224669 0.326283453653498 0.325505455100328 0.32651255054551 0.00504950747530231 0.00523949488336244 28848176 12337983 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} -30 579 338 0.325644603385065 0.325867413909167 0.325612268253605 0.325719081406882 0.00532170507002531 0.00530764381747706 28853193 12322251 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} -31 98 389 0.324378160998933 0.324427591643715 0.324330510414282 0.324452582589456 0.00505537099408934 0.00533332547791205 28740982 12267806 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} -32 151 389 0.325533467594668 0.325330439143808 0.325474937056535 0.325444419012741 0.00545445893958838 0.00533110063414097 28843346 12301946 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} -33 205 389 0.32602431827611 0.326380270428478 0.325963225757229 0.326543068589303 0.00648811878956869 0.00574157941670853 28886837 12341644 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} -34 258 390 0.326892412157919 0.326243653258429 0.32674143587396 0.326207370107576 0.00660027753398197 0.00715392735206084 28963753 12336478 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} -35 312 390 0.327297092253428 0.326773778653475 0.327275501640345 0.32651255054551 0.00557629939751658 0.00539492301315453 28999609 12356524 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} -36 365 390 0.327139490935554 0.327537232211769 0.327321278706035 0.327626459143969 0.00524108716743307 0.00535876546548163 28985645 12385393 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} -37 418 390 0.327313874920263 0.327140814987797 0.327153429465171 0.327153429465171 0.00490724645948314 0.00482826597708434 29001096 12370403 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} -38 472 390 0.32657139709889 0.327279045330005 0.32660410467689 0.327229724574655 0.00464130786642758 0.00429730782658076 28935310 12375630 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} -39 525 391 0.326213938710197 0.325947622944544 0.326344701304646 0.325947966735332 0.00493346907329205 0.00505684615220138 28903638 12325284 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} -40 579 391 0.325633949156758 0.326018232283304 0.325551232166018 0.325993743801022 0.00529922496116989 0.00584330275047609 28852249 12327954 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} -41 98 442 0.324703679275224 0.32522412845399 0.324559395742733 0.325383382925155 0.00598161839878139 0.00603849876402488 28769824 12297926 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} -42 151 442 0.325362446915082 0.32540424838144 0.325230792706188 0.325749599450675 0.00624597559496833 0.00632566770932741 28828193 12304737 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} -43 205 442 0.326186197086069 0.326017015792823 0.325932707713436 0.325871671625849 0.00656924868516978 0.0064344870349955 28901180 12327908 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} -44 258 442 0.326598472833749 0.327016997413239 0.326344701304646 0.327031357289998 0.00600089420145728 0.00570493096669549 28937709 12365721 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} -45 311 443 0.327595072058248 0.327050424456007 0.327641718165866 0.327031357289998 0.00513163261853657 0.00505610186556299 29026011 12366985 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} -46 365 443 0.327511813327085 0.327484209094086 0.327595941100175 0.327443350881209 0.00482303536246855 0.00489564003369187 29018634 12383388 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} -47 418 443 0.327556992221059 0.326747227426466 0.327733272297246 0.32664988174258 0.00569575115681314 0.00502659116368158 29022637 12355520 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} -48 472 443 0.327642372768876 0.326667679527219 0.327550164034485 0.326726176852064 0.00667432040653979 0.00605343265878773 29030202 12352512 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} -49 525 443 0.326145205394109 0.325798814424245 0.325993743801022 0.325734340428779 0.00558705943575807 0.00544782614159305 28897548 12319657 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} -50 578 444 0.326173601621248 0.326346314476805 0.32642099641413 0.326100556954299 0.00555660620088892 0.0059893534769103 28900064 12340360 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} -51 98 494 0.324167423974632 0.324231445776457 0.324299992370489 0.324345769436179 0.00517283536146291 0.00478275992268825 28722310 12260389 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} -52 151 495 0.325464282828228 0.324929579085038 0.325413900968948 0.32498664835584 0.00570672769057352 0.00582811587011416 28837216 12286788 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} -53 204 495 0.32651678289256 0.325964177793257 0.326253147173266 0.325993743801022 0.00593669465122804 0.00609577051061802 28930471 12325910 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} -54 258 495 0.326846714096041 0.327116009160173 0.326924544136721 0.327046616311894 0.00512132321640644 0.00503396644102264 28959704 12369465 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} -55 311 495 0.327176814593403 0.328069631915104 0.327214465552758 0.327840085450523 0.00450485368746239 0.0043715551440496 28988952 12405525 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} -56 365 496 0.327439626415805 0.327770190138784 0.327244983596551 0.327885862516213 0.00394404807120065 0.00404050652629388 29012238 12394202 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} -57 418 496 0.32746006583049 0.328277889796276 0.327473868925002 0.328435187304494 0.00484167471131837 0.00477748995736182 29014049 12413400 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} -58 471 496 0.327070294882855 0.327392787189932 0.326939803158618 0.326985580224308 0.00648216616991686 0.00709162626291234 28979514 12379931 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} -59 525 496 0.326512099095158 0.326503400421461 0.32632944228275 0.326405737392233 0.00630251883731237 0.0057479079019226 28930056 12346300 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} -60 578 496 0.326260415523933 0.326027038616565 0.326268406195163 0.325551232166018 0.00565563691874818 0.0054847240693161 28907756 12328287 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} -61 97 547 0.324600658304903 0.324261011784223 0.32452887769894 0.324193179217212 0.0044178898055864 0.00451823087421435 28760696 12261507 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} -62 151 547 0.325171596278785 0.325146352399574 0.325200274662394 0.325062943465324 0.00501689502210286 0.0047436306242417 28811283 12294985 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} -63 204 548 0.325376814322533 0.325525738756818 0.325322346837568 0.325001907377737 0.00573561355320143 0.00507578406639535 28829466 12309331 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} -64 258 548 0.326247052593515 0.326131339452545 0.32628366521706 0.326390478370336 0.00512273833489822 0.00539720220296669 28906572 12332231 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} -65 311 548 0.328111260390694 0.327501848206053 0.327397573815518 0.327641718165866 0.00766934676824994 0.00416379863493815 29071747 12384055 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} -66 364 548 0.32918242792708 0.329037905446691 0.328801403830014 0.328740367742428 0.00532405907616439 0.00446359425717731 29166656 12442139 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} -67 418 549 0.347909857480128 0.335409723910874 0.33182269016556 0.332555123216602 0.0693568506280356 0.0142581956819032 28614342 12683081 1255 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} -68 471 549 0.328267123624713 0.327920056476893 0.327916380560006 0.327794308384833 0.00660108803061339 0.00641496681931429 29085557 12399869 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} -69 525 549 0.327032384339548 0.326409043072887 0.327260242618448 0.326497291523613 0.00663949804157412 0.00700240046701468 28976155 12342732 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} -70 578 549 0.32657270630491 0.326524530332198 0.32632944228275 0.326207370107576 0.00580291301539064 0.00551938364460698 28935426 12347099 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} -71 97 600 0.32376249558143 0.324301023742853 0.323613336385138 0.324299992370489 0.005347646792528 0.00533873701511861 28686432 12263020 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} -72 151 600 0.324823640920002 0.325120462308695 0.32480354009308 0.32503242542153 0.00548623703861669 0.00529832284932327 28780453 12294006 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} -73 204 600 0.325279831500671 0.325475333738213 0.325490196078431 0.325276569771878 0.00526383755724481 0.00501726218021533 28820873 12307425 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} -74 257 601 0.325831661838405 0.325226217644163 0.325856412603952 0.325429159990845 0.00523143142372768 0.00509906755404365 28869767 12298005 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} -75 311 601 0.326600639795439 0.32688220497891 0.32651255054551 0.326832990005341 0.00425898230107841 0.00384274834045981 28937901 12360624 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} -76 364 601 0.329812077019236 0.328365318438201 0.328892957961395 0.328236820019837 0.00704124016636976 0.00508350926457793 29222445 12416706 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} -77 418 601 0.352509032676201 0.438363164456687 0.333501182574197 0.342107270923934 0.068367063819281 0.218565151003364 28900201 16576131 1251 577 9 False 418 601 27 {X=0,Y=0,Width=0,Height=0} -78 471 601 0.328215680857106 0.328222803933866 0.32822156099794 0.328252079041733 0.00579675590493295 0.00532923110122895 29080999 12411317 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} -79 524 602 0.326901565313805 0.326674052879519 0.326802471961547 0.326588845654994 0.00603176153630464 0.00558811300584502 28964564 12352753 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} -80 578 602 0.326520315491564 0.326450086403881 0.326482032501717 0.326222629129473 0.00498730064742747 0.00525062465342346 28930784 12344284 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} -81 99 654 0.322660855146286 0.351590194775832 0.322468909742886 0.35233081559472 0.0054363744419674 0.0133869568824429 28588823 19838700 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} -82 150 653 0.323925232147057 0.324157319193483 0.323826962691691 0.324116884107729 0.00495728752349294 0.00472409977199447 28700851 12257586 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} -83 204 653 0.32479799854001 0.325069792835638 0.324864576180667 0.325154497596704 0.00622985443668927 0.00618830923173699 28778181 12292090 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} -84 257 653 0.324990666263973 0.324634685925298 0.325017166399634 0.324498359655146 0.00529389704531044 0.00553053508197608 28795252 12275637 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} -85 311 654 0.325684263298486 0.326155827934826 0.325627527275502 0.325856412603952 0.00481407855967724 0.00430190525870689 28856707 12333157 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} -86 364 654 0.326606102344698 0.325987079548825 0.3265583276112 0.326024261844816 0.00517478446968174 0.00568102816886616 28938385 12326776 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} -87 417 654 0.32815895612038 0.32765959528684 0.327916380560006 0.327458609903105 0.00552144765269711 0.0053644695546835 29075973 12390020 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} -88 471 654 0.327520278021185 0.326734110485632 0.327656977187762 0.326726176852064 0.00525131349547685 0.00516815516991202 29019384 12355024 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} -89 524 654 0.326572559583546 0.326950910245613 0.326527809567407 0.327016098268101 0.00480088835941085 0.00424098107494183 28935413 12363222 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} -90 577 655 0.326296971716184 0.326566446362885 0.326253147173266 0.3265583276112 0.00430125006339541 0.00429697947045379 28910995 12348684 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} -91 99 709 0.321598852052045 0.341669934241768 0.32143129625391 0.341466392004273 0.00634095347765092 0.0112084636397593 28494726 19278943 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} -92 150 706 0.323333832185972 0.323539553592951 0.323201342793927 0.323262378881514 0.00598180340076333 0.00586425483855967 28648451 12234226 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} -93 204 706 0.324101421933174 0.323956571818755 0.323872739757382 0.323765926604105 0.00649783010976757 0.00716742732436614 28716462 12249995 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} -94 257 706 0.324253910575811 0.324247524607156 0.324254215304799 0.324116884107729 0.00630474800648598 0.00730073440509273 28729973 12260997 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} -95 310 706 0.325134261334677 0.324345452090836 0.324864576180667 0.324727244983597 0.00557837392274014 0.00569393929545568 28807975 12264700 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} -96 364 707 0.326956213378912 0.327330270157413 0.32651255054551 0.327061875333791 0.00653918353925449 0.00752121897526766 28969406 12377567 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} -97 417 707 0.326258067982103 0.326073688381947 0.326497291523613 0.326039520866712 0.00604149663851206 0.00650155644599175 28907548 12330051 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} -98 471 707 0.327088894637357 0.326349963948247 0.327061875333791 0.326436255436027 0.00553779732952764 0.00537705038459797 28981162 12340498 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} -99 524 707 0.326144370210958 0.326212183178608 0.326314183260853 0.325947966735332 0.00464783751197481 0.00506012873421035 28897474 12335288 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} -100 578 708 0.325625405458847 0.348930304461793 0.325505455100328 0.347661554894331 0.00435468724490239 0.0123918793893537 28851492 19688614 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv deleted file mode 100644 index a87ccc7..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 101 231 0.0342393151859321 0.0371407428556187 0.0342412451361868 0.037094682230869 0.00201041266485989 0.0023902838709662 3033717 2095690 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} -2 152 231 0.034091510340696 0.0343493012253894 0.0341039139391165 0.034332799267567 0.00230283853754765 0.00214700682293275 3020621 1298874 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} -3 205 231 0.0340636897127557 0.0345936835847436 0.034027618829633 0.0346227206836042 0.00239385286755976 0.00234979548587924 3018156 1308115 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} -4 259 231 0.0342797425649513 0.0339230270937553 0.0341649500267033 0.0338445105668727 0.00216992417052746 0.0020002108103499 3037299 1282755 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} -5 312 231 0.0341535960503512 0.0342535687136631 0.0341954680704967 0.0341954680704967 0.00170579979376295 0.00176001944048668 3026122 1295254 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} -6 366 232 0.0341828613194178 0.0339334465991753 0.0342412451361868 0.0339208056763561 0.00161826671381046 0.00153683655208519 3028715 1283149 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} -7 419 232 0.034197420593269 0.0340740305860086 0.0341954680704967 0.0339971007858396 0.00171325410057128 0.00158122480321189 3030005 1288465 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} -8 472 232 0.0342342363694724 0.0342674790178532 0.0341649500267033 0.0343480582894636 0.00222196995757917 0.00208452375099046 3033267 1295780 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} -9 526 232 0.0341084171563774 0.0344337679774484 0.0339818417639429 0.0342717631799802 0.00258617771891198 0.00277537090905951 3022119 1302068 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} -10 577 231 0.0340768494905157 0.0361726367811368 0.0340428778515297 0.0361028458075837 0.00249535652088746 0.00242442662384865 3019322 2041064 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} -11 98 283 0.0341504246116286 0.0340714389323762 0.0341344319829099 0.0341649500267033 0.00174115730483475 0.00182595743588825 3025841 1288367 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} -12 152 284 0.03399117549997 0.0341502199137112 0.0340428778515297 0.0341649500267033 0.00181821524559814 0.00172554286796421 3011731 1291346 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} -13 205 284 0.0343258356458878 0.034288318028693 0.034332799267567 0.0341649500267033 0.00190724254211532 0.00192496180081885 3041383 1296568 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} -14 259 284 0.0341965402650826 0.0340808270654322 0.0341344319829099 0.0338597695887694 0.00191991333353285 0.00216952542852141 3029927 1288722 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} -15 312 284 0.0341757509763743 0.0343425047459657 0.0341649500267033 0.034378576333257 0.00169413916557891 0.0016335278525839 3028085 1298617 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} -16 365 284 0.0340769059218097 0.0340864334998206 0.0340733958953231 0.0340886549172198 0.00158709754989005 0.0016972301718369 3019327 1288934 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} -17 419 285 0.0341906262654718 0.0342851710207109 0.0341649500267033 0.0343022812237736 0.00153885680560432 0.00149472009737962 3029403 1296449 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} -18 472 285 0.03421997053835 0.0340910614527356 0.0341496910048066 0.0341344319829099 0.00193179554885869 0.00180853198444676 3032003 1289109 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} -19 526 285 0.0342200382559028 0.0342861495021843 0.0342412451361868 0.0343022812237736 0.00210560891075385 0.00189791579485794 3032009 1296486 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} -20 579 285 0.0343221788980368 0.0339729560943462 0.0343480582894636 0.034027618829633 0.00223847969321184 0.00229530185552756 3041059 1284643 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} -21 98 336 0.0341610336948999 0.0339570094908736 0.0341039139391165 0.0338445105668727 0.00203442681772974 0.00203965663363056 3026781 1284040 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} -22 152 336 0.0340920295086008 0.0341891211636419 0.0340886549172198 0.0341649500267033 0.00196830860921381 0.00171602395880453 3020667 1292817 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} -23 205 337 0.0341695999653286 0.0341936962256664 0.0341191729610132 0.0342259861142901 0.0022065895964297 0.002327014796339 3027540 1292990 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} -24 258 337 0.0341475240431171 0.0340479024861231 0.0341344319829099 0.0340428778515297 0.00223314631433195 0.00247907586247213 3025584 1287477 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} -25 312 337 0.0342558947001083 0.0344655025117223 0.0342412451361868 0.0344548714427405 0.00187208659470339 0.00184944986164973 3035186 1303268 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} -26 365 337 0.0343751340243232 0.0344090150407147 0.0343480582894636 0.0343633173113603 0.00184522808724063 0.00177803975036132 3045751 1301132 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} -27 419 337 0.034239935930166 0.0340854814637924 0.0342717631799802 0.0340581368734264 0.00157619461680817 0.00165754833793018 3033772 1288898 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} -28 472 338 0.0343217387339436 0.0344504021624969 0.0343480582894636 0.0344090943770504 0.00175700537018749 0.0015989702867337 3041020 1302697 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} -29 525 338 0.0343723124596234 0.0342577470940092 0.0343633173113603 0.0343175402456703 0.00194570387964234 0.00197532263438491 3045501 1295412 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} -30 579 338 0.0342691109091623 0.0341750521867805 0.0342412451361868 0.0341649500267033 0.00211868723394651 0.00204121802677674 3036357 1292285 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} -31 98 389 0.0340322913407759 0.0340305278286081 0.0340428778515297 0.0340428778515297 0.00210303380660656 0.00208682908599266 3015374 1286820 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} -32 151 389 0.0343084209485604 0.0342726887705632 0.034332799267567 0.0342717631799802 0.00213399554557341 0.00190920813999449 3039840 1295977 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} -33 205 389 0.0341940685744056 0.034014528334245 0.0341954680704967 0.0339360646982528 0.00238174528010627 0.00239119866348285 3029708 1286215 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} -34 258 390 0.0343795018064786 0.0344544747610621 0.0342412451361868 0.0343175402456703 0.00257320024329966 0.00258794760020756 3046138 1302851 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} -35 312 390 0.034402367766806 0.0342722391979943 0.034378576333257 0.0342870222018769 0.00191885578418623 0.00212725521423853 3048164 1295960 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} -36 365 390 0.0344271072460942 0.0344501377080447 0.0344243533989471 0.0344243533989471 0.00197551939046947 0.00193909945253594 3050356 1302687 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} -37 418 390 0.0343487918962856 0.0344342704409077 0.0344243533989471 0.0344090943770504 0.00179831969971055 0.0016897582597719 3043417 1302087 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} -38 472 390 0.0341414294633655 0.0342673732360723 0.0341191729610132 0.0343022812237736 0.00178458095668803 0.00161381625612316 3025044 1295776 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} -39 525 391 0.0343128790207861 0.0341518330858701 0.0343022812237736 0.0341954680704967 0.00194229371285468 0.00176741915337319 3040235 1291407 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} -40 579 391 0.0342712214395578 0.0340143696615737 0.0342717631799802 0.0340581368734264 0.00202405462529796 0.00205482376963005 3036544 1286209 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} -41 98 442 0.0340503267823373 0.0340935208791418 0.0339971007858396 0.0341191729610132 0.0023462965622587 0.00241021897188493 3016972 1289202 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} -42 151 442 0.0340377651762936 0.0339119464522047 0.0340123598077363 0.0337224383916991 0.00238026775222779 0.00246012142342293 3015859 1282336 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} -43 205 442 0.0342075105086356 0.0341972663607722 0.0341191729610132 0.0342870222018769 0.00249442844653729 0.00234486692488008 3030899 1293125 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} -44 258 442 0.0344501425003036 0.034469178428609 0.0343633173113603 0.034531166552224 0.00233644124536785 0.00223665145648831 3052397 1303407 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} -45 311 443 0.0343132063222913 0.0344358307221762 0.034332799267567 0.0345464255741207 0.00190965822665882 0.00171122636723217 3040264 1302146 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} -46 365 443 0.0343610939183769 0.0344240889444948 0.0343938353551537 0.0344396124208438 0.00190603538703295 0.00178339875676287 3044507 1301702 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} -47 418 443 0.0343563762621988 0.0345406869125062 0.0344701304646372 0.0345922026398108 0.00212061366749352 0.00191429415659564 3044089 1306111 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} -48 472 443 0.034341963709712 0.0343739483803421 0.0343175402456703 0.0344090943770504 0.00232294002731713 0.00234791680644664 3042812 1299806 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} -49 525 443 0.0343943883818349 0.034480417742831 0.0344548714427405 0.0344243533989471 0.00211786101798502 0.00198780651388135 3047457 1303832 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} -50 578 444 0.034304899635815 0.0345722363286635 0.0342107270923934 0.0344701304646372 0.00217604094038835 0.00231941961582009 3039528 1307304 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} -51 98 494 0.0339553416282821 0.0339794352284272 0.0339360646982528 0.0340886549172198 0.00194988399825408 0.00187219106544058 3008556 1284888 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} -52 151 495 0.0341262607315392 0.0338545862815046 0.0340886549172198 0.0338139925230793 0.00215073936290954 0.00214428735568527 3023700 1280167 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} -53 204 495 0.0342028944287866 0.034207209848178 0.0341802090486 0.0341649500267033 0.00241963101169316 0.00260012150292559 3030490 1293501 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} -54 258 495 0.0341452216463221 0.0344197254460322 0.0340886549172198 0.034378576333257 0.00186455144771583 0.00195694438710264 3025380 1301537 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} -55 311 495 0.0343524712166542 0.0346334046434764 0.0342717631799802 0.0346227206836042 0.00171726234653163 0.0017084492363369 3043743 1309617 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} -56 365 496 0.0345822255870322 0.0344126645121562 0.0345922026398108 0.0344396124208438 0.00159151985339518 0.00137521551895592 3064100 1301270 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} -57 418 496 0.0345833203541357 0.0343034183779184 0.0345769436179141 0.0342412451361868 0.00188316723785902 0.00176708305796215 3064197 1297139 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} -58 471 496 0.0343392324350826 0.0343665436556782 0.0344243533989471 0.034332799267567 0.00247548764947195 0.00256069029939995 3042570 1299526 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} -59 525 496 0.0343561053919876 0.0343749004163703 0.0343480582894636 0.0343938353551537 0.0024275530331582 0.00218758501274689 3044065 1299842 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} -60 578 496 0.0343379570878382 0.0342362469470386 0.0343633173113603 0.0342717631799802 0.00216160209870681 0.00214115450951489 3042457 1294599 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} -61 97 547 0.0339914463701812 0.033830071353778 0.0339360646982528 0.0338139925230793 0.00177496301882948 0.00174266378637426 3011755 1279240 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} -62 151 547 0.0341440930204421 0.0338191229394536 0.0340886549172198 0.0337987335011826 0.00191958597536922 0.00183433811803088 3025280 1278826 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} -63 204 548 0.0341607063933947 0.0341803148303809 0.0342259861142901 0.0340581368734264 0.00209370354410724 0.00211728004982631 3026752 1292484 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} -64 258 548 0.0342393716172261 0.0342733234612486 0.0342717631799802 0.0341496910048066 0.00195905265057842 0.00213227788904769 3033722 1296001 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} -65 311 548 0.0344169496131748 0.034257376857776 0.034378576333257 0.0343480582894636 0.00175175044205692 0.00167256502833036 3049456 1295398 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} -66 364 548 0.0346024957078358 0.0346216099749046 0.0346227206836042 0.0346684977492943 0.00173192905542258 0.00163211513638879 3065896 1309171 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} -67 418 549 0.0591914128892573 0.0352059749781131 0.0354772259098192 0.035034714274815 0.12012322896473 0.00221400173114651 5077754 1331268 1309 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} -68 471 549 0.0344442623594692 0.0345843747880232 0.0345006485084306 0.0346379797055009 0.00240399897802324 0.00246166885113669 3051876 1307763 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} -69 525 549 0.0343930001720026 0.0343357347119873 0.034332799267567 0.0342717631799802 0.0025163379046927 0.00278410828107367 3047334 1298361 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} -70 578 549 0.03432120827978 0.0342708111439519 0.0343480582894636 0.034378576333257 0.00217453642377479 0.00213666270892698 3040973 1295906 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} -71 97 600 0.0338045233519466 0.0338643710962391 0.0337682154573892 0.0337071793698024 0.0020155219874556 0.00217015581875297 2995193 1280537 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} -72 151 600 0.033949777502694 0.0342430963173527 0.034027618829633 0.0341039139391165 0.00201438715557999 0.00212644829103681 3008063 1294858 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} -73 204 600 0.0341413166007775 0.0344240360536044 0.0341344319829099 0.0343633173113603 0.00213114614764721 0.00222687127713223 3025034 1301700 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} -74 257 601 0.0341991812496417 0.0340639019804862 0.0342565041580835 0.0340581368734264 0.00197008404843989 0.00196994282678023 3030161 1288082 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} -75 311 601 0.0341767554534074 0.0343046348683989 0.0341954680704967 0.0342565041580835 0.00166819973018786 0.0015603475182789 3028174 1297185 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} -76 364 601 0.0347636860560078 0.0345741139552747 0.0346990157930877 0.0345769436179141 0.00202819154175127 0.00192002582372616 3080178 1307375 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} -77 418 601 0.0581032124447255 0.0941285161368123 0.0357976653696498 0.0364385442893111 0.113677029504154 0.18182944752364 4972979 3559347 1306 577 1 False 418 601 27 {X=0,Y=0,Width=0,Height=0} -78 471 601 0.034446124592171 0.0345184727385144 0.0344548714427405 0.034531166552224 0.00223100184906489 0.00213124639540873 3052041 1305271 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} -79 524 602 0.0343490063352028 0.0343104793117943 0.0342870222018769 0.0341496910048066 0.00218999384372535 0.00214210325175432 3043436 1297406 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} -80 578 602 0.0343374040611571 0.0343322439132172 0.0343938353551537 0.0342412451361868 0.00187004449860009 0.00191968396015108 3042408 1298229 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} -81 99 654 0.0340949752221474 0.0369314939920481 0.0339971007858396 0.0368810559243153 0.0021425210801599 0.0024138366132516 3020928 2083883 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} -82 150 653 0.033869013034726 0.0341502463591564 0.0338750286106661 0.0341649500267033 0.00203076042945576 0.002016593812365 3000907 1291347 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} -83 204 653 0.0341856715978589 0.0339080060808657 0.0341954680704967 0.0338902876325628 0.00222679604864679 0.00243355331769751 3028964 1282187 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} -84 257 653 0.0341677715914031 0.0339514030564852 0.0341802090486 0.0338750286106661 0.00212126238466979 0.0020344764727426 3027378 1283828 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} -85 311 654 0.0342730836722597 0.0341669598805406 0.0342717631799802 0.0341191729610132 0.00188872747183559 0.0017300992635639 3036709 1291979 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} -86 364 654 0.0343064909983057 0.0339918910331297 0.0343022812237736 0.0339055466544594 0.00194188018176579 0.002058386767638 3039669 1285359 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} -87 417 654 0.034571097335856 0.0344699453465206 0.034531166552224 0.0345159075303273 0.00205968459025111 0.00206891450546173 3063114 1303436 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} -88 471 654 0.0344033158125452 0.0342173648991457 0.0344243533989471 0.0342717631799802 0.00198359532176284 0.00206205929851766 3048248 1293885 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} -89 524 654 0.0341475014705995 0.0345374076772979 0.0341191729610132 0.0345616845960174 0.00174563237346093 0.00163210011996062 3025582 1305987 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} -90 577 655 0.0341638439733409 0.0342517704233876 0.0341954680704967 0.0342107270923934 0.00164590919536697 0.00152648883120649 3027030 1295186 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} -91 99 709 0.0336685352196735 0.0361005773351066 0.0337376974135958 0.0359349965667201 0.0025344923025199 0.00279045192221103 2983144 2036998 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} -92 150 706 0.0338897007471052 0.0338007433550199 0.0338750286106661 0.0339513237201495 0.00229136520549138 0.00223486661445145 3002740 1278131 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} -93 204 706 0.033983636279092 0.0337762284272933 0.0339818417639429 0.0337987335011826 0.00257937341385185 0.0025936583166165 3011063 1277204 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} -94 257 706 0.0340870184096939 0.0337696170659863 0.0341039139391165 0.0337376974135958 0.00245524958396845 0.0025397071766113 3020223 1276954 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} -95 310 706 0.0340809576887187 0.0342341048659751 0.0340886549172198 0.0342717631799802 0.00207380574936488 0.00215246928765066 3019686 1294518 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} -96 364 707 0.0342874736522288 0.0343882289207653 0.0341649500267033 0.0343938353551537 0.00229216997516671 0.00230808385355703 3037984 1300346 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} -97 417 707 0.0342470124144332 0.0343104793117943 0.0342565041580835 0.0343175402456703 0.00230371186590503 0.00227279565172732 3034399 1297406 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} -98 471 707 0.0343509701442339 0.0344080894501318 0.034332799267567 0.0343480582894636 0.00203240801337818 0.00210216719977624 3043610 1301097 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} -99 524 707 0.0343222466155896 0.0344110777854426 0.0342870222018769 0.0344396124208438 0.00185702125398408 0.00181275492461393 3041065 1301210 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} -100 578 708 0.0341274796474895 0.0367300252801763 0.0340733958953231 0.036591134508278 0.0015687217376631 0.00201182362085978 3023808 2072515 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv deleted file mode 100644 index dda9bf1..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 241 197 0.242528311010801 0.945223390042487 0.240192263675898 1 0.0126783617804198 0.132409293569996 22935176 53334830 1443 861 74 True 240 198 32 {X=0,Y=0,Width=0,Height=0} -2 293 199 0.237121594365815 0.235371126783563 0.235782406347753 0.235355153734646 0.00858920728690988 0.00474649655953781 22423879 8900252 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} -3 346 199 0.234698624536116 0.2345903250132 0.234790569924468 0.234637979705501 0.00440658531595951 0.00392958304267804 22194746 8870727 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} -4 398 199 0.235044337081417 0.235431713298581 0.234973678187228 0.235553521019303 0.00464581224680154 0.004772127831605 22227439 8902543 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} -5 451 199 0.234891894905628 0.234959529874031 0.234973678187228 0.235049973296712 0.0056150972751992 0.0052994699783525 22213023 8884688 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} -6 504 199 0.234943403357228 0.234583978106345 0.235019455252918 0.234637979705501 0.00574510965208815 0.00582076840961916 22217894 8870487 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} -7 557 199 0.235024520444525 0.235523981456983 0.234790569924468 0.235553521019303 0.00540947472258748 0.00563480416580679 22225565 8906032 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} -8 609 200 0.236224960280808 0.235302209953299 0.23579766536965 0.235156786449989 0.00483324972102578 0.00490640934513719 22339087 8897646 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} -9 662 200 0.236315266619684 0.236184482897003 0.236362249179828 0.235919737544823 0.00400879001610042 0.0040244520784216 22347627 8931008 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} -10 714 198 0.241741482666179 0.939582833228195 0.240146486610208 1 0.0117256074557277 0.155073682696709 22860768 53016558 1443 861 77 True 715 200 32 {X=0,Y=0,Width=0,Height=0} -11 240 251 0.235093349948008 0.235424811037377 0.235172045471885 0.235416189822232 0.00498160736594447 0.00466909432501637 22232074 8902282 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} -12 293 251 0.235330673737632 0.235501873064772 0.235416189822232 0.235492484931716 0.00392314498391872 0.00383007516132521 22254517 8905196 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} -13 345 251 0.235290723228466 0.234980897793776 0.235278858625162 0.235019455252918 0.0036234246074907 0.00356603255179032 22250739 8885496 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} -14 398 251 0.235368202683378 0.235694105006136 0.235278858625162 0.235904478522927 0.00358183574089722 0.00356357120861217 22258066 8912465 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} -15 451 251 0.235176412745651 0.235547068330667 0.235156786449989 0.235477225909819 0.00462735287706604 0.00473925266824421 22239929 8906905 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} -16 504 251 0.235521490820186 0.235188124302584 0.235568780041199 0.235111009384298 0.00596474037882979 0.00633122401553441 22272562 8893332 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} -17 557 252 0.236134537622292 0.236798599026094 0.236102845807584 0.236697947661555 0.00494200734067209 0.00466204385263455 22330536 8954230 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} -18 609 252 0.236504275460558 0.23619685936537 0.236285954070344 0.236224917982757 0.00485555582272608 0.00431942072313597 22365501 8931476 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} -19 662 252 0.2368836149564 0.236649393824116 0.236820019836728 0.236530098420691 0.00382618166430698 0.00378911144442281 22401374 8948588 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} -20 715 252 0.25822391338404 0.241559017176184 0.238559548332952 0.23939879453727 0.0960482578215303 0.0132012338804383 23167182 9134239 1369 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} -21 240 303 0.234704694306434 0.235049100597019 0.234561684596017 0.235095750362402 0.00492587701771834 0.00489889732309081 22195320 8888075 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} -22 292 303 0.235110068252664 0.235405611644141 0.235111009384298 0.235416189822232 0.00385556497605084 0.00336123195594748 22233655 8901556 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} -23 345 303 0.2357047259771 0.235830061040054 0.235584039063096 0.235416189822232 0.00362491022096637 0.00391010352459021 22289890 8917606 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} -24 398 303 0.235445809032442 0.235539742942339 0.235400930800336 0.235584039063096 0.00396414113484663 0.00346501142714481 22265405 8906628 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} -25 451 303 0.235609798576152 0.235655494656103 0.235584039063096 0.23570611123827 0.00416280596085364 0.00398994481788368 22280913 8911005 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} -26 504 304 0.236341692327044 0.236321285185169 0.236270695048447 0.236499580376898 0.00510957334318108 0.00521423017073339 22350126 8936181 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} -27 556 304 0.237140914000607 0.236955526298078 0.237125200274662 0.236942092011902 0.00475795715626685 0.00469746483127845 22425706 8960164 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} -28 609 304 0.237700115383796 0.236861803640189 0.237293049515526 0.237079423208972 0.00593167252288942 0.00451866664835732 22478588 8956620 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} -29 662 304 0.237248245305009 0.237245579941341 0.237155718318456 0.237155718318456 0.00363514276341395 0.0036025733428924 22435856 8971132 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} -30 715 304 0.244428286588964 0.237718424502022 0.238284885938811 0.237613488975357 0.048301855108988 0.0035569171044449 23114851 8989012 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} -31 240 355 0.234934467893955 0.235321726691877 0.234851606012055 0.235446707866026 0.00505539022371852 0.00532019111804385 22217049 8898384 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} -32 292 355 0.235720059020585 0.235454456381478 0.235690852216373 0.235523002975509 0.0039958357685124 0.00357598286659729 22291340 8903403 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} -33 345 355 0.235889579034463 0.236075051644649 0.235828183413443 0.23611810482948 0.00386022198358592 0.00411043449933203 22307371 8926870 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} -34 398 356 0.235745670490463 0.235862588937685 0.235736629282063 0.23570611123827 0.00414333509913916 0.00385301306654852 22293762 8918836 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} -35 451 356 0.236416528153768 0.236303090718852 0.236453803311208 0.236194399938964 0.00399936463307211 0.0038142848359319 22357203 8935493 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} -36 503 356 0.237595501729171 0.237858823370739 0.2374151216907 0.237674525062943 0.00462804031075448 0.00474920959282461 22468695 8994321 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} -37 556 356 0.237582378758849 0.237900474946974 0.23768978408484 0.237933928435187 0.00406281499470982 0.00398276361993625 22467454 8995896 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} -38 609 356 0.23808273297859 0.23771178669527 0.237949187457084 0.237674525062943 0.0043401270194021 0.00372413192761026 22514771 8988761 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} -39 662 356 0.237462981935401 0.237519898544694 0.237399862668803 0.23768978408484 0.00368177851055869 0.00379220813471412 22456163 8981505 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.236817577124283 0.236763505920276 0.236835278858625 0.236743724727245 0.00344580664788807 0.00346924641716547 22395129 8952903 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 239 407 0.235180156123164 0.235128093141916 0.235202563515679 0.235172045471885 0.00555707702121704 0.00596520577377328 22240283 8891062 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} -42 292 407 0.240437338583367 0.236363386333972 0.236713206683452 0.236331731136034 0.0264918107342235 0.00379749545995685 22737439 8937773 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} -43 345 408 0.236389362230516 0.236095335301139 0.236270695048447 0.23593499656672 0.00558384731046085 0.00472415465100634 22354634 8927637 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} -44 398 408 0.236567849431205 0.236902080053272 0.236591134508278 0.236652170595865 0.00427191041923148 0.00437179466504526 22371513 8958143 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} -45 450 408 0.237608603550467 0.237674287053936 0.23750667582208 0.23736934462501 0.0045613059419243 0.00459845206597376 22469934 8987343 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} -46 503 408 0.238181657545356 0.238235961865139 0.238269626916915 0.238040741588464 0.00461278944471212 0.00463951692407629 22524126 9008582 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} -47 556 408 0.238539678823497 0.238295173217005 0.238574807354849 0.238193331807431 0.00413151561552598 0.00378007354062631 22557983 9010821 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} -48 609 408 0.238598134729973 0.23889358075163 0.238483253223468 0.238956282902266 0.00412439851579766 0.00389552864935742 22563511 9033449 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.237957625918258 0.23781547928601 0.237903410391394 0.237613488975357 0.00399265450835653 0.00402236156813059 22502940 8992682 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 714 409 0.236999289551361 0.236816105910835 0.236865796902419 0.236804760814832 0.00478875987863682 0.00399491741788814 22412313 8954892 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} -51 239 459 0.235502033716728 0.235574888939047 0.235629816128786 0.235324635690852 0.00597373819089275 0.00600854778823148 22270722 8907957 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} -52 292 460 0.236023484089403 0.236187259668752 0.23598077363241 0.236057068741894 0.00518358676405842 0.00490617740389518 22320034 8931113 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} -53 345 460 0.236335421640984 0.236435053490541 0.236240177004654 0.236453803311208 0.00411497093983544 0.00436355519642622 22349533 8940483 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} -54 398 460 0.237569795088678 0.237313015826673 0.2374151216907 0.23773556115053 0.00488521866076974 0.00521862674527248 22466264 8973682 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} -55 450 460 0.238192253207131 0.238594403429763 0.238178072785534 0.238895246814679 0.00554543512977852 0.00557261490250685 22525128 9022136 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} -56 503 460 0.238688367047259 0.238603579999257 0.238712138551919 0.238605325398642 0.00572180509471925 0.00543619796600208 22572044 9022483 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} -57 556 460 0.239058950846545 0.238686512915493 0.239002059967956 0.238727397573816 0.00503138805993083 0.00481077797048976 22607089 9025619 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.239017054627034 0.238814112188719 0.238941023880369 0.238925764858473 0.00477751689730933 0.00504611640708345 22603127 9030444 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 661 461 0.238293705082444 0.237708719023624 0.238300144960708 0.237888151369497 0.00482161636659505 0.00445503396545816 22534722 8988645 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} -60 714 461 0.23671250876561 0.236415325188401 0.236469062333104 0.236346990157931 0.00486981648319573 0.0050873062568854 22385193 8939737 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} -61 239 512 0.235712212732126 0.236037763566877 0.235538261997406 0.23579766536965 0.00525566562337486 0.0052506767403465 22290598 8925460 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} -62 292 512 0.236067918191974 0.236193157003038 0.23598077363241 0.235996032654307 0.00406208739461233 0.00374829227500883 22324236 8931336 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} -63 345 512 0.237478727384884 0.237470260444001 0.237079423208972 0.23750667582208 0.00625211763929945 0.00381497109443259 22457652 8979628 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} -64 397 512 0.237871887768889 0.238005436919084 0.237842374303807 0.237857633325704 0.00409388707878102 0.00413183310383355 22494832 8999865 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} -65 450 512 0.238502266197391 0.238948640168595 0.238529030289158 0.238879987792782 0.00555762883297214 0.00578301778503109 22554445 9035531 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} -66 503 512 0.239843421074824 0.238447366754294 0.23935301747158 0.238605325398642 0.00731812233979112 0.00564636096765139 22681274 9016576 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} -67 556 513 0.244091308591194 0.239784104674246 0.240039673456931 0.239963378347448 0.0217297491217953 0.00482608052641254 23082984 9067123 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} -68 609 513 0.23927835083706 0.239626860056919 0.239246204318303 0.239414053559167 0.00462275261920818 0.00517391364395457 22627837 9061177 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} -69 661 513 0.237765846555043 0.237607776759187 0.237582970931563 0.237277790493629 0.00436354798564373 0.0043927124304434 22484804 8984828 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} -70 714 513 0.236898302954609 0.237072150711535 0.236881055924315 0.237033646143282 0.00438487573336984 0.00372497471261861 22402763 8964574 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} -71 239 564 0.236006226484597 0.236072592218243 0.236194399938964 0.236194399938964 0.00511779022047534 0.00514279434137698 22318402 8926777 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} -72 292 564 0.235842099472221 0.236206961525447 0.2360265506981 0.236209658960861 0.0038312410447375 0.00349317203090452 22302881 8931858 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} -73 344 564 0.237409210538073 0.237290325634668 0.237277790493629 0.237094682230869 0.00385645546820507 0.00362148263662042 22451078 8972824 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} -74 397 564 0.238195785094389 0.238113281444725 0.238178072785534 0.237888151369497 0.00372010802476104 0.00374896237645837 22525462 9003943 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} -75 450 564 0.238825846287508 0.238732924671868 0.238879987792782 0.238956282902266 0.00483900931796191 0.00497480249070287 22585045 9027374 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} -76 503 565 0.239290839336616 0.239614959606566 0.239322499427787 0.23953612573434 0.00576533139247451 0.00650887272104724 22629018 9060727 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} -77 556 565 0.239980244695282 0.239123127216211 0.239291981383993 0.239246204318303 0.00762929890515471 0.00484864194645606 22694213 9042129 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} -78 608 565 0.238289316659653 0.238098445549952 0.238269626916915 0.238254367895018 0.0042602023312944 0.00442353018189676 22534307 9003382 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} -79 661 565 0.237449277366879 0.23747253475229 0.237476157778286 0.237476157778286 0.00366673957606182 0.00349943087751905 22454867 8979714 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} -80 714 565 0.236798077722774 0.236357885681365 0.236713206683452 0.236346990157931 0.00399116646255305 0.00399401163707343 22393285 8937565 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} -81 239 619 0.245213296117393 0.939805462534892 0.243961242084382 1 0.00839066155743343 0.132383233777995 23189087 53029120 1443 861 74 True 239 616 32 {X=0,Y=0,Width=0,Height=0} -82 292 616 0.238094132303333 0.237076646437223 0.237582970931563 0.237079423208972 0.00445895291673163 0.00371302913871231 22515849 8964744 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} -83 344 616 0.23717012080482 0.237179598555497 0.237262531471733 0.237338826581216 0.00374920067180458 0.00376747236671915 22428468 8968637 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} -84 397 616 0.237945253738341 0.238448398126658 0.237949187457084 0.238529030289158 0.00408697754683283 0.00412216404291301 22501770 9016615 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} -85 450 617 0.23810481256121 0.23774648311941 0.238086518654154 0.237872892347601 0.00464170688493738 0.00471636671431202 22516859 8990073 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} -86 503 617 0.23884131679966 0.238975799640844 0.238757915617609 0.239063096055543 0.00527723503332947 0.00505208690519797 22586508 9036558 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} -87 555 617 0.238920995753223 0.238967707334605 0.238971541924163 0.238788433661402 0.00417199150256104 0.00412611562131139 22594043 9036252 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} -88 608 617 0.237866029488826 0.237844331266754 0.23773556115053 0.237964446478981 0.00404556084005357 0.00376331372934834 22494278 8993773 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} -89 661 617 0.237051020067729 0.236770831308604 0.237018387121386 0.236484321355001 0.00357457274785758 0.00353278946186168 22417205 8953180 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.23710961344287 0.236848448690349 0.237170977340352 0.237140459296559 0.00393825696428634 0.00383067511078519 22422746 8956115 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 673 0.244835500500412 0.942124568026572 0.243884946974899 1 0.00879764025058778 0.128898467119157 23153360 53159977 1443 861 74 True 239 668 32 {X=0,Y=0,Width=0,Height=0} -92 278 666 0.266182630304235 0.239661024996706 0.238330663004501 0.238910505836576 0.0987891980434576 0.0052318530264918 24788320 6612304 1421 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} -93 344 668 0.236571592808718 0.236560828028046 0.236377508201724 0.236438544289311 0.00381816075206057 0.0037469809240289 22371867 8945239 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} -94 397 669 0.237054763445242 0.237164260197265 0.237018387121386 0.237186236362249 0.00405016281668433 0.00413503338856287 22417559 8968057 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} -95 450 669 0.237411959911388 0.237843352785281 0.237323567559319 0.23782711528191 0.00442831917798891 0.00445655194849149 22451338 8993736 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} -96 503 669 0.238311004985301 0.238340156919338 0.238269626916915 0.238391699092088 0.00458200721359577 0.0044369077851235 22536358 9012522 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} -97 555 669 0.237448452554884 0.237765338721857 0.23736934462501 0.237933928435187 0.00376523604066156 0.00341086278785264 22454789 8990786 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} -98 608 669 0.237317455490951 0.237151883728898 0.237277790493629 0.237033646143282 0.00357141484274651 0.00358941386022635 22442401 8967589 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} -99 661 669 0.237971256465191 0.236748484907386 0.23778133821622 0.236758983749142 0.00452907408325805 0.00369343330349421 22504229 8952335 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} -100 714 673 0.240483644374695 0.941331347002121 0.240222781719692 1 0.00485816669719674 0.133154588289778 22741818 53115219 1443 861 76 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv deleted file mode 100644 index ddf4378..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 241 197 0.0244442551606662 0.141843933169737 0.0243686579690242 0.157717250324254 0.00261092596392076 0.0399748670220895 2311620 8003634 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} -2 293 199 0.0238228227699503 0.0238476298071373 0.0236820019836728 0.0238498512245365 0.00197736253658056 0.00182364425754966 2252853 901767 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} -3 346 199 0.0236820548562366 0.0235729409675516 0.0236057068741894 0.0235446707866026 0.00173386976522604 0.00163216798845499 2239541 891380 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} -4 398 199 0.0237794989912179 0.023824992506022 0.0236514839398795 0.0238803692683299 0.00194079760759756 0.00183084423183313 2248756 900911 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} -5 451 199 0.0237050544214655 0.0235735492127918 0.0236362249179828 0.0236209658960861 0.00229921178134761 0.00218683852598397 2241716 891403 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} -6 504 199 0.0237765169786227 0.0235777011476927 0.0236362249179828 0.0236209658960861 0.00244403003612614 0.00231837274199074 2248474 891560 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} -7 557 199 0.0236241488244235 0.0239797512514976 0.0236057068741894 0.0239566643778134 0.00218690177209081 0.00208668648211671 2234065 906763 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} -8 609 200 0.0236754352112558 0.0237790567676605 0.0236209658960861 0.0237277790493629 0.00186016049627788 0.00203395416235922 2238915 899174 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} -9 662 200 0.023801102720764 0.0238338781756186 0.0237582970931563 0.023773556115053 0.00154638315115928 0.00153064438789891 2250799 901247 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} -10 714 198 0.024451382382259 0.15366668004711 0.0243533989471275 0.171801327534905 0.00210313049102417 0.0450229230466257 2312294 8670740 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} -11 240 251 0.0238016314464014 0.0237503634595879 0.0237430380712596 0.0237430380712596 0.00202245777520412 0.00198164263040511 2250849 898089 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} -12 293 251 0.0236738067362924 0.0238691563995531 0.0236209658960861 0.0238803692683299 0.00152763683899497 0.00148327388499458 2238761 902581 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} -13 345 251 0.0236222771356669 0.0236396363804172 0.0236057068741894 0.0236514839398795 0.00139969131049758 0.00147880705766304 2233888 893902 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} -14 398 251 0.0238269679789478 0.0238092839115564 0.0238193331807431 0.0238345922026398 0.00145774740004575 0.00133649139194499 2253245 900317 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} -15 451 251 0.0238315784665064 0.023930430496147 0.0237888151369497 0.0238040741588464 0.00190838356110239 0.00179424474312615 2253681 904898 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} -16 504 251 0.0237972853216616 0.0235369751620412 0.023773556115053 0.0233920805676356 0.00219250493062997 0.0025473883411987 2250438 890020 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} -17 557 252 0.0237930660910748 0.0238077500757331 0.023773556115053 0.0238498512245365 0.00202402600961975 0.00184268051783458 2250039 900259 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} -18 609 252 0.0236989740766349 0.0238096277023443 0.0236820019836728 0.0237430380712596 0.00171448945534642 0.00165857812291598 2241141 900330 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} -19 662 252 0.0238554662908062 0.0238767462423336 0.0238651102464332 0.0238956282902266 0.00146950875486543 0.00139667878380764 2255940 902868 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} -20 715 252 0.046300292580906 0.0243142067972992 0.0243991760128176 0.0240634775310903 0.100525522856814 0.00197549242735598 4378480 919410 1443 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} -21 240 303 0.0236232817143781 0.0236048870653873 0.0236057068741894 0.0236209658960861 0.00199142718200192 0.00197728466500817 2233983 892588 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} -22 292 303 0.0235788581863198 0.0237586937748348 0.0235904478522927 0.0236362249179828 0.00161042522664715 0.00143438949968013 2229782 898404 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} -23 345 303 0.0237781031555351 0.023668118124928 0.0237277790493629 0.0236057068741894 0.00153658386172548 0.00149785735570333 2248624 894979 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} -24 398 303 0.0238815218902195 0.0236711857965745 0.0239108873121233 0.0236209658960861 0.00158041844571407 0.00149582867157986 2258404 895095 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} -25 451 303 0.0238144794793914 0.0238807659500083 0.0237430380712596 0.0238040741588464 0.00169550236968414 0.00163726055063082 2252064 903020 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} -26 504 304 0.0238214375087802 0.0239299015872424 0.0238498512245365 0.0239566643778134 0.0020321390085171 0.00209329948999691 2252722 904878 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} -27 556 304 0.0239866854195076 0.023828245295785 0.0239414053559167 0.0238193331807431 0.00185034149467623 0.00193665006794986 2268349 901034 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} -28 609 304 0.0239605346494795 0.0238398019553498 0.0238803692683299 0.0236972610055695 0.00179647069254192 0.0018818894929566 2265876 901471 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} -29 662 304 0.0239040984749385 0.0237618143373717 0.0238956282902266 0.0237582970931563 0.00143921332811214 0.00131100286198371 2260539 898522 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} -30 715 304 0.0247207575200251 0.0241002366999575 0.024124513618677 0.0241092545967803 0.00540505698141673 0.00147746243617662 2337768 911319 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} -31 240 355 0.0237402992724577 0.0235267407747378 0.0237277790493629 0.0234988937209125 0.00202773745096525 0.00194630761591694 2245049 889633 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} -32 292 355 0.0237715046595797 0.0239446052547893 0.0237582970931563 0.0239871824216068 0.00156363223623393 0.00155481214522832 2248000 905434 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} -33 345 355 0.0237413144256816 0.0236583333101936 0.0237125200274662 0.0236209658960861 0.00159123529942404 0.00146364672699805 2245145 894609 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} -34 398 356 0.0239502244995493 0.0237464230882488 0.02392614633402 0.0236667429617761 0.00166278749868515 0.00162620377380177 2264901 897940 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} -35 451 356 0.0238291146050359 0.0240181235925238 0.0238040741588464 0.0240024414435035 0.00169337389984899 0.00169258153700402 2253448 908214 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} -36 503 356 0.0240043237067728 0.0240468697914869 0.0239566643778134 0.0240329594872969 0.00177373575477515 0.00177234130278414 2270017 909301 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} -37 556 356 0.0240503334117433 0.0239725316449503 0.0240024414435035 0.02392614633402 0.00164223927973576 0.00163741378136103 2274368 906490 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} -38 609 356 0.0238622868515292 0.0241012680723214 0.0238803692683299 0.0240024414435035 0.00159493905946896 0.00169985041182442 2256585 911358 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} -39 662 356 0.0238755155669781 0.0239099881669855 0.0238345922026398 0.0239108873121233 0.00148531823788974 0.0014391326114988 2257836 904125 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.0237899466098139 0.024217310685983 0.023773556115053 0.0241702906843671 0.00144702883974268 0.00132565688800814 2249744 915746 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 239 407 0.0237636477966073 0.0241395081861215 0.0237277790493629 0.0240329594872969 0.0021589121384108 0.00241522385217392 2247257 912804 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} -42 292 407 0.0243221406874417 0.0237993668695958 0.0239871824216068 0.0237888151369497 0.0032498879171854 0.00161222602283299 2300072 899942 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} -43 345 408 0.0238291780521124 0.0239849874496528 0.0237888151369497 0.0238651102464332 0.00177694537824443 0.00182575416797481 2253454 906961 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} -44 398 408 0.0238311449114837 0.0238807395045631 0.0238498512245365 0.0239108873121233 0.00161555999489089 0.00171486842803423 2253640 903019 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} -45 450 408 0.0239883033199582 0.0238796287958635 0.0239414053559167 0.02392614633402 0.00178846342828253 0.0017434084762582 2268502 902977 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} -46 503 408 0.0240604109223931 0.0238575468490979 0.0241397726405737 0.0238651102464332 0.00181625865118868 0.00174587082805582 2275321 902142 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} -47 556 408 0.0240887083185092 0.0240024943343939 0.0240634775310903 0.0239566643778134 0.00170206876222019 0.00144604774569259 2277997 907623 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} -48 609 408 0.024051063053123 0.02396322284823 0.0240329594872969 0.0239108873121233 0.00160833225861749 0.00162590570182588 2274437 906138 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.0240794979179049 0.0241250954184721 0.0240634775310903 0.0241702906843671 0.00153754684552909 0.0015370987281016 2277126 912259 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 714 409 0.0239159313547045 0.0239161499557237 0.0239566643778134 0.0239414053559167 0.00169793397927149 0.00153101325215318 2261658 904358 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} -51 239 459 0.0238360409108864 0.0237041368213289 0.0237430380712596 0.0235446707866026 0.00237818166027655 0.00250436866651959 2254103 896341 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} -52 292 460 0.0239767771010618 0.0237376167549878 0.0239108873121233 0.0237582970931563 0.00193512219119003 0.00182363456502805 2267412 897607 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} -53 345 460 0.023707856667344 0.0238366020564772 0.0236972610055695 0.0238193331807431 0.00171874264996004 0.00170510717957616 2241981 901350 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} -54 398 460 0.0237519629600197 0.0241085670152044 0.0237125200274662 0.0241550316624704 0.00193153385904066 0.00203316595544912 2246152 911634 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} -55 450 460 0.0241387257638116 0.0239854370222217 0.0241397726405737 0.0238956282902266 0.00215425671875646 0.00224379224094691 2282727 906978 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} -56 503 460 0.0241106927305142 0.0240468962369321 0.0241550316624704 0.0240024414435035 0.00204814438966274 0.00206733820899988 2280076 909302 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} -57 556 460 0.0242444285932498 0.0242058598081991 0.0241855497062638 0.0241702906843671 0.00194569076182067 0.00184947777351008 2292723 915313 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.024126914033071 0.0240185202742022 0.0240939955748837 0.0239566643778134 0.00193869970550562 0.00198871399508021 2281610 908229 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 661 461 0.0239452862020955 0.0240472135822749 0.0239871824216068 0.0240634775310903 0.00181583811940886 0.00177593675227069 2264434 909314 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} -60 714 461 0.023906773826664 0.0239966498909985 0.0238956282902266 0.0240177004654002 0.00191865183447623 0.00210944048874135 2260792 907402 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} -61 239 512 0.0237692840119025 0.0238561716859461 0.0236972610055695 0.0236514839398795 0.00207996016288347 0.00201861224427327 2247790 902090 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} -62 292 512 0.0238287656461152 0.0238759528789768 0.0238040741588464 0.0238193331807431 0.0015753135894221 0.00145818920407326 2253415 902838 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} -63 345 512 0.0239246976257734 0.0240482185091936 0.0238193331807431 0.0241092545967803 0.00160952283898864 0.00155898436657882 2262487 909352 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} -64 397 512 0.0239638550464827 0.0239265959065889 0.0239414053559167 0.0240177004654002 0.00161711668174516 0.00155310174610777 2266190 904753 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} -65 450 512 0.0240915740114641 0.0240857181505272 0.0240024414435035 0.0238193331807431 0.00222016914991034 0.0024166265173497 2278268 910770 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} -66 503 512 0.0242767443042105 0.0241961807752456 0.0242160677500572 0.0240939955748837 0.00228775549957581 0.00241345368472939 2295779 914947 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} -67 556 513 0.0246566231002029 0.0240740821546268 0.0243381399252308 0.0239719233997101 0.00280567382611019 0.00190551351335941 2331703 910330 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} -68 609 513 0.0241609639641226 0.0241781185361547 0.0241092545967803 0.0241550316624704 0.00190114847834761 0.00207980284347675 2284830 914264 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} -69 661 513 0.0238986948989238 0.0238797874685349 0.0238956282902266 0.0238040741588464 0.00171140756734521 0.00165672820676379 2260028 902983 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} -70 714 513 0.0240229982962874 0.0241117140231866 0.0239719233997101 0.0240939955748837 0.00164625829792812 0.00160399118635386 2271783 911753 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} -71 239 564 0.0238303623975402 0.0236585184283102 0.0238498512245365 0.0236514839398795 0.00198633295739587 0.00196210461058392 2253566 894616 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} -72 292 564 0.0238667281468838 0.0238536593686494 0.0238345922026398 0.0238651102464332 0.00152516998158696 0.00145626897751878 2257005 901995 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} -73 344 564 0.0239143451777922 0.0241536300538733 0.0239566643778134 0.0241397726405737 0.00140078256306143 0.00154262014355658 2261508 913338 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} -74 397 564 0.0241003085589948 0.0240317165513711 0.0241092545967803 0.0239871824216068 0.00153875572704279 0.00148697393978016 2279094 908728 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} -75 450 564 0.0241862053260543 0.0240266390258873 0.0241550316624704 0.02392614633402 0.00197785048908506 0.00194941704715236 2287217 908536 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} -76 503 565 0.0240661317337902 0.0242867564251523 0.0240329594872969 0.0242313267719539 0.00229252988632644 0.00249057242922896 2275862 918372 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} -77 556 565 0.0241268188624563 0.0240180178107429 0.0240939955748837 0.0240024414435035 0.00190637196542878 0.00176454163030737 2281601 908210 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} -78 608 565 0.0240394839616629 0.024088124686043 0.0240939955748837 0.0240939955748837 0.00163194807477317 0.0016686192444975 2273342 910861 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} -79 661 565 0.0239061076323608 0.0240017803073728 0.0238956282902266 0.0239566643778134 0.00144713428723821 0.00139828822920365 2260729 907596 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} -80 714 565 0.0239716167388404 0.023948624962464 0.0239108873121233 0.0239108873121233 0.00160961448730656 0.00156546832926789 2266924 905586 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} -81 239 619 0.0246321219541636 0.145841938686202 0.0245822842755779 0.161135271229114 0.00190577086842967 0.0429131701038328 2329386 8229224 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} -82 292 616 0.0240685955952607 0.0237129431545899 0.0241092545967803 0.0237277790493629 0.00147517990953633 0.00141860903526297 2276095 896674 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} -83 344 616 0.0239090367723922 0.0238495074337485 0.0238498512245365 0.0238193331807431 0.00142950111681724 0.00136346344383234 2261006 901838 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} -84 397 616 0.0237847545240541 0.0239365129485495 0.023773556115053 0.0238651102464332 0.00167071634796841 0.00152043347945001 2249253 905128 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} -85 450 617 0.0240140311094763 0.024031822333152 0.0240329594872969 0.0240177004654002 0.00182896895295875 0.00196803932928335 2270935 908732 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} -86 503 617 0.0239974608479987 0.0241499541369866 0.0240329594872969 0.0240482185091936 0.00202558192811351 0.00200422939235236 2269368 913199 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} -87 555 617 0.0240883699341012 0.0240446219286425 0.0240024414435035 0.0239719233997101 0.00175492033192448 0.0016632509697796 2277965 909216 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} -88 608 617 0.0240602417301891 0.0239089039037312 0.0240329594872969 0.0238193331807431 0.00160605065604226 0.00153917996644483 2275305 904084 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} -89 661 617 0.0239235661529093 0.0239062064683179 0.0239414053559167 0.0239108873121233 0.00139010854362294 0.00143911812980367 2262380 903982 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.0240160931394623 0.0239704689002225 0.0240024414435035 0.0238651102464332 0.00150221349745286 0.00144314818058167 2271130 906412 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 673 0.0246923543787815 0.144100053105295 0.0246433203631647 0.159288929579614 0.00208631723191755 0.0413615196625489 2335082 8130937 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} -92 278 666 0.0286537889192959 0.0243706514279418 0.0243991760128176 0.0243533989471275 0.0170535649227122 0.00173071904398345 2709703 672392 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} -93 344 668 0.0238960935687875 0.0237683728077883 0.0238803692683299 0.0236514839398795 0.00151401543222313 0.0015291604157336 2259782 898770 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} -94 397 669 0.0238945496899262 0.0237950033711331 0.02392614633402 0.0237277790493629 0.00163450095467606 0.00156484275866686 2259636 899777 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} -95 450 669 0.0239175704041806 0.0239200638816175 0.0239414053559167 0.0238803692683299 0.00178252040357178 0.00160112493246111 2261813 904506 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} -96 503 669 0.0239833755970172 0.0241185105026102 0.02392614633402 0.0240024414435035 0.00174599698492237 0.00171661827150871 2268036 912010 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} -97 555 669 0.0240455431574681 0.0239322287864225 0.0240329594872969 0.0238498512245365 0.00149909791292468 0.00139539044093913 2273915 904966 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} -98 608 669 0.0238879511939709 0.0239323345682034 0.0239566643778134 0.0240329594872969 0.00146681826276662 0.0014328062341428 2259012 904970 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} -99 661 669 0.0240384688084391 0.0237180206800737 0.0240177004654002 0.0238040741588464 0.0014955617920589 0.00148177935987558 2273246 896866 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} -100 714 673 0.0241661666243951 0.148776172390439 0.0241702906843671 0.166369115739681 0.00152587377540353 0.0415510711302606 2285322 8394790 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv deleted file mode 100644 index ca30782..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 241 197 0.319160472513643 0.339084106009618 0.319096665903716 0.331074998092622 0.00688221630417829 0.0225539369345099 30182050 19133036 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} -2 293 199 0.318735514569802 0.317648698441134 0.318074311436637 0.317540245670253 0.00616251693412179 0.00523742946781861 30141863 12011471 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} -3 346 199 0.318225558692485 0.317400613719447 0.318333714808881 0.317204547188525 0.00467145767479735 0.00498506402369371 30093638 12002090 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} -4 398 199 0.318939560367805 0.317874119416259 0.318867780575265 0.317799649042496 0.00485029343151101 0.00462310089080331 30161159 12019995 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} -5 451 199 0.318417010245804 0.318439285026232 0.318394750896468 0.318471046005951 0.00622228603407889 0.00602747734667416 30111743 12041366 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} -6 504 199 0.318789063902362 0.318705960895914 0.318898298619059 0.318593118181125 0.00674231527879818 0.00676440644435088 30146927 12051450 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} -7 557 199 0.318606262300471 0.31917655759375 0.318547341115434 0.319096665903716 0.00654976311666541 0.00632208159985185 30129640 12069245 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} -8 609 200 0.318805168885279 0.318668196800128 0.318822003509575 0.318532082093538 0.00629733922663727 0.00636879798766356 30148450 12050022 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} -9 662 200 0.318754220882854 0.318674411479756 0.318745708400092 0.318425268940261 0.00502966073518121 0.00470588612475364 30143632 12050257 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} -10 714 198 0.318583241586217 0.338011065360629 0.318562600137331 0.330693522545205 0.00542566730083147 0.0211173331152013 30127463 19072489 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} -11 240 251 0.318243493066107 0.318879839698289 0.318211642633707 0.318638895246815 0.00532191363899372 0.00528100923044178 30095334 12058025 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} -12 293 251 0.318191931741943 0.318900652263684 0.317952239261463 0.318822003509575 0.00454702646564635 0.00457853235369779 30090458 12058812 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} -13 345 251 0.318342692570205 0.317831727367558 0.318226901655604 0.31773861295491 0.00406411566085792 0.0039719766883507 30104715 12018392 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} -14 398 251 0.318312512910819 0.319008232334872 0.318272678721294 0.318730449378195 0.00413339508254634 0.00388653091429887 30101861 12062880 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} -15 451 251 0.31875412571224 0.319198401531509 0.318684672312505 0.319050888838025 0.00468495346223753 0.00437693619504498 30143623 12070071 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} -16 504 251 0.31916830822759 0.319050968174361 0.319295033188373 0.318745708400092 0.00593560278508935 0.00646123001253853 30182791 12064496 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} -17 557 252 0.319025161048507 0.31901206692443 0.318974593728542 0.318913557640955 0.00619633577886662 0.00581512001375968 30169254 12063025 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} -18 609 252 0.319609159664092 0.319384868365813 0.31944762340734 0.319340810254063 0.00588568078045015 0.00545301807966298 30224481 12077122 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} -19 662 252 0.319338748224077 0.320115952699148 0.319340810254063 0.320180056458381 0.00423616104303275 0.0044042947712927 30198909 12104767 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} -20 715 252 0.336830806017704 0.320785128245203 0.319935912108034 0.320744640268559 0.0827972033902745 0.00463642029895688 31477819 12130071 1426 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} -21 240 303 0.318509939063842 0.318804866861067 0.318501564049744 0.318699931334401 0.00513988890678437 0.00548558416604103 30120531 12055190 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} -22 292 303 0.318558328034181 0.318883568506066 0.318471046005951 0.319081406881819 0.00480257646904739 0.00426283446763578 30125107 12058166 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} -23 345 303 0.318847445787249 0.318713894529482 0.318944075684749 0.318883039597162 0.00433423648375839 0.00434653184677497 30152448 12051750 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} -24 398 303 0.319154127805993 0.318596529643559 0.319127183947509 0.318776226443885 0.00429909005577881 0.00436874899977546 30181450 12047312 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} -25 451 303 0.319217416264796 0.319381245339817 0.319340810254063 0.319142442969406 0.00428589598528788 0.00417684801282486 30187435 12076985 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} -26 504 304 0.319707883315116 0.319538727966151 0.319752803845273 0.319615472648203 0.00500988758083787 0.0049457653825303 30233817 12082940 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} -27 556 304 0.319707143099224 0.32039780825439 0.320012207217517 0.320195315480278 0.00549148778037645 0.00493047180814708 30233747 12115425 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} -28 609 304 0.320317874083038 0.320304720287187 0.320180056458381 0.320302128633555 0.00563888153875529 0.00575121672137289 30291502 12111905 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} -29 662 304 0.3198208402603 0.31993078169166 0.319798580910964 0.319874876020447 0.00444771454674674 0.00424652190063091 30244499 12097765 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} -30 715 304 0.320052802771961 0.319822566929786 0.319462882429236 0.319691767757687 0.00743924762282662 0.00430997233370852 30266435 12093673 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} -31 240 355 0.318451610051519 0.318910754423761 0.318440527962158 0.318898298619059 0.00659788320668229 0.00641653839572672 30115015 12059194 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} -32 292 355 0.318731686596186 0.319311878936983 0.318730449378195 0.319233997100786 0.00563689500553502 0.00464562909580409 30141501 12074362 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} -33 345 355 0.319124614340911 0.319500355625125 0.319188220035096 0.319295033188373 0.00539804688359906 0.00518480682946438 30178659 12081489 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} -34 398 356 0.319563054788507 0.31978829363277 0.319554436560616 0.319600213626307 0.0046404722182079 0.00468329797916497 30220121 12092377 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} -35 451 356 0.319938344245966 0.319684019242235 0.319844357976654 0.319645990691997 0.00428399671887163 0.00407958018154701 30255611 12088434 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} -36 503 356 0.320184286263481 0.32029112732834 0.320195315480278 0.320195315480278 0.00462591286808938 0.00463191810755495 30278869 12111391 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} -37 556 356 0.320318043275242 0.319872786830274 0.320302128633555 0.319935912108034 0.00532858677185653 0.00506269266191116 30291518 12095572 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} -38 609 356 0.32026868144973 0.320703729164791 0.320225833524071 0.320469977874418 0.00496407220430897 0.00497315176891188 30286850 12126993 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} -39 662 356 0.320041805278702 0.319803050191207 0.319935912108034 0.319935912108034 0.00451669005413617 0.00442913803746922 30265395 12092935 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.319663015657522 0.319785358188349 0.31990539406424 0.319661249713893 0.0040026953810392 0.00409756800501775 30229574 12092266 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 239 407 0.318878809792062 0.319047900502715 0.318760967421988 0.318791485465782 0.0068228447677734 0.00721733368671097 30155414 12064380 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} -42 292 407 0.322709945186484 0.319802230382405 0.320042725261311 0.319569695582513 0.0201061499206064 0.00539864026953669 30517713 12092904 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} -43 345 408 0.320083648625649 0.320056820683617 0.31985961699855 0.31972228580148 0.00571046151143744 0.00518517936793331 30269352 12102531 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} -44 398 408 0.32056500044598 0.320028471166333 0.320683604180972 0.320012207217517 0.00496995853285948 0.00580840878489047 30314872 12101459 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} -45 450 408 0.320574126250482 0.320201318596344 0.320637827115282 0.320119020370794 0.00508133182142557 0.00495176340847254 30315735 12107995 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} -46 503 408 0.320062689941381 0.320231519294795 0.319981689173724 0.320057984283207 0.00508996350934787 0.00492516973805643 30267370 12109137 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} -47 556 408 0.320745898635576 0.320795468414287 0.320653086137179 0.320790417334249 0.00530843139718801 0.00520624553435715 30331979 12130462 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} -48 609 408 0.320737523621479 0.320247227889261 0.320515754940108 0.320271610589761 0.00545364813393482 0.00530178596690819 30331187 12109731 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.32030384170462 0.320499200091395 0.320164797436484 0.320454718852522 0.00439996782956759 0.00427977674304724 30290175 12119259 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 714 409 0.319337648474751 0.319709882887668 0.319264515144579 0.319783321889067 0.00393526204466557 0.00405928226058772 30198805 12089412 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} -51 239 459 0.318709786780284 0.318658623548955 0.318730449378195 0.318028534370947 0.00612900452211988 0.0058967445451585 30139430 12049660 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} -52 292 460 0.31924839958715 0.319732440852448 0.319020370794232 0.319203479056992 0.00505364483021408 0.00483693097000443 30190365 12090265 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} -53 345 460 0.320299971432954 0.320484549314739 0.320286869611658 0.320149538414588 0.00446795642062882 0.00479326211311168 30289809 12118705 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} -54 398 460 0.320030437677497 0.320768467614709 0.319966430151827 0.320698863202869 0.0048533856106794 0.0043635267253769 30264320 12129441 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} -55 450 460 0.320228667493488 0.319924831466483 0.320347905699245 0.31981383993286 0.00638153971466751 0.00638538400834077 30283066 12097540 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} -56 503 460 0.320560707193804 0.320099344959544 0.320546272983902 0.320164797436484 0.00607132355478928 0.00650750996256348 30314466 12104139 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} -57 556 460 0.320772208023295 0.320449509099812 0.320531013962005 0.320698863202869 0.00563674651860402 0.00532319460359496 30334467 12117380 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.320586064875376 0.321008063348477 0.320637827115282 0.320866712443732 0.00565001306187724 0.00549669888285602 30316864 12138501 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 661 461 0.320428356592239 0.320300092334272 0.320210574502174 0.320057984283207 0.00509648393220321 0.00494833297586662 30301950 12111730 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} -60 714 461 0.319853769293 0.319358370029694 0.319798580910964 0.319172961013199 0.0048704443675552 0.00490063295337976 30247613 12076120 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} -61 239 512 0.318836892423526 0.318892771521006 0.318715190356298 0.318623636224918 0.00528463692496156 0.00488177787868349 30151450 12058514 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} -62 292 512 0.318952556443973 0.319464574937731 0.319050888838025 0.319295033188373 0.00447457892358236 0.00429515737215149 30162388 12080136 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} -63 345 512 0.320194532966334 0.319831505490273 0.319981689173724 0.319890135042344 0.00495640810473912 0.00405082666311148 30279838 12094011 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} -64 397 512 0.320291786760086 0.320061660200094 0.320393682764935 0.319890135042344 0.00411315051782054 0.00387688210151682 30289035 12102714 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} -65 450 512 0.320080698336592 0.319892065559845 0.320088502327001 0.319966430151827 0.00574015681007587 0.00519304060708901 30269073 12096301 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} -66 503 512 0.320263225001151 0.319663735585745 0.320134279392691 0.319615472648203 0.00695983910027624 0.00661257275849365 30286334 12087667 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} -67 556 513 0.323785806688073 0.320721474058539 0.321492332341497 0.320820935378042 0.0157676096707324 0.00530568937522855 30619454 12127664 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} -68 609 513 0.320537834522728 0.321116807019256 0.320347905699245 0.320912489509422 0.00586791355788833 0.00586711878316242 30312303 12142613 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} -69 661 513 0.320561373388107 0.320821332059721 0.320515754940108 0.32111085679408 0.00565601288716165 0.00531846737998582 30314529 12131440 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} -70 714 513 0.320371782949032 0.320711451234797 0.320485236896315 0.320485236896315 0.00547753077524749 0.00507355228663144 30296600 12127285 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} -71 239 564 0.318607499518463 0.319331898139021 0.318623636224918 0.31967650873579 0.00539953848407875 0.00576706508622611 30129757 12075119 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} -72 292 564 0.318891805868231 0.318565244681854 0.318944075684749 0.318394750896468 0.00403152516490105 0.00377850010687264 30156643 12046129 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} -73 344 564 0.319631027756457 0.319098464193991 0.319508659494926 0.319035629816129 0.00437739716788594 0.00432958994909009 30226549 12066292 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} -74 397 564 0.319617376060498 0.32014342951674 0.319523918516823 0.320286869611658 0.00454780108795494 0.00437293819573632 30225258 12105806 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} -75 450 564 0.320213017214619 0.320165114781827 0.320057984283207 0.320164797436484 0.00544973212380071 0.00599366435881042 30281586 12106626 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} -76 503 565 0.320584774784821 0.320369114946318 0.320515754940108 0.320195315480278 0.00698047773894325 0.00720095704747856 30316742 12114340 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} -77 556 565 0.320862493213146 0.320974556969373 0.320607309071489 0.320836194399939 0.00730674478800874 0.00520850143709598 30343005 12137234 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} -78 608 565 0.320675123421747 0.321067909391029 0.320622568093385 0.321004043640803 0.00518404293898605 0.00524809993787812 30325286 12140764 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} -79 661 565 0.321005164539154 0.321203495188714 0.321049820706493 0.321416037232013 0.00490362246264973 0.00474923153988912 30356497 12145891 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} -80 714 565 0.320777875962129 0.320659274371362 0.320653086137179 0.320775158312352 0.00530288755979288 0.00539151944817967 30335003 12125312 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} -81 239 619 0.317939243185295 0.340926017048811 0.317799649042496 0.331441214618143 0.00522487363213128 0.0238995489783739 30066562 19236967 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} -82 292 616 0.318932528316827 0.318499897986695 0.318852521553368 0.318654154268711 0.00462772298897275 0.00396691878582818 30160494 12043658 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} -83 344 616 0.318937730977099 0.318811874904053 0.318959334706645 0.318883039597162 0.00504652320725241 0.00514274015859647 30160986 12055455 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} -84 397 616 0.31933729951583 0.319473063925649 0.319203479056992 0.319203479056992 0.00493378714508338 0.00510052376738236 30198772 12080457 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} -85 450 617 0.320134945586994 0.319926894211211 0.320012207217517 0.320195315480278 0.0054931606166778 0.00546302898469974 30274203 12097618 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} -86 503 617 0.320482286607258 0.320729143237655 0.320500495918212 0.320775158312352 0.00533504734080115 0.00516398316643595 30307050 12127954 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} -87 555 617 0.320171554550131 0.320653905945981 0.320149538414588 0.320546272983902 0.00490529608280515 0.00519357269541961 30277665 12125109 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} -88 608 617 0.32038720058862 0.320594218576101 0.320408941786831 0.320546272983902 0.00478789274490286 0.00480088264363527 30298058 12122852 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} -89 661 617 0.320836818296191 0.32095744676631 0.320683604180972 0.321019302662699 0.00441441174217148 0.0038564887810657 30340577 12136587 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.320242424934574 0.320323311435182 0.320103761348898 0.320302128633555 0.00473110094539235 0.00457207909116372 30284367 12112608 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 673 0.317171258622392 0.334294527655737 0.317204547188525 0.3279468986038 0.00621922317195378 0.020626632286569 29993936 18862781 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} -92 278 666 0.317971453151128 0.318964735168077 0.31801327534905 0.318852521553368 0.00517127386266037 0.00442376185712038 30069608 8800312 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} -93 344 668 0.318244931199841 0.318639741501062 0.318089570458534 0.318486305027848 0.00526518594458795 0.00520499711739749 30095470 12048946 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} -94 397 669 0.318613971120265 0.318432673664925 0.318638895246815 0.318287937743191 0.00510242943924566 0.00488951882770457 30130369 12041116 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} -95 450 669 0.319927843754806 0.320155832430552 0.319707026779583 0.320103761348898 0.00524282628887654 0.00518696936940413 30254618 12106275 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} -96 503 669 0.320070938061325 0.320396406645793 0.320103761348898 0.320119020370794 0.00474575883049355 0.00468890914363864 30268150 12115372 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} -97 555 669 0.320535159171003 0.320440332530317 0.320454718852522 0.320759899290456 0.00413265159633295 0.00378380228782351 30312050 12117033 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} -98 608 669 0.320017579069994 0.320010223809125 0.31990539406424 0.320057984283207 0.00416315037174323 0.00407039086906386 30263104 12100769 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} -99 661 669 0.320160007182209 0.320179051531462 0.320042725261311 0.320256351567864 0.00415436854372407 0.00376394347814072 30276573 12107153 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} -100 714 673 0.319932179305033 0.337211287032924 0.31976806286717 0.330189974822614 0.00458565731388419 0.0189397376756298 30255028 19027361 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv b/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv deleted file mode 100644 index 0b1220d..0000000 --- a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv +++ /dev/null @@ -1,101 +0,0 @@ - ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour -1 241 197 0.0332409702517279 0.0353932038159606 0.0332188906691081 0.0351110093842985 0.00240865075572954 0.00337519250308865 3143499 1997084 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} -2 293 199 0.0333040683693007 0.0332024416021761 0.0332646677347982 0.0332188906691081 0.00207034977939373 0.0020318078033667 3149466 1255507 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} -3 346 199 0.0333445899021546 0.0332611240451376 0.0333104448004883 0.0332951857785916 0.00180524906920328 0.00168651994601063 3153298 1257726 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} -4 398 199 0.0333091652844457 0.0331584363813163 0.0332341496910048 0.0331425955596246 0.00179566086982452 0.0016283234665138 3149948 1253843 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} -5 451 199 0.0332846324148682 0.033422679270037 0.0332646677347982 0.0333409628442817 0.00233937137653402 0.00242477174763682 3147628 1263835 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} -6 504 199 0.0333557354385919 0.03365997425007 0.0333714808880751 0.0335851071946288 0.00261500703686846 0.00255515938270512 3154352 1272808 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} -7 557 199 0.0332677449180081 0.0336018207160131 0.0332494087129015 0.0335851071946288 0.002531117168003 0.00254477938104699 3146031 1270609 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} -8 609 200 0.0332845372442534 0.0334519543779046 0.0331883726253147 0.0334019989318685 0.00245357722253086 0.00264040763370551 3147619 1264942 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} -9 662 200 0.0331880448154195 0.03346705472713 0.0331883726253147 0.0334782940413519 0.00188012314827972 0.00182631491359683 3138494 1265513 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} -10 714 198 0.0333297855843061 0.0351745266136571 0.0332646677347982 0.0347753109025711 0.00205558166812888 0.00300199487831836 3151898 1984745 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} -11 240 251 0.0333256509498212 0.0331759168206122 0.0332646677347982 0.0331883726253147 0.00202504788928347 0.00208363249170143 3151507 1254504 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} -12 293 251 0.0332734340058671 0.0334941348630437 0.0332188906691081 0.0334782940413519 0.00183699932240751 0.00161028959040934 3146569 1266537 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} -13 345 251 0.0333357496094965 0.033362780336595 0.0333409628442817 0.0333562218661784 0.00169199627458321 0.0015162672356612 3152462 1261570 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} -14 398 251 0.0332612733162058 0.0331290026007773 0.0332341496910048 0.0331425955596246 0.00157703032507373 0.00161188346226471 3145419 1252730 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} -15 451 251 0.0334146989216799 0.0336441863192687 0.0333867399099718 0.0336308842603189 0.00182246799020909 0.00177161256998539 3159928 1272211 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} -16 504 251 0.033330335458969 0.033378885612739 0.0333104448004883 0.0334325169756619 0.00242667412029357 0.00245149374917101 3151950 1262179 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} -17 557 252 0.0333938142590008 0.0336455614824206 0.0333409628442817 0.0335088120851453 0.00229453689621071 0.00227519322038001 3157953 1272263 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} -18 609 252 0.0334450054752183 0.0335065642223009 0.0334325169756619 0.033524071107042 0.00217083437264695 0.00227877676410095 3162794 1267007 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} -19 662 252 0.0334863835436049 0.0334694083717553 0.0334477759975586 0.0334630350194553 0.00163933729450739 0.00165678875489304 3166707 1265602 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} -20 715 252 0.0368068228448178 0.033512011984018 0.0337682154573892 0.0334630350194553 0.0159376739707308 0.00180401796362009 3480711 1267213 1443 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} -21 240 303 0.0332478859830657 0.0332772028758364 0.0331578545815213 0.0332951857785916 0.00209733096136621 0.00227641787793265 3144153 1258334 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} -22 292 303 0.033421138799944 0.033245415450672 0.0333867399099718 0.0332494087129015 0.00188359546355255 0.00158023896750518 3160537 1257132 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} -23 345 303 0.033367060741746 0.0332736591861758 0.0333714808880751 0.0332951857785916 0.00174353990935726 0.00164793024607295 3155423 1258200 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} -24 398 303 0.0332777272580431 0.0336499249808833 0.0332951857785916 0.0336308842603189 0.00163680685268699 0.00168374126290928 3146975 1272428 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} -25 451 303 0.033369418858089 0.0334820492945744 0.0333409628442817 0.0335393301289387 0.00172475029722751 0.00161274329465728 3155646 1266080 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} -26 504 304 0.033416676355564 0.0337102734868941 0.0334325169756619 0.0337071793698024 0.00194089595001168 0.0019601726829041 3160115 1274710 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} -27 556 304 0.0334756081151137 0.0333391381085609 0.0334630350194553 0.0332036316472114 0.00208317906559138 0.0020936930660681 3165688 1260676 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} -28 609 304 0.0335814801367559 0.0335077013764458 0.0336308842603189 0.0334477759975586 0.00215770486109056 0.00225893902233569 3175700 1267050 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} -29 662 304 0.033475851328907 0.0333592366469344 0.0335088120851453 0.0332951857785916 0.00168692516494086 0.00152988806122706 3165711 1261436 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} -30 715 304 0.0335121007586103 0.0333662975808103 0.0334782940413519 0.0333409628442817 0.0018179589780723 0.00157946834707209 3169139 1261703 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} -31 240 355 0.0333471277852143 0.0332730509409356 0.0332646677347982 0.0332036316472114 0.00250917582278803 0.00261355778870794 3153538 1258177 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} -32 292 355 0.0332849602247634 0.0336564570058546 0.0332799267566949 0.0336003662165255 0.00210103067576644 0.00188210033506171 3147659 1272675 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} -33 345 355 0.0334467396953092 0.0334604433658229 0.0334477759975586 0.0335088120851453 0.00204526959625568 0.00210958658524874 3162958 1265263 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} -34 398 356 0.0334045368149282 0.0335334592400981 0.0334019989318685 0.0334782940413519 0.00179235762646885 0.00173088517976673 3158967 1268024 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} -35 451 356 0.033632607905897 0.0335342526034549 0.0336461432822156 0.0336003662165255 0.00162099762891789 0.00142200344705638 3180535 1268054 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} -36 503 356 0.0335198307274297 0.0334081607206067 0.0334782940413519 0.0332951857785916 0.00181801176968193 0.00182656821464898 3169870 1263286 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} -37 556 356 0.0334512867357912 0.0335385896564723 0.0333867399099718 0.0336003662165255 0.00202410754653888 0.00202700926407607 3163388 1268218 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} -38 609 356 0.0333535465144529 0.033523489307247 0.0332951857785916 0.0334782940413519 0.00198439831427057 0.00181300310421005 3154145 1267647 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} -39 662 356 0.0334913006920331 0.0334396308004283 0.0334477759975586 0.0334172579537652 0.00177939123589957 0.00162832624579259 3167172 1264476 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} -40 715 356 0.0334728481672863 0.0334987363705134 0.0334782940413519 0.0334477759975586 0.00152244003673133 0.00157743592786538 3165427 1266711 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} -41 239 407 0.0332165219782524 0.0333680429801954 0.0331425955596246 0.0332951857785916 0.00254381726377321 0.00269520689019631 3141187 1261769 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} -42 292 407 0.0337661957254541 0.0334194000348286 0.0334325169756619 0.0334325169756619 0.00306449168316468 0.00211360511858283 3193168 1263711 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} -43 345 408 0.0334323160599196 0.0334252180327789 0.0334325169756619 0.0334935530632486 0.00198189230612422 0.00194177656225606 3161594 1263931 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} -44 398 408 0.0335639264455927 0.0334675571905893 0.0336003662165255 0.0334782940413519 0.00197952397706572 0.00194833644150073 3174040 1265532 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} -45 450 408 0.0334946739616 0.0336907567483157 0.0335088120851453 0.0336919203479057 0.00199095354888656 0.00197892515543974 3167491 1273972 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} -46 503 408 0.03357814916524 0.0334639077191478 0.033524071107042 0.0334019989318685 0.00195555803272584 0.00180425320745117 3175385 1265394 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} -47 556 408 0.0336225198207345 0.0337752235003747 0.0336156252384222 0.0337987335011826 0.00203299636750756 0.00191419232765663 3179581 1277166 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} -48 609 408 0.0335138244041883 0.0335816957321944 0.0335088120851453 0.0336308842603189 0.00213152572967622 0.00199758402461964 3169302 1269848 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} -49 662 408 0.0335634294434935 0.033551521479189 0.0335088120851453 0.0334325169756619 0.00170483747323868 0.00154239340132865 3173993 1268707 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} -50 714 409 0.0332811639746865 0.0335485331438782 0.0333104448004883 0.0334935530632486 0.00162209186526855 0.00147967318062036 3147300 1268594 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} -51 239 459 0.0333070292328704 0.0333004748676372 0.033325703822385 0.0333867399099718 0.0023555252389219 0.00231111860061919 3149746 1259214 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} -52 292 460 0.0336242117427743 0.033489427573793 0.0336003662165255 0.0335088120851453 0.00190997772129537 0.00183159601854838 3179741 1266359 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} -53 345 460 0.0334575891453896 0.0336390823483397 0.0334630350194553 0.0335851071946288 0.00168764331464027 0.00161165204002662 3163984 1272018 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} -54 398 460 0.0336433516108499 0.0336343486136438 0.0335545891508354 0.0336156252384222 0.00190333825521022 0.0017306954750615 3181551 1271839 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} -55 450 460 0.0334487488527315 0.0335126731201487 0.033524071107042 0.0334172579537652 0.00235617150988683 0.00235910001358522 3163148 1267238 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} -56 503 460 0.0334709870530424 0.0338836233803652 0.0334477759975586 0.0338597695887694 0.00232744344817503 0.00235594666841464 3165251 1281265 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} -57 556 460 0.0335933024420092 0.0337911701038473 0.0335698481727321 0.0337834744792859 0.00221992239943608 0.00224101047552353 3176818 1277769 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} -58 609 460 0.0335429360377861 0.0334997412974321 0.0335545891508354 0.0335393301289387 0.00216694226848803 0.00217104980892209 3172055 1266749 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} -59 661 461 0.0335415296275905 0.0332909809528003 0.0335545891508354 0.0331578545815213 0.00197178613260669 0.00191670205521442 3171922 1258855 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} -60 714 461 0.0334654565828748 0.0334027129588896 0.0334630350194553 0.0334325169756619 0.00185724775251954 0.00173076174743572 3164728 1263080 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} -61 239 512 0.0333259681852037 0.0332850042821787 0.0333409628442817 0.0332951857785916 0.00212234169963387 0.00199254924588447 3151537 1258629 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} -62 292 512 0.0332194193947456 0.0335079129400076 0.0331883726253147 0.033524071107042 0.00175878497058136 0.00157201928601765 3141461 1267058 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} -63 345 512 0.0335282163160396 0.033551415697408 0.0334782940413519 0.0334325169756619 0.00160852881719615 0.00151087048043624 3170663 1268703 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} -64 397 512 0.0336009583892395 0.0334540435680777 0.0335851071946288 0.0334935530632486 0.00158831947150412 0.0014677015125296 3177542 1265021 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} -65 450 512 0.0336257027490719 0.033364287726973 0.033676661326009 0.0334172579537652 0.00217670489028106 0.00213979116483327 3179882 1261627 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} -66 503 512 0.0336817899646922 0.0333810012483572 0.0337224383916991 0.0334477759975586 0.00254695974547183 0.00267089201442201 3185186 1262259 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} -67 556 513 0.0340262547174884 0.0336712400097372 0.0338445105668727 0.0337224383916991 0.0027276154377322 0.00218688012068679 3217761 1273234 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} -68 609 513 0.0335298447910029 0.0337283886168755 0.033524071107042 0.0337529564354925 0.00226006206311343 0.00227883243670528 3170817 1275395 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} -69 661 513 0.0334692845564899 0.0335590848765242 0.0334477759975586 0.0335851071946288 0.00201132672380641 0.00215810994448537 3165090 1268993 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} -70 714 513 0.0336063936887924 0.0334883697559839 0.0335698481727321 0.0334325169756619 0.00214549343772812 0.00196581311603044 3178056 1266319 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} -71 239 564 0.0333966588029303 0.0331869974621628 0.0333409628442817 0.0330968184939345 0.00214487542404002 0.00222247036874955 3158222 1254923 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} -72 292 564 0.0334303703495738 0.0333153636533007 0.0334325169756619 0.0332494087129015 0.00165062098089969 0.00154724358057395 3161410 1259777 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} -73 344 564 0.033462664911509 0.0334471677523183 0.0334935530632486 0.0334630350194553 0.00164591987370408 0.00166685212221625 3164464 1264761 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} -74 397 564 0.0335212371376253 0.0335747670255446 0.0335088120851453 0.0336003662165255 0.00176052539521159 0.00171925780491268 3170003 1269586 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} -75 450 564 0.0334836764683411 0.0336726680637795 0.0334935530632486 0.0337071793698024 0.0021343548527941 0.00221895915357156 3166451 1273288 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} -76 503 565 0.0335457594326901 0.0335112715115516 0.0334477759975586 0.0334630350194553 0.002606077435481 0.00282896522440711 3172322 1267185 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} -77 556 565 0.0336551210435394 0.0335091558759333 0.033524071107042 0.0334782940413519 0.00233808105177863 0.00218377815375666 3182664 1267105 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} -78 608 565 0.0334379205516766 0.0337596735785805 0.0334019989318685 0.0337987335011826 0.00200982706232688 0.00215361374822012 3162124 1276578 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} -79 661 565 0.0336204049181847 0.0335489033801114 0.0335851071946288 0.0335088120851453 0.00190129901719017 0.00186282725872409 3179381 1268608 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} -80 714 565 0.0336101793643565 0.0334818377310125 0.0336156252384222 0.0333562218661784 0.00209538314051639 0.00190751883211434 3178414 1266072 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} -81 239 619 0.0332326481101945 0.0356302060224932 0.0332494087129015 0.0353398947127489 0.00195075067930092 0.00317335333460537 3142712 2010457 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} -82 292 616 0.0332944772862374 0.033416543926744 0.0333714808880751 0.0334019989318685 0.00164291412745612 0.00161871943819512 3148559 1263603 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} -83 344 616 0.0332809947824825 0.0333529690764153 0.0332951857785916 0.0334019989318685 0.00182190633325676 0.00195372255147719 3147284 1261199 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} -84 397 616 0.0334467819933602 0.0333874010461025 0.0334782940413519 0.0332646677347982 0.00200358693768645 0.00190154987498409 3162962 1262501 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} -85 450 617 0.0336260940060437 0.0336187986918496 0.0336156252384222 0.0335851071946288 0.002140504853101 0.00201410865169748 3179919 1271251 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} -86 503 617 0.0336110676234274 0.0336230564085314 0.0335545891508354 0.0335698481727321 0.0021019582503513 0.00189569785105253 3178498 1271412 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} -87 555 617 0.0336865379209165 0.0334447876622478 0.0336614023041123 0.0334325169756619 0.0019117786979369 0.0018755104766585 3185635 1264671 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} -88 608 617 0.0334257281384771 0.0333875597187739 0.0333867399099718 0.0333714808880751 0.00180500847716478 0.00190901076722263 3160971 1262507 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} -89 661 617 0.0335927208438081 0.0336564041149642 0.0335851071946288 0.0336461432822156 0.00163427960905965 0.00144097717047298 3176763 1272673 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} -90 714 617 0.033536496159522 0.0336109179491716 0.0335545891508354 0.0336003662165255 0.00187033959324287 0.0017532550929833 3171446 1270953 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} -91 239 673 0.0332262716790069 0.035055768534993 0.0332341496910048 0.0347905699244678 0.00238594427053632 0.00323856544906579 3142109 1978044 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} -92 278 666 0.0333185131537157 0.0333415065148956 0.0333409628442817 0.0332799267566949 0.00193610280284784 0.00178117717333207 3150832 919900 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} -93 344 668 0.0334345578566224 0.0334336276843614 0.0334630350194553 0.0333867399099718 0.00202613022639684 0.00213750289728586 3161806 1264249 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} -94 397 669 0.033435879670716 0.0332887859808464 0.0334172579537652 0.0332188906691081 0.00193852893759642 0.0019066326236314 3161931 1258772 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} -95 450 669 0.0335833518255125 0.0333083556103153 0.0334935530632486 0.0331883726253147 0.0020030082592182 0.0021103034777108 3175877 1259512 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} -96 503 669 0.0334974339094275 0.0335765388703749 0.033524071107042 0.0335545891508354 0.00179032702705438 0.0016981657681331 3167752 1269653 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} -97 555 669 0.0336642045499908 0.0337823373251411 0.0336308842603189 0.0338139925230793 0.00159644871868455 0.00154008295933051 3183523 1277435 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} -98 608 669 0.0334469934836151 0.0333954669068971 0.0334325169756619 0.0332799267566949 0.00155291249914259 0.00152960525062938 3162982 1262806 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} -99 661 669 0.0335572856515864 0.0336405368478272 0.0335393301289387 0.0336308842603189 0.00156101222887416 0.00150293148004909 3173412 1272073 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} -100 714 673 0.0333654322667827 0.0352596120539893 0.0333409628442817 0.0349126420996414 0.00174676372782094 0.00266969759546073 3155269 1989546 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg new file mode 100644 index 0000000..ffa263a --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary new file mode 100644 index 0000000..fc336c3 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp new file mode 100644 index 0000000..33be21d --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph b/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph new file mode 100644 index 0000000..9e1b963 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd b/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd new file mode 100644 index 0000000..5695a27 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml new file mode 100644 index 0000000..fe37c69 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml @@ -0,0 +1,148744 @@ + + + + 3/7/2022 5:31:40 PM + 3/7/2022 5:33:45 PM + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif + + + + + + \ No newline at end of file diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl new file mode 100644 index 0000000..4b467ce --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + ID + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ +
diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml new file mode 100644 index 0000000..15e25c1 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml @@ -0,0 +1,9297 @@ + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + + + + \ No newline at end of file diff --git a/tests/conftest.py b/tests/conftest.py index 19d2ce6..8e4d43c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,9 +5,10 @@ from pathlib import Path import pandas import pytest -EXAMPLE_DIR_WO_PARAMS = "mtp_wo_parameters" -EXAMPLE_DIR_WITH_PARAMS = "mtp_with_parameters" -EXAMPLE_DIR_WITH_RECORD = "record_time" +EXAMPLE_DIR_CSV_WO_PARAMS = "csv_wo_parameters" +EXAMPLE_DIR_CSV_WITH_PARAMS = "csv_with_parameters" +EXAMPLE_DIR_XML_WO_RECORD = "xml_wo_parameters" +EXAMPLE_DIR_XML_WITH_RECORD = "xml_wo_parameters" @pytest.fixture(scope="session") @@ -18,7 +19,7 @@ def example_dir(request): @pytest.fixture def example_file(example_dir): - data_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + data_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS yield data_dir / "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv" @@ -93,16 +94,16 @@ def normalization_data_frame(): @pytest.fixture(scope="session") def parsed_data_frame_with_params(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_folder - return parse_folder(example_dir / EXAMPLE_DIR_WITH_PARAMS) + return parse_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) @pytest.fixture(scope="session") def parsed_data_frame_without_params(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_folder - return parse_folder(example_dir / EXAMPLE_DIR_WO_PARAMS) + return parse_folder(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) @pytest.fixture diff --git a/tests/test_csv_parser.py b/tests/test_csv_parser.py index 04b0190..e5f3cf6 100644 --- a/tests/test_csv_parser.py +++ b/tests/test_csv_parser.py @@ -4,18 +4,18 @@ import numpy import pytest -from .conftest import EXAMPLE_DIR_WO_PARAMS, EXAMPLE_DIR_WITH_PARAMS +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_CSV_WITH_PARAMS @pytest.mark.parametrize( "sub_dir, file_name", [ ( - EXAMPLE_DIR_WO_PARAMS, + EXAMPLE_DIR_CSV_WO_PARAMS, "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", ), ( - EXAMPLE_DIR_WITH_PARAMS, + EXAMPLE_DIR_CSV_WITH_PARAMS, "160210_SG2-010-001_Regen_cy3100_1_A1_1.csv", ), ], @@ -181,7 +181,7 @@ def test_parse_file(example_file): assert result["Well.Row"][0] == "A" assert result["Well.Column"][0] == 1 assert result["Exposure.Id"][0] == 1 - assert result["Analysis.Name"][0] == "mtp_wo_parameters" + assert result["Analysis.Name"][0] == "csv_wo_parameters" file_name = "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.tif" assert result["Analysis.Image"][0] == file_name @@ -190,7 +190,9 @@ def test_parse_file_raises_error(example_dir): from sensospot_parser.csv_parser import parse_file csv_file = ( - example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" + example_dir + / EXAMPLE_DIR_CSV_WITH_PARAMS + / "should_raise_value_error.csv" ) with pytest.raises(ValueError): @@ -211,7 +213,9 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): from sensospot_parser.csv_parser import _parse_file_silenced csv_file = ( - example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" + example_dir + / EXAMPLE_DIR_CSV_WITH_PARAMS + / "should_raise_value_error.csv" ) result = _parse_file_silenced(csv_file) @@ -232,7 +236,7 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): def testparse_multiple_files_ok(example_dir, file_list): from sensospot_parser.csv_parser import parse_multiple_files - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS files = [sub_dir / file for file in file_list] data_frame = parse_multiple_files(files) @@ -263,7 +267,7 @@ def testparse_multiple_files_empty_array(example_dir): def test_find_csv_files(example_dir): from sensospot_parser.csv_parser import find_csv_files - result = list(find_csv_files(example_dir / EXAMPLE_DIR_WITH_PARAMS)) + result = list(find_csv_files(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS)) assert len(result) == (36 * 3) + 1 # 36 wells, 3 exposure + one error file assert all(str(item).endswith(".csv") for item in result) @@ -273,7 +277,7 @@ def test_find_csv_files(example_dir): def test_parse_folder_no_datetime_records(example_dir): from sensospot_parser.csv_parser import parse_folder - data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_PARAMS) + data_frame = parse_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) assert len(data_frame) == 36 * 3 * 100 assert len(data_frame["Well.Row"].unique()) == 3 @@ -288,7 +292,7 @@ def test_parse_folder_no_datetime_records(example_dir): def test_sanity_check_ok(example_dir): from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", @@ -304,7 +308,7 @@ def test_sanity_check_ok(example_dir): def test_sanity_check_raises_value_error(example_dir): from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", diff --git a/tests/test_parameters.py b/tests/test_parameters.py index b91fd92..ea291e4 100644 --- a/tests/test_parameters.py +++ b/tests/test_parameters.py @@ -1,12 +1,12 @@ import pandas -from .conftest import EXAMPLE_DIR_WO_PARAMS, EXAMPLE_DIR_WITH_PARAMS +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_CSV_WITH_PARAMS def test_search_params_file_ok(example_dir): from sensospot_parser.parameters import _search_params_file - result = _search_params_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) + result = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) assert result.suffix == ".svexp" @@ -14,7 +14,7 @@ def test_search_params_file_ok(example_dir): def test_search_params_file_no_parameters_folder(example_dir): from sensospot_parser.parameters import _search_params_file - result = _search_params_file(example_dir / EXAMPLE_DIR_WO_PARAMS) + result = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) assert result is None @@ -36,7 +36,7 @@ def test_parse_channel_info(example_dir): _parse_measurement_params, ) - params = _search_params_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) + params = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) result = _parse_measurement_params(params) expected = pandas.DataFrame( @@ -53,7 +53,7 @@ def test_parse_channel_info(example_dir): def test_get_measurement_params_file_found(example_dir): from sensospot_parser.parameters import get_measurement_params - result = get_measurement_params(example_dir / EXAMPLE_DIR_WITH_PARAMS) + result = get_measurement_params(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) expected = pandas.DataFrame( { @@ -69,7 +69,7 @@ def test_get_measurement_params_file_found(example_dir): def test_get_measurement_params_file_not_found(example_dir): from sensospot_parser.parameters import get_measurement_params - result = get_measurement_params(example_dir / EXAMPLE_DIR_WO_PARAMS) + result = get_measurement_params(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) assert result is None @@ -77,7 +77,7 @@ def test_get_measurement_params_file_not_found(example_dir): def test_add_measurement_parameters_with_params_file(exposure_df, example_dir): from sensospot_parser.parameters import add_measurement_parameters - folder = example_dir / EXAMPLE_DIR_WITH_PARAMS + folder = example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS exposure_df = add_measurement_parameters(exposure_df, folder) expected = [(1, "green", 100), (2, "red", 150), (3, "red", 15)] @@ -93,7 +93,7 @@ def test_add_measurement_parameters_without_params_file( ): from sensospot_parser.parameters import add_measurement_parameters - folder = example_dir / EXAMPLE_DIR_WO_PARAMS + folder = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS exposure_df = add_measurement_parameters(exposure_df, folder) for exposure_id in range(1, 4): From 8644a25d780cd2f312d2e1c9e2f48abb1a21f0ca Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 16:27:27 +0100 Subject: [PATCH 04/11] moved _cleanup_data_columns() function to "columns" module by moving this function it can be easily reused in the upcoming "xml_parser" module --- src/sensospot_parser/columns.py | 18 ++++++++++++++++++ src/sensospot_parser/csv_parser.py | 18 ++---------------- tests/test_columns.py | 15 +++++++++++++++ tests/test_csv_parser.py | 17 ----------------- 4 files changed, 35 insertions(+), 33 deletions(-) create mode 100644 tests/test_columns.py diff --git a/src/sensospot_parser/columns.py b/src/sensospot_parser/columns.py index 9897d32..ad63ed8 100644 --- a/src/sensospot_parser/columns.py +++ b/src/sensospot_parser/columns.py @@ -1,5 +1,7 @@ """ Column name definitions """ +import pandas + # original, unmodified column names POS_X = "Pos.X" POS_Y = "Pos.Y" @@ -121,3 +123,19 @@ INDEX_COLUMNS_POS = ( WELL_ROW, POS_ID, ) + + +def _cleanup_data_columns(data_frame: pandas.DataFrame) -> pandas.DataFrame: + """renames some data columns for consistency and drops unused columns + + Args: + data_frame: pandas DataFrame with parsed measurement data + + Returns: + pandas DataFrame, column names cleaned up + """ + renamed = data_frame.rename(columns=CSV_RENAME_MAP) + surplus_columns = set(renamed.columns) - PARSED_DATA_COLUMN_SET + x = renamed.drop(columns=surplus_columns) + print(PARSED_DATA_COLUMN_SET - set(x.columns)) + return x diff --git a/src/sensospot_parser/csv_parser.py b/src/sensospot_parser/csv_parser.py index d59518c..24b29c2 100644 --- a/src/sensospot_parser/csv_parser.py +++ b/src/sensospot_parser/csv_parser.py @@ -1,6 +1,6 @@ """ Sensospot Data Parser -Parsing the numerical output from Sensovations Sensospot image analysis. +Parsing the csv result files from Sensovations Sensospot image analysis. """ import re @@ -84,20 +84,6 @@ def _extract_measurement_info(data_file: PathLike) -> FileInfo: return FileInfo(row, column, exposure) -def _cleanup_data_columns(data_frame: pandas.DataFrame) -> pandas.DataFrame: - """renames some data columns for consistency and drops unused columns - - Args: - data_frame: pandas DataFrame with parsed measurement data - - Returns: - pandas DataFrame, column names cleaned up - """ - renamed = data_frame.rename(columns=columns.CSV_RENAME_MAP) - surplus_columns = set(renamed.columns) - columns.PARSED_DATA_COLUMN_SET - return renamed.drop(columns=surplus_columns) - - def parse_file(data_file: PathLike) -> pandas.DataFrame: """parses one data file and adds metadata to result @@ -124,7 +110,7 @@ def parse_file(data_file: PathLike) -> pandas.DataFrame: data_frame[columns.EXPOSURE_ID] = measurement_info.exposure data_frame[columns.ANALYSIS_NAME] = data_path.parent.name data_frame[columns.ANALYSIS_IMAGE] = data_path.with_suffix(".tif").name - return _cleanup_data_columns(data_frame) + return columns._cleanup_data_columns(data_frame) def _parse_file_silenced(data_file: PathLike) -> Optional[pandas.DataFrame]: diff --git a/tests/test_columns.py b/tests/test_columns.py new file mode 100644 index 0000000..499c221 --- /dev/null +++ b/tests/test_columns.py @@ -0,0 +1,15 @@ +def test_cleanup_data_columns(): + from pandas import DataFrame + + from sensospot_parser.columns import _cleanup_data_columns + + columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] + data = {col: [i] for i, col in enumerate(columns)} + data_frame = DataFrame(data=data) + + result = _cleanup_data_columns(data_frame) + + assert set(result.columns) == {"Pos.Id", "Spot.Found", "Spot.Diameter"} + assert result["Pos.Id"][0] == 2 + assert result["Spot.Found"][0] == 3 + assert result["Spot.Diameter"][0] == 4 diff --git a/tests/test_csv_parser.py b/tests/test_csv_parser.py index e5f3cf6..c8678d3 100644 --- a/tests/test_csv_parser.py +++ b/tests/test_csv_parser.py @@ -127,23 +127,6 @@ def test_extract_measurement_info_raises_error(filename): _extract_measurement_info(filename) -def test_cleanup_data_columns(): - from pandas import DataFrame - - from sensospot_parser.csv_parser import _cleanup_data_columns - - columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] - data = {col: [i] for i, col in enumerate(columns)} - data_frame = DataFrame(data=data) - - result = _cleanup_data_columns(data_frame) - - assert set(result.columns) == {"Pos.Id", "Spot.Found", "Spot.Diameter"} - assert result["Pos.Id"][0] == 2 - assert result["Spot.Found"][0] == 3 - assert result["Spot.Diameter"][0] == 4 - - def test_parse_file(example_file): from sensospot_parser.csv_parser import parse_file From 988c7562d9ad28594a9ecf5e0164f9466fba5aeb Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 17:00:58 +0100 Subject: [PATCH 05/11] renamed some functions in "csv_parser" module to have more explicit names --- .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg | 25 ---------- .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svary | 27 ----------- .../S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp | 19 -------- src/sensospot_parser/__init__.py | 4 +- src/sensospot_parser/csv_parser.py | 20 +++++--- tests/conftest.py | 8 ++-- tests/test_csv_parser.py | 46 +++++++++++-------- tests/test_sensospot_data.py | 4 +- 8 files changed, 47 insertions(+), 106 deletions(-) delete mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg delete mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary delete mode 100644 example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg deleted file mode 100644 index ffa263a..0000000 --- a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary deleted file mode 100644 index fc336c3..0000000 --- a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp b/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp deleted file mode 100644 index 33be21d..0000000 --- a/example_data/xml_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/sensospot_parser/__init__.py b/src/sensospot_parser/__init__.py index 8450620..74c69ab 100644 --- a/src/sensospot_parser/__init__.py +++ b/src/sensospot_parser/__init__.py @@ -12,7 +12,7 @@ import click import pandas from . import columns # noqa: F401 -from .csv_parser import parse_file, parse_folder # noqa: F401 +from .csv_parser import parse_csv_file, parse_csv_folder # noqa: F401 DEFAULT_OUTPUT_FILENAME = "collected_data.csv" @@ -51,7 +51,7 @@ def main(sources, output, quiet=False): """ paths = (pathlib.Path(source) for source in sources) - collection = (parse_folder(source, quiet) for source in paths) + collection = (parse_csv_folder(source, quiet) for source in paths) result = pandas.concat(collection, ignore_index=True).to_csv( output, sep="\t", index=False ) diff --git a/src/sensospot_parser/csv_parser.py b/src/sensospot_parser/csv_parser.py index 24b29c2..13ef0ce 100644 --- a/src/sensospot_parser/csv_parser.py +++ b/src/sensospot_parser/csv_parser.py @@ -84,7 +84,7 @@ def _extract_measurement_info(data_file: PathLike) -> FileInfo: return FileInfo(row, column, exposure) -def parse_file(data_file: PathLike) -> pandas.DataFrame: +def parse_csv_file(data_file: PathLike) -> pandas.DataFrame: """parses one data file and adds metadata to result will race a ValueError, if metadata could not be extracted @@ -113,7 +113,9 @@ def parse_file(data_file: PathLike) -> pandas.DataFrame: return columns._cleanup_data_columns(data_frame) -def _parse_file_silenced(data_file: PathLike) -> Optional[pandas.DataFrame]: +def _parse_csv_file_silenced( + data_file: PathLike, +) -> Optional[pandas.DataFrame]: """parses one data file and adds metadata Safety checks are supressed @@ -125,12 +127,14 @@ def _parse_file_silenced(data_file: PathLike) -> Optional[pandas.DataFrame]: pandas data frame with the parsed data or None on error """ try: - return parse_file(data_file) + return parse_csv_file(data_file) except ValueError: return None -def parse_multiple_files(file_list: Sequence[PathLike]) -> pandas.DataFrame: +def parse_multiple_csv_files( + file_list: Sequence[PathLike], +) -> pandas.DataFrame: """parses a list of file paths to one combined data frame Args: @@ -140,7 +144,7 @@ def parse_multiple_files(file_list: Sequence[PathLike]) -> pandas.DataFrame: """ if not file_list: raise ValueError("Empty file list provided") - collection = (_parse_file_silenced(path) for path in file_list) + collection = (_parse_csv_file_silenced(path) for path in file_list) filtered = (frame for frame in collection if frame is not None) data_frame = pandas.concat(filtered, ignore_index=True).reset_index() data_frame[columns.WELL_ROW] = data_frame[columns.WELL_ROW].astype( @@ -191,7 +195,9 @@ def _sanity_check(data_frame: pandas.DataFrame) -> pandas.DataFrame: return data_frame -def parse_folder(folder: PathLike, quiet: bool = False) -> pandas.DataFrame: +def parse_csv_folder( + folder: PathLike, quiet: bool = False +) -> pandas.DataFrame: """parses all csv files in a folder to one large dataframe Will raise an ValueError, if no sensospot data could be found in @@ -207,7 +213,7 @@ def parse_folder(folder: PathLike, quiet: bool = False) -> pandas.DataFrame: folder_path = pathlib.Path(folder) file_list = find_csv_files(folder_path) try: - data_frame = parse_multiple_files(file_list) + data_frame = parse_multiple_csv_files(file_list) except ValueError: raise ValueError(f"No sensospot data found in folder '{folder}'") diff --git a/tests/conftest.py b/tests/conftest.py index 8e4d43c..d176031 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -94,16 +94,16 @@ def normalization_data_frame(): @pytest.fixture(scope="session") def parsed_data_frame_with_params(example_dir): - from sensospot_parser.csv_parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - return parse_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) + return parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) @pytest.fixture(scope="session") def parsed_data_frame_without_params(example_dir): - from sensospot_parser.csv_parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - return parse_folder(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) + return parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) @pytest.fixture diff --git a/tests/test_csv_parser.py b/tests/test_csv_parser.py index c8678d3..371bf7f 100644 --- a/tests/test_csv_parser.py +++ b/tests/test_csv_parser.py @@ -128,9 +128,9 @@ def test_extract_measurement_info_raises_error(filename): def test_parse_file(example_file): - from sensospot_parser.csv_parser import parse_file + from sensospot_parser.csv_parser import parse_csv_file - result = parse_file(example_file) + result = parse_csv_file(example_file) columns = { "Pos.Id", @@ -170,7 +170,7 @@ def test_parse_file(example_file): def test_parse_file_raises_error(example_dir): - from sensospot_parser.csv_parser import parse_file + from sensospot_parser.csv_parser import parse_csv_file csv_file = ( example_dir @@ -179,13 +179,13 @@ def test_parse_file_raises_error(example_dir): ) with pytest.raises(ValueError): - parse_file(csv_file) + parse_csv_file(csv_file) def test_parse_file_silenced_returns_data_frame(example_file): - from sensospot_parser.csv_parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_csv_file_silenced - result = _parse_file_silenced(example_file) + result = _parse_csv_file_silenced(example_file) assert result["Well.Row"][0] == "A" assert result["Well.Column"][0] == 1 @@ -193,7 +193,7 @@ def test_parse_file_silenced_returns_data_frame(example_file): def test_parse_file_silenced_returns_none_on_error(example_dir): - from sensospot_parser.csv_parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_csv_file_silenced csv_file = ( example_dir @@ -201,7 +201,7 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): / "should_raise_value_error.csv" ) - result = _parse_file_silenced(csv_file) + result = _parse_csv_file_silenced(csv_file) assert result is None @@ -217,12 +217,12 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): ], ) def testparse_multiple_files_ok(example_dir, file_list): - from sensospot_parser.csv_parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) print(data_frame["Exposure.Id"].unique()) assert len(data_frame) == 100 * len(files) @@ -230,18 +230,18 @@ def testparse_multiple_files_ok(example_dir, file_list): def testparse_multiple_files_empty_file_list(): - from sensospot_parser.csv_parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files with pytest.raises(ValueError): - parse_multiple_files([]) + parse_multiple_csv_files([]) def testparse_multiple_files_empty_array(example_dir): - from sensospot_parser.csv_parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files files = [example_dir / "no_array_A1_1.csv"] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) print(data_frame["Exposure.Id"].unique()) assert len(data_frame) == 1 @@ -258,9 +258,9 @@ def test_find_csv_files(example_dir): def test_parse_folder_no_datetime_records(example_dir): - from sensospot_parser.csv_parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - data_frame = parse_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) + data_frame = parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) assert len(data_frame) == 36 * 3 * 100 assert len(data_frame["Well.Row"].unique()) == 3 @@ -273,7 +273,10 @@ def test_parse_folder_no_datetime_records(example_dir): def test_sanity_check_ok(example_dir): - from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import ( + _sanity_check, + parse_multiple_csv_files, + ) sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ @@ -281,7 +284,7 @@ def test_sanity_check_ok(example_dir): "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", ] files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) result = _sanity_check(data_frame) @@ -289,7 +292,10 @@ def test_sanity_check_ok(example_dir): def test_sanity_check_raises_value_error(example_dir): - from sensospot_parser.csv_parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import ( + _sanity_check, + parse_multiple_csv_files, + ) sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ @@ -297,7 +303,7 @@ def test_sanity_check_raises_value_error(example_dir): "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", ] files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) data_frame = data_frame.drop(data_frame.index[1]) with pytest.raises(ValueError): diff --git a/tests/test_sensospot_data.py b/tests/test_sensospot_data.py index 549de0d..a8a2e16 100644 --- a/tests/test_sensospot_data.py +++ b/tests/test_sensospot_data.py @@ -4,5 +4,5 @@ def test_import_api(): from sensospot_parser import main # noqa: F401 from sensospot_parser import columns # noqa: F401 - from sensospot_parser import parse_file # noqa: F401 - from sensospot_parser import parse_folder # noqa: F401 + from sensospot_parser import parse_csv_file # noqa: F401 + from sensospot_parser import parse_csv_folder # noqa: F401 From 8c591e9f3c394fe226b7142ce479f4664baafbcf Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 17:41:47 +0100 Subject: [PATCH 06/11] removed debug print statement --- src/sensospot_parser/columns.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/sensospot_parser/columns.py b/src/sensospot_parser/columns.py index ad63ed8..5d4391e 100644 --- a/src/sensospot_parser/columns.py +++ b/src/sensospot_parser/columns.py @@ -136,6 +136,4 @@ def _cleanup_data_columns(data_frame: pandas.DataFrame) -> pandas.DataFrame: """ renamed = data_frame.rename(columns=CSV_RENAME_MAP) surplus_columns = set(renamed.columns) - PARSED_DATA_COLUMN_SET - x = renamed.drop(columns=surplus_columns) - print(PARSED_DATA_COLUMN_SET - set(x.columns)) - return x + return renamed.drop(columns=surplus_columns) From dd476bb19adebca2875788f63cb97764e9305991 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 17:42:40 +0100 Subject: [PATCH 07/11] added more calls to "clenup_data_columns()" to remove double index columns after merges --- src/sensospot_parser/csv_parser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sensospot_parser/csv_parser.py b/src/sensospot_parser/csv_parser.py index 13ef0ce..267bfea 100644 --- a/src/sensospot_parser/csv_parser.py +++ b/src/sensospot_parser/csv_parser.py @@ -223,6 +223,8 @@ def parse_csv_folder( # the xml file would hold the Analysis.Datetime value data_frame[columns.ANALYSIS_DATETIME] = None + data_frame = columns._cleanup_data_columns(data_frame) + if quiet: return data_frame return _sanity_check(data_frame) From 819358977e6eb31182f2ecfaa21e15937ddef3a1 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Tue, 3 Jan 2023 17:43:31 +0100 Subject: [PATCH 08/11] fixed test data for upcoming module xml_parser --- example_data/defect.xml | 29 ++++ .../Calibration Check 4e.svalg | 29 ++++ .../Calibration Check 4e.svary | 131 ++++++++++++++++++ .../Calibration Check 4e.svexp | 21 +++ .../Parameters/Rack/Calibration Slide.svmpd | 21 +++ .../Rack/Microplate (96 wells).svmpd | 21 --- 6 files changed, 231 insertions(+), 21 deletions(-) create mode 100644 example_data/defect.xml create mode 100644 example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg create mode 100644 example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary create mode 100644 example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp create mode 100644 example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd delete mode 100644 example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd diff --git a/example_data/defect.xml b/example_data/defect.xml new file mode 100644 index 0000000..eac8561 --- /dev/null +++ b/example_data/defect.xml @@ -0,0 +1,29 @@ + + + + 3/7/2022 5:31:40 PM + 3/7/2022 5:33:45 PM + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg new file mode 100644 index 0000000..1530523 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary new file mode 100644 index 0000000..da00932 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp new file mode 100644 index 0000000..b62b882 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd b/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd new file mode 100644 index 0000000..a39226b --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd b/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd deleted file mode 100644 index 5695a27..0000000 --- a/example_data/xml_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 9de0a0955706989357fa54788809f3390d9b9d51 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 4 Jan 2023 12:15:48 +0100 Subject: [PATCH 09/11] added more example xml data for testing --- example_data/malformed_data.xml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 example_data/malformed_data.xml diff --git a/example_data/malformed_data.xml b/example_data/malformed_data.xml new file mode 100644 index 0000000..8d0639a --- /dev/null +++ b/example_data/malformed_data.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file From 0a1da70021bc9a6889bc3b070d26df45e0b7b735 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 4 Jan 2023 13:23:02 +0100 Subject: [PATCH 10/11] added more example data for comparing xml to csv parsing --- ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv | 101 ++++++++++++++++++ ...0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv | 101 ++++++++++++++++++ 64 files changed, 6464 insertions(+) create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv create mode 100644 example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv new file mode 100644 index 0000000..40b4226 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 228 232 0.235384931733497 0.950414913363403 0.234714274814984 1 0.00700611064105654 0.145736855002289 20038311 53627765 1299 861 81 True 227 233 33 {X=0,Y=0,Width=0,Height=0} +2 280 233 0.231177412089856 0.230250627451245 0.230884260318914 0.230121309224079 0.00500863872911266 0.00402261404146659 19680125 8706627 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} +3 333 233 0.229714296252794 0.230259275111834 0.229770351720455 0.230472266727703 0.0038286865702095 0.00370900107593368 19555570 8706954 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} +4 386 233 0.229662810268981 0.230139054117827 0.229587243457694 0.230289158464942 0.00378767522678395 0.00358402252212931 19551187 8702408 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} +5 439 234 0.232369307329094 0.230064213507831 0.230380712596323 0.230121309224079 0.0212765822282069 0.00460353632811885 19781591 8699578 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.230382286660167 0.230396474081679 0.230350194552529 0.230273899443046 0.00593730637130429 0.00630438389173862 19612436 8712142 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} +7 546 234 0.231750359582551 0.230316423718973 0.230960555428397 0.230090791180285 0.00719209350114273 0.00580210518679085 19728900 8709115 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} +8 599 234 0.230173617480049 0.230567708339531 0.230334935530632 0.230441748683909 0.00432629013521393 0.004444015833161 19594672 8718617 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} +9 652 234 0.231355833401318 0.230911393345718 0.231540398260472 0.230884260318914 0.00419927738804394 0.00400786867205555 19695314 8731613 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} +10 702 232 0.235054401819618 0.921638884817987 0.234729533836881 1 0.00486578771734954 0.194459810997062 20010173 58768815 1299 973 80 True 705 235 34 {X=0,Y=0,Width=0,Height=0} +11 227 285 0.230273899443046 0.23020609332148 0.230304417486839 0.229755092698558 0.00480406129937769 0.00497662437236967 19603209 8704943 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} +12 280 285 0.230155644960033 0.230304602604956 0.230106050202182 0.230289158464942 0.00401053636154393 0.003912658528098 19593142 8708668 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} +13 333 286 0.23008801894844 0.230149314950575 0.230029755092699 0.230243381399252 0.00356467395903897 0.00356565194811195 19587385 8702796 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} +14 386 286 0.230195536906423 0.230159205547091 0.230151827267872 0.230167086289769 0.00374342338211412 0.00342279687953275 19596538 8703170 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} +15 439 286 0.23070457035898 0.230356382786713 0.230685893034257 0.230319676508736 0.00398423665641129 0.00400619330353755 19639872 8710626 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} +16 492 286 0.230723036242291 0.231407139661966 0.230792706187533 0.231586175326162 0.0048932229149775 0.00518652330267933 19641444 8750359 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.230489323001601 0.231225221444241 0.230380712596323 0.231311512932021 0.00481728620728938 0.0047051380334733 19621548 8743480 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.230804030049819 0.230552978226539 0.230685893034257 0.230685893034257 0.00409917296373056 0.00454419488559169 19648339 8718060 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.230689851687358 0.230541844694098 0.23071641107805 0.230548561837186 0.00358169108212675 0.00314026712190925 19638619 8717639 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.230855563020612 0.230806457819052 0.23080796520943 0.230838483253223 0.00350349728109732 0.00375624307682139 19652726 8727645 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} +21 226 338 0.230110936848147 0.230433841495786 0.230106050202182 0.230609597924773 0.00488500439014703 0.00491136290899423 19589336 8713555 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} +22 279 338 0.230688618279122 0.230426701225574 0.23071641107805 0.230106050202182 0.00407168488992683 0.0037698511617902 19638514 8713285 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} +23 333 338 0.230712475918438 0.231260102986497 0.230685893034257 0.230960555428397 0.00365837370944228 0.00359636664341859 19640545 8744799 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} +24 386 338 0.231021262607121 0.230738281461254 0.231021591515984 0.23089951934081 0.00415662762099473 0.00386695441809965 19666832 8725067 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} +25 439 339 0.231482498553829 0.231227231298079 0.231372549019608 0.231235217822538 0.00420100895163217 0.00393307131820704 19706097 8743556 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} +26 492 339 0.231588924064517 0.23310676198134 0.231479362172885 0.232043945983062 0.00462518184881 0.00868222153120191 19715157 8814628 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} +27 545 339 0.231392823901666 0.231529238282585 0.231403067063401 0.231647211413748 0.00456168323040558 0.00434895403930853 19698463 8754976 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} +28 599 339 0.231395478666061 0.231155669923291 0.231555657282368 0.231128404669261 0.00422984588558967 0.00436950333093123 19698689 8740850 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.230924927550481 0.230742856523278 0.230914778362707 0.230640115968566 0.00369507661031607 0.00385483859271634 19658631 8725240 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.23037985508393 0.235619766859599 0.230457007705806 0.231311512932021 0.00355208348925317 0.0195091421001302 19612229 8909654 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} +31 226 390 0.230522554543515 0.230003150974799 0.230197604333562 0.229938200961318 0.00622548717410643 0.00556019588694674 19624377 8697269 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} +32 279 391 0.230775602926655 0.230649874337856 0.230746929121843 0.230197604333562 0.00468236990033911 0.00442356970601172 19645919 8721724 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} +33 332 391 0.231208681925336 0.231115287728427 0.231143663691157 0.230914778362707 0.00445057117472149 0.00454153374302205 19682787 8739323 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} +34 386 391 0.231615342494267 0.232071713700552 0.231616693369955 0.231998168917372 0.00404378025002224 0.00426611601156417 19717406 8775489 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} +35 439 391 0.233024893173632 0.232251542728104 0.232913710231174 0.231952391851682 0.0044502063333536 0.00401386773260848 19837401 8782289 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} +36 492 391 0.232229239140413 0.231959585012784 0.232227054245823 0.231876096742199 0.004490129053341 0.00446361900679392 19769667 8771249 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} +37 545 392 0.232046365812555 0.232136134805128 0.232028686961166 0.231952391851682 0.00411259168203925 0.00396601226270941 19754099 8777925 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} +38 598 392 0.231992260304583 0.232211583660364 0.231891355764096 0.232227054245823 0.00439053687322748 0.00379333194026949 19749493 8780778 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.23160803601881 0.23126856552897 0.231586175326162 0.231189440756847 0.00396859211741873 0.0038512911905237 19716784 8745119 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.23054197191318 0.230462402576633 0.23057907988098 0.230365453574426 0.00359119381069734 0.0034290066732591 19626030 8714635 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} +41 226 443 0.230443874844774 0.231000302932575 0.230380712596323 0.230930037384604 0.00582892603494328 0.0059987679533442 19617679 8734975 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} +42 279 443 0.230981452887946 0.231094660281149 0.230930037384604 0.231021591515984 0.00534110893178235 0.00532723470035292 19663443 8738543 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} +43 332 443 0.231546107178595 0.231785997110306 0.231525139238575 0.231708247501335 0.00426620149483667 0.00423411961782506 19711512 8764685 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} +44 385 444 0.232477318650372 0.232353304801342 0.23247119859617 0.232272831311513 0.00486871881946419 0.00511095023965302 19790786 8786137 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.233150442385358 0.232763817447621 0.233264667734798 0.232837415121691 0.00524391201957902 0.00517601929866542 19848089 8801660 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.233214532626673 0.233279556520462 0.232944228274968 0.233127336537728 0.00565402816768416 0.00529711262095752 19853545 8821162 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.232791297400392 0.232538052681707 0.232761120012207 0.232410162508583 0.00469100145691428 0.00472373906611299 19817515 8793123 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} +48 598 445 0.232206074559058 0.232311230097984 0.232074464026856 0.232410162508583 0.00467973879513931 0.00485163500884711 19767695 8784546 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} +49 651 445 0.23181319292214 0.231114229910618 0.231860837720302 0.231021591515984 0.00433075163343422 0.00437090026645182 19734249 8739283 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.230796089250125 0.230870640914621 0.23057907988098 0.230823224231327 0.0046161021267547 0.00485267088664183 19647663 8730072 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} +51 226 496 0.230395360787474 0.230120621642503 0.230136568245975 0.230273899443046 0.0054490931550632 0.00549033373371616 19613549 8701711 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} +52 279 496 0.231127100780554 0.231594902323087 0.231128404669261 0.231738765545129 0.00446990478605327 0.00433373500757556 19675842 8757459 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} +53 332 496 0.231983614700182 0.232432667582472 0.232074464026856 0.232394903486687 0.00388161346440716 0.0038120613126097 19748757 8789138 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} +54 385 496 0.233197358885323 0.232685168693512 0.233173113603418 0.232761120012207 0.00417438465634226 0.003930257685436 19852083 8798686 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} +55 438 496 0.233616776419443 0.234695154758084 0.233508812085145 0.234470130464637 0.00554632133722927 0.00593106226898132 19887788 8874691 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.233178834268286 0.232278411300456 0.233173113603418 0.231937132829786 0.00569646682671667 0.00595258071260882 19850506 8783305 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.232711701455533 0.233244833650877 0.232486457618067 0.233371480888075 0.00512318299416315 0.00454374608093066 19810739 8819849 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.232034466359759 0.232540300544551 0.231982909895476 0.232227054245823 0.005058751187973 0.00500216743257131 19753086 8793208 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.231293681372945 0.231985131312875 0.231250476844434 0.231937132829786 0.00452531880040403 0.004591901094222 19690023 8772215 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} +60 704 498 0.230883661234913 0.230728708210081 0.23076218814374 0.23062485694667 0.00479091175116439 0.00406251826797938 19655118 8724705 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} +61 225 548 0.230801375285424 0.230868895515236 0.230685893034257 0.230792706187533 0.00531511646843404 0.00520602254343511 19648113 8730006 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} +62 279 548 0.231458805368944 0.231513926369798 0.231631952391852 0.231418326085298 0.00418933358913604 0.00408465049004631 19704080 8754397 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} +63 332 549 0.232749666935726 0.232404080056181 0.232776379034104 0.232272831311513 0.003888340291836 0.00367910429393895 19813971 8788057 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} +64 385 549 0.233311983624098 0.232796953590491 0.233340962844282 0.232852674143587 0.00370926692352279 0.00338727216917197 19861841 8802913 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} +65 438 549 0.233638343443463 0.23356149141204 0.233508812085145 0.233493553063249 0.00473488993371286 0.00451145498983221 19889624 8831823 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} +66 491 549 0.233301822689578 0.233169093895743 0.233173113603418 0.233264667734798 0.00590312124987291 0.00633918905054195 19860976 8816985 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.233073736139795 0.232646743461595 0.233035782406348 0.23265430685893 0.00479759164608554 0.00468880258295501 19841559 8797233 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} +68 598 550 0.231939305977631 0.232142243702976 0.231937132829786 0.232227054245823 0.00410298849754429 0.00429371111049635 19744985 8778156 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} +69 651 550 0.231205933186981 0.231223052917733 0.230975814450294 0.231174181734951 0.00403228164808917 0.00383427933518497 19682553 8743398 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.230612675571992 0.230452591316453 0.230487525749599 0.230350194552529 0.00387608307255269 0.00378172089950103 19632049 8714264 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} +71 225 601 0.231825444777288 0.231816118472421 0.231708247501335 0.231723506523232 0.00497581305575875 0.00499008365405544 19735292 8765824 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} +72 278 601 0.231989664273913 0.232089590821526 0.231815060654612 0.232013427939269 0.00420004167562074 0.00391671221010806 19749272 8776165 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} +73 332 601 0.232523788774023 0.232736155511912 0.23237964446479 0.232593270771344 0.00400235181527279 0.00333904507020638 19794742 8800614 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} +74 385 601 0.233763493265855 0.233184088463188 0.233539330128939 0.233218890669108 0.00482433273950998 0.00396062868778427 19900278 8817552 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} +75 438 602 0.233194610146968 0.233091238504991 0.233295185778592 0.233051041428244 0.00422508508789747 0.00411940676552212 19851849 8814041 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} +76 491 602 0.233326044477993 0.232980564316711 0.233188372625315 0.232959487296864 0.00534161165519334 0.00546503498616257 19863038 8809856 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} +77 544 602 0.232475650612566 0.232450174467214 0.23237964446479 0.232532234683757 0.0042512606098518 0.00424797160677589 19790644 8789800 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.23180459430472 0.231597123740486 0.231754024567025 0.231677729457542 0.00401844976341071 0.00414957401455178 19733517 8757543 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.231104617510415 0.231367709503131 0.23089951934081 0.231357289997711 0.00361636789893566 0.00323007543183913 19673928 8748868 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} +80 704 603 0.230460895878437 0.230796196986303 0.230426489662013 0.230746929121843 0.00358977772474813 0.00371875106877269 19619128 8727257 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.237967747314356 0.980028262805177 0.237613488975357 1 0.00631762091152547 0.0777810485452699 20258186 48105388 1299 749 89 True 225 653 31 {X=0,Y=0,Width=0,Height=0} +82 278 654 0.233511161434167 0.232729306141598 0.233295185778592 0.232669565880827 0.00467041195459207 0.00394289501411022 19878797 8800355 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} +83 331 654 0.232253684116985 0.231942739264174 0.232227054245823 0.231708247501335 0.00342548129794164 0.00350753332007652 19771748 8770612 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} +84 385 654 0.232376543324081 0.232579519139825 0.232318608377203 0.232593270771344 0.00401104888553049 0.00406917466283049 19782207 8794691 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} +85 438 654 0.232715014037654 0.232993363912202 0.23260852979324 0.232852674143587 0.00480402367858593 0.00480490539158847 19811021 8810340 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} +86 491 654 0.232462588232005 0.232785978730722 0.232455939574273 0.232684824902724 0.00465428047976449 0.004525459000888 19789532 8802498 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} +87 544 655 0.231725397749194 0.231878714841276 0.231647211413748 0.231967650873579 0.00388435913652843 0.00362801025348011 19726775 8768191 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} +88 597 655 0.231219160021973 0.230909277710099 0.231235217822538 0.231143663691157 0.00379610228378077 0.00334762757971261 19683679 8731533 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} +89 650 655 0.231138929752878 0.231603259083779 0.231036850537881 0.231708247501335 0.00350293004626227 0.00363562988665873 19676849 8757775 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} +90 704 655 0.231088183814007 0.23137974218071 0.231082627603571 0.231326771953918 0.00370091937712597 0.0034022859964025 19672529 8749323 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} +91 225 711 0.238222346267851 0.968247218157055 0.23736934462501 1 0.00748762946502839 0.108370305229263 20279860 47527107 1299 749 87 True 225 706 31 {X=0,Y=0,Width=0,Height=0} +92 278 706 0.232969507270442 0.232869572783088 0.232593270771344 0.232883192187381 0.00494614169591609 0.00375403689791968 19832686 8805659 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} +93 331 706 0.231531188812306 0.231753231203668 0.231479362172885 0.231921873807889 0.00414579943679099 0.00448774106167316 19710242 8763446 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} +94 384 707 0.231892706639783 0.231594452750518 0.231723506523232 0.231250476844434 0.00479846328392011 0.00501447192155902 19741018 8757442 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} +95 438 707 0.231976378705195 0.232612734619032 0.231845578698405 0.232593270771344 0.00461300150672229 0.00431468651443572 19748141 8795947 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} +96 491 707 0.231695701977559 0.233085605625158 0.231784542610819 0.233035782406348 0.0048776322082446 0.00513721503508373 19724247 8813828 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} +97 544 707 0.23134096202201 0.231391483958391 0.231342030975814 0.231082627603571 0.00420170190031827 0.00459126145511638 19694048 8749767 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} +98 597 707 0.230746682440196 0.231264440039515 0.23067063401236 0.231433585107195 0.00388768356141643 0.00355051075555696 19643457 8744963 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} +99 650 708 0.231011183899817 0.231283348532853 0.23085374227512 0.231372549019608 0.00435360556598995 0.00423666832444796 19665974 8745678 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} +100 703 710 0.234496219985525 0.961848794435366 0.234485389486534 1 0.00506929297229224 0.110539406432211 19962655 54272929 1299 861 83 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv new file mode 100644 index 0000000..97868a4 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 228 232 0.0235019948616213 0.162809014023502 0.0234531166552224 0.178973067826352 0.00214431523356303 0.0408537532110509 2000724 9186602 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} +2 280 233 0.023375000800247 0.0231522468248607 0.0234073395895323 0.0231631952391852 0.00166186467828235 0.00174650664682659 1989913 875472 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} +3 333 233 0.0233108988121868 0.0231505278709208 0.0233310444800488 0.0231631952391852 0.0014859575642702 0.00151900567919556 1984456 875407 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} +4 386 233 0.0232787714643134 0.0231805963421454 0.0232394903486687 0.0231937132829786 0.00154476723176754 0.00153030793833524 1981721 876544 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} +5 439 234 0.0235041797562116 0.0229467657154372 0.023270008392462 0.0228732738231479 0.00283478079160566 0.00179305956208973 2000910 867702 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.0230780900708699 0.0230060035127485 0.0231021591515984 0.0229037918669413 0.00226693917491101 0.00248134131437587 1964637 869942 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} +7 546 234 0.0232827536109054 0.0231199833816822 0.0233615625238422 0.0231937132829786 0.00215447398331304 0.00215770908687416 1982060 874252 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} +8 599 234 0.0232420746325927 0.0231910158475653 0.0232089723048753 0.023224231326772 0.00181622056975377 0.00170464586327033 1978597 876938 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} +9 652 234 0.0232658852849288 0.0234188169127614 0.0232852674143587 0.0234378576333257 0.00151686958750489 0.00148057552223031 1980624 885552 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} +10 702 232 0.0236678471558164 0.154991123342375 0.0236514839398795 0.17080949111162 0.00157374966383339 0.0453276484811716 2014843 9883095 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} +11 227 285 0.0230746482745529 0.0229028398309131 0.023071641107805 0.0230106050202182 0.00205381821108158 0.0020650412669992 1964344 866041 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} +12 280 285 0.0231488642101521 0.023232350078457 0.0231631952391852 0.0232394903486687 0.00162409413972648 0.00141828814707745 1970662 878501 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} +13 333 286 0.0232918573383649 0.0231914918655794 0.0232547493705653 0.023224231326772 0.00143939420128221 0.00147224614437767 1982835 876956 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} +14 386 286 0.0233343923024049 0.0232302344428388 0.0233157854581521 0.0232394903486687 0.00151748572153265 0.00144493048115938 1986456 878421 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} +15 439 286 0.0231422390459106 0.0232812741521293 0.0231021591515984 0.0231784542610819 0.00156653665434435 0.00144882693611263 1970098 880351 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} +16 492 286 0.0233078798986937 0.0232843418237757 0.0233005264362554 0.0232089723048753 0.00202592279390463 0.0020699916504537 1984199 880467 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.023090377166254 0.0233275007903882 0.023071641107805 0.0231937132829786 0.00190539449217742 0.0020399695964367 1965683 882099 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.0231659204840505 0.0230637074742365 0.0231326771953918 0.0230563820859083 0.00163679282532542 0.00166303309541366 1972114 872124 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.0232867944912229 0.0231070780044108 0.0232089723048753 0.0230563820859083 0.00146171525812857 0.00135877317952943 1982404 873764 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.0231750359582551 0.0232051377153172 0.0231784542610819 0.0232394903486687 0.00136229224004672 0.00135428259100909 1972890 877472 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} +21 226 338 0.0230676119742326 0.0228250902219421 0.0231174181734951 0.0228274967574578 0.00197019649348195 0.00210386546860851 1963745 863101 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} +22 279 338 0.0229337930539499 0.0233305949074799 0.022919050888838 0.0233310444800488 0.00163278041585239 0.00151151261198306 1952353 882216 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} +23 333 338 0.0231353789467669 0.0231684314373404 0.023071641107805 0.0231784542610819 0.00154268301728331 0.00148450953593377 1969514 876084 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} +24 386 338 0.0233039917260626 0.0231402405927271 0.0233005264362554 0.0231326771953918 0.00161385748122387 0.00159153367012249 1983868 875018 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} +25 439 339 0.0232653801748891 0.0235554076373652 0.0232852674143587 0.0236057068741894 0.0016053877546815 0.00143526439880838 1980581 890717 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} +26 492 339 0.0233689864667512 0.0234630865880734 0.0233157854581521 0.0233310444800488 0.00179801734769882 0.00208961926623559 1989401 887226 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} +27 545 339 0.0232343335275658 0.0232843947146662 0.0232394903486687 0.0232394903486687 0.00166350481349499 0.00165010467601623 1977938 880469 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} +28 599 339 0.023426580758021 0.0231457147998893 0.0234836346990158 0.0231326771953918 0.00167143435588018 0.00171208053414779 1994304 875225 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.0233609869333319 0.023119375136442 0.0233463035019455 0.0231174181734951 0.00145615699140462 0.00141104066172018 1988720 874229 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.0232867475042425 0.023821633934478 0.0232852674143587 0.0236514839398795 0.00141422999253559 0.00215099994992762 1982400 900784 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} +31 226 390 0.0229720052157898 0.0230625174292012 0.0229800869764248 0.022919050888838 0.00204066254262214 0.00226445449548774 1955606 872079 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} +32 279 391 0.0231934313610959 0.0231573507957897 0.0231326771953918 0.023071641107805 0.00184456278953943 0.00166931289873208 1974456 875665 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} +33 332 391 0.0233006204102163 0.0233855749881095 0.0233157854581521 0.0233615625238422 0.00160718653759161 0.00174791042820157 1983581 884295 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} +34 386 391 0.0233075509898307 0.0234273587915701 0.0232852674143587 0.0234378576333257 0.00167484132472477 0.00163132807894474 1984171 885875 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} +35 439 391 0.0234437897396058 0.0234645675330062 0.0234073395895323 0.0234378576333257 0.00165665933496495 0.00157399000064066 1995769 887282 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} +36 492 391 0.0233737791387557 0.0233045990348206 0.0233463035019455 0.0232394903486687 0.00177952566035084 0.00179335754790148 1989809 881233 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} +37 545 392 0.0234923390371416 0.0235075942723926 0.0234836346990158 0.0234531166552224 0.00153832002687231 0.00151746782714239 1999902 888909 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} +38 598 392 0.0233505793171652 0.0233125855592795 0.0232852674143587 0.0233310444800488 0.00158579040851542 0.00165972586402041 1987834 881535 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.0233119325257564 0.0231950884461304 0.0232852674143587 0.0231784542610819 0.00150289954982081 0.00158254394197202 1984544 877092 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.0232704900090115 0.0231942157464379 0.0232852674143587 0.0231326771953918 0.00147141664473154 0.00134686641643175 1981016 877059 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} +41 226 443 0.0230991754783407 0.0230982452257046 0.0231021591515984 0.023071641107805 0.00244235004931672 0.00242618356996582 1966432 873430 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} +42 279 443 0.0232094304279345 0.0232481380092583 0.0231021591515984 0.0232089723048753 0.00207205482515296 0.00215396312532988 1975818 879098 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} +43 332 443 0.0233344980231109 0.0233810528169754 0.0232394903486687 0.0232394903486687 0.00182121754035909 0.00170231557069864 1986465 884124 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} +44 385 444 0.0234126373715765 0.0233683590032659 0.0233615625238422 0.023270008392462 0.00191512441553052 0.00201826703067098 1993117 883644 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.0236514017126637 0.0236112604176873 0.023575188830396 0.0235599298084993 0.00203152731466403 0.00197846332945984 2013443 892829 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.0233910703475562 0.0235598504721636 0.0234836346990158 0.0235904478522927 0.00211619007610752 0.00205992211524448 1991281 890885 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.0233045320763376 0.0235957104958931 0.0232394903486687 0.0236057068741894 0.00192825577427125 0.00194658698043421 1983914 892241 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} +48 598 445 0.0233611161475281 0.0235010093565307 0.0233920805676356 0.023422598611429 0.00185542400380525 0.00196997040601897 1988731 888660 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} +49 651 445 0.0233160321397994 0.0233383698683771 0.023270008392462 0.0233310444800488 0.00168597074179259 0.00163352568496246 1984893 882510 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.0231960626320004 0.0233615889692874 0.0231631952391852 0.0233768215457389 0.00185890337886267 0.00192829625472393 1974680 883388 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} +51 226 496 0.0230485117666852 0.0229879148282124 0.0229800869764248 0.0228732738231479 0.00222313443296317 0.00229604696676652 1962119 869258 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} +52 279 496 0.0232544322084474 0.0232850294053517 0.0232394903486687 0.023270008392462 0.00171860246346508 0.00158423101339159 1979649 880493 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} +53 332 496 0.0234919748880432 0.0231729536084744 0.0235294117647059 0.0230563820859083 0.00155874975449248 0.0015527226855693 1999871 876255 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} +54 385 496 0.0234575216846383 0.0234853800984009 0.0234531166552224 0.0234836346990158 0.0016651188961069 0.0016381396912372 1996938 888069 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} +55 438 496 0.0235469966421342 0.0234509216832685 0.0234988937209125 0.0233310444800488 0.00215862351428425 0.00206451274048427 2004555 886766 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.0235261579163107 0.0234448921217564 0.0235141527428092 0.0233768215457389 0.00237085909267941 0.00229236707106746 2002781 886538 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.0234291885354352 0.0234282050458174 0.0234683756771191 0.0234073395895323 0.00201688091055845 0.00190551920913431 1994526 885907 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.023208185272953 0.0235189393683955 0.0231784542610819 0.0235294117647059 0.00199852340515192 0.00207654749048224 1975712 889338 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.0232999860859804 0.0234251373741709 0.023270008392462 0.0233768215457389 0.00175776862703742 0.00179342810321406 1983527 885791 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} +60 704 498 0.0231739200174698 0.0231658133382628 0.0231174181734951 0.0231784542610819 0.00179335863292672 0.00175534014250225 1972795 875985 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} +61 225 548 0.0231338518699027 0.0231455561272179 0.0231174181734951 0.0230869001297017 0.00204889763136551 0.00207255659959107 1969384 875219 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} +62 279 548 0.0233662259816505 0.0233097294511949 0.023422598611429 0.0233310444800488 0.00162133284838281 0.00158898776179553 1989166 881427 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} +63 332 549 0.0233132481612086 0.0233028800808807 0.0232547493705653 0.023270008392462 0.00139775081228169 0.00142028941808998 1984656 881168 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} +64 385 549 0.0233946883450498 0.0234683492316739 0.0233920805676356 0.0234073395895323 0.00142615052688558 0.00131066772166052 1991589 887425 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} +65 438 549 0.0234239025001361 0.0235216896946992 0.0234073395895323 0.0234988937209125 0.00184119476581415 0.00157786164972736 1994076 889442 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} +66 491 549 0.023430997534182 0.0232589541963566 0.0233463035019455 0.023270008392462 0.00232481725784486 0.00238120955971697 1994680 879507 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.0233702786087132 0.0234090056525817 0.0233920805676356 0.0234073395895323 0.00187370132354497 0.00198772240533509 1989511 885181 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} +68 598 550 0.0234055423375306 0.0234539629094697 0.0234378576333257 0.0234683756771191 0.0016496843138745 0.00171578620673456 1992513 886881 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} +69 651 550 0.0233448821457873 0.0234048272722356 0.0233768215457389 0.0234683756771191 0.00147911690556687 0.00141874525497073 1987349 885023 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.0231271914654258 0.0232881235224434 0.0230869001297017 0.023270008392462 0.00150856672623191 0.0015873681844695 1968817 880610 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} +71 225 601 0.0230658382157211 0.0232621805406745 0.0230563820859083 0.0231479362172885 0.00182537902708343 0.00179969146540031 1963594 879629 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} +72 278 601 0.0232795467494906 0.0232218776821466 0.0232394903486687 0.0231631952391852 0.00160960364387972 0.00156688046035799 1981787 878105 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} +73 332 601 0.0234360251410887 0.0233007644452625 0.0233768215457389 0.0233768215457389 0.00143253674529176 0.00137200330544231 1995108 881088 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} +74 385 601 0.0235848681483659 0.0234622932247166 0.0234988937209125 0.0234073395895323 0.00153639608216349 0.00171832084378846 2007779 887196 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} +75 438 602 0.0234098181527503 0.0235346744083063 0.0233463035019455 0.0235141527428092 0.00174234269397127 0.00167217452585569 1992877 889933 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} +76 491 602 0.0234067170120415 0.0233684118941563 0.0233768215457389 0.0234073395895323 0.00215032924709839 0.0021613730403328 1992613 883646 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} +77 544 602 0.0233925974244204 0.0233264958634696 0.0233615625238422 0.0232547493705653 0.00178775360744562 0.00186467563681124 1991411 882061 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.0233310562267939 0.0233379996321439 0.0233310444800488 0.023422598611429 0.00157540539930051 0.00172899837699854 1986172 882496 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.023377479363465 0.0233969994204481 0.0233310444800488 0.0233463035019455 0.00136424695101838 0.0013686160522513 1990124 884727 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} +80 704 603 0.0233152098676418 0.0231450801092038 0.023270008392462 0.0231631952391852 0.00147611490819175 0.00145784616754527 1984823 875201 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0237295410611293 0.169509316508887 0.0237125200274662 0.175661860074769 0.00193715317396258 0.0297428070383715 2020095 8320486 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} +82 278 654 0.0233493224154386 0.0233225554921306 0.0233920805676356 0.0233157854581521 0.00159905521680606 0.00161065507509953 1987727 881912 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} +83 331 654 0.0232777142572536 0.0232696646016741 0.0233310444800488 0.0232089723048753 0.00146996843999638 0.00138151972059178 1981631 879912 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} +84 385 654 0.0234161613951092 0.0234608916161195 0.023422598611429 0.0234836346990158 0.00156936971188282 0.0015147863753747 1993417 887143 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} +85 438 654 0.0235833528182468 0.023361536078397 0.023575188830396 0.0233463035019455 0.00174670882398186 0.00183868500689048 2007650 883386 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} +86 491 654 0.023367565110593 0.0234609709524552 0.023422598611429 0.023422598611429 0.00184462597238325 0.00186329545668019 1989280 887146 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} +87 544 655 0.0233234560827084 0.0232709868739355 0.0233005264362554 0.023270008392462 0.0015183515386868 0.00142172283736676 1985525 879962 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} +88 597 655 0.023208185272953 0.0231547591421574 0.023224231326772 0.0230869001297017 0.00141553128376082 0.00137647834150845 1975712 875567 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} +89 650 655 0.023395675071639 0.0234488589385407 0.0234073395895323 0.0234378576333257 0.00144391821579352 0.00145738000233183 1991673 886688 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} +90 704 655 0.0233118502985406 0.0232709075375998 0.0232394903486687 0.0233157854581521 0.00132301440647164 0.00146064168638291 1984537 879959 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} +91 225 711 0.0239962391620859 0.172312616817337 0.0240177004654002 0.18272678721294 0.00222510838337016 0.0377267518766278 2042799 8458088 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} +92 278 706 0.0234056128180013 0.0232717537918471 0.0233615625238422 0.023224231326772 0.00177494839153827 0.00155919200286629 1992519 879991 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} +93 331 706 0.023243625202947 0.0230255995876626 0.0232394903486687 0.0229953459983215 0.00157812285689627 0.00171262891893812 1978729 870683 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} +94 384 707 0.0233504383562239 0.0233424689123874 0.0232852674143587 0.0232547493705653 0.00172514504026702 0.00175159316993136 1987822 882665 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} +95 438 707 0.0234668133600196 0.0235328232271403 0.0234836346990158 0.0235446707866026 0.00174412772667397 0.00167983844207908 1997729 889863 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} +96 491 707 0.0232975662564879 0.0234418244501099 0.023270008392462 0.0233463035019455 0.00194304973084185 0.00185177878342089 1983321 886422 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} +97 544 707 0.0232212124132789 0.023315309440138 0.0231631952391852 0.0231937132829786 0.00172324383197617 0.00173987079633671 1976821 881638 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} +98 597 707 0.0231373758934354 0.0234095610069315 0.0231326771953918 0.0234073395895323 0.00147410045636148 0.00152394314554106 1969684 885202 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} +99 650 708 0.0234335700713609 0.0232674696297201 0.0234531166552224 0.0232394903486687 0.00163502482349707 0.00172815386984826 1994899 879829 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} +100 703 710 0.0235580033423014 0.152252925465526 0.0234836346990158 0.15921263447013 0.00170732172066623 0.0296905054834609 2005492 8590968 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv new file mode 100644 index 0000000..87a3a19 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 228 232 0.326070661487997 0.387004541464177 0.325932707713436 0.39150072480354 0.00590298238621973 0.0358530787036201 27758384 21836977 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} +2 280 233 0.325662039212632 0.32538057970796 0.325642786297398 0.325307087815671 0.00505664523698056 0.0045975815390647 27723598 12303842 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} +3 333 233 0.325021477455089 0.324881236811161 0.325047684443427 0.325108720531014 0.00455527435690669 0.00431192733972954 27669067 12284960 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} +4 386 233 0.32497151854814 0.3247438527232 0.32498664835584 0.32498664835584 0.00388031250653495 0.0040510394318923 27664814 12279765 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} +5 439 234 0.325739203581254 0.325415540586552 0.325093461509117 0.325490196078431 0.00843695444242965 0.00445432503136138 27730167 12305164 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.325022863571012 0.324846011478117 0.324925612268254 0.324315251392386 0.00632296751355181 0.00631965161197165 27669185 12283628 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} +7 546 234 0.325597984211552 0.325098063016587 0.325276569771878 0.324696726939803 0.00654898141107381 0.00683001240876388 27718145 12293159 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} +8 599 234 0.324636795046257 0.324317684373347 0.32457465476463 0.323811703669795 0.00604000562809555 0.00622526399354408 27636319 12263650 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} +9 652 234 0.324846227764806 0.325462666369949 0.32475776302739 0.325337605859464 0.00504033514736791 0.00441694970447015 27654148 12306946 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} +10 702 232 0.324434046225674 0.382015792068304 0.324315251392386 0.383749141680018 0.00475553571641277 0.031322812605381 27619059 24359449 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} +11 227 285 0.325542492587657 0.326545290006703 0.325474937056535 0.326390478370336 0.0051859760314493 0.00505090789145829 27713421 12347884 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} +12 280 285 0.325837617811778 0.325668544161051 0.325902189669642 0.325673304341192 0.00475520160950132 0.00473055977837806 27738545 12314731 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} +13 333 286 0.325410811574984 0.32518710483067 0.325383382925155 0.325322346837568 0.00439706422188717 0.00443838930122722 27702211 12296526 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} +14 386 286 0.325206982053851 0.32518588834019 0.325139238574807 0.325444419012741 0.00418583095697711 0.00420237120598232 27684859 12296480 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} +15 439 286 0.325391864075123 0.325956561505031 0.325230792706188 0.325703822384985 0.00424598690385507 0.003996790732572 27700598 12325622 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} +16 492 286 0.325549387927036 0.32533186719785 0.325474937056535 0.325200274662394 0.00529685745724639 0.00565539067038103 27714008 12302000 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.325523333646384 0.325496886776074 0.325368123903258 0.325505455100328 0.00545772873087825 0.00565085200694571 27711790 12308240 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.325314617479286 0.326075275108661 0.325261310749981 0.32632944228275 0.00561980814960726 0.00604706132216707 27694022 12330111 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.325261122802059 0.326066019202831 0.325185015640497 0.326039520866712 0.00468558206628173 0.00451580341458007 27689468 12329761 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.324450879311415 0.325143496291489 0.324483100633249 0.325246051728084 0.00432554639584007 0.00408041493179304 27620492 12294877 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} +21 226 338 0.325987788201252 0.325721937514966 0.325886930647745 0.325719081406882 0.00624758866369375 0.00581694223315537 27751329 12316750 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} +22 279 338 0.32574903560691 0.326357633127363 0.325780117494469 0.32646677347982 0.00540513130532459 0.00510692063215743 27731004 12340788 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} +23 333 338 0.326306829798415 0.326674132215855 0.326482032501717 0.326726176852064 0.00485866114491753 0.00539248294525345 27778489 12352756 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} +24 386 338 0.32643929784301 0.326225776137455 0.326482032501717 0.325749599450675 0.00482327439540929 0.00445817299750927 27789766 12335802 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} +25 439 339 0.326351209001437 0.326347134285607 0.326405737392233 0.326436255436027 0.00431729648566046 0.00386133367695446 27782267 12340391 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} +26 492 339 0.325709942439187 0.326401611902778 0.325780117494469 0.326314183260853 0.00485352444004033 0.00499505248507864 27727676 12342451 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} +27 545 339 0.325772411629677 0.32571659553503 0.325703822384985 0.325749599450675 0.00520800837875783 0.00498546351927236 27732994 12316548 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} +28 599 339 0.325483183271601 0.325732489247613 0.325627527275502 0.325642786297398 0.00525647048053288 0.00526662351880505 27708372 12317149 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.325414335598517 0.325354292935403 0.325459678034638 0.325246051728084 0.00474717603541378 0.00534042384118042 27702511 12302848 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.324932307912966 0.326960509942231 0.3247119859617 0.326054779888609 0.00423324690950673 0.00642880084441282 27661476 12363585 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} +31 226 390 0.326049352892369 0.326027858425367 0.326024261844816 0.326161593041886 0.00686736103510546 0.00688396399217042 27756570 12328318 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} +32 279 391 0.326883641970251 0.327271032360101 0.326756694895857 0.327183947508965 0.00636432182043244 0.00603354213283192 27827593 12375327 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} +33 332 391 0.326952642351022 0.32706232490636 0.326909285114824 0.327229724574655 0.00527868160582989 0.00577967400727504 27833467 12367435 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} +34 386 391 0.326424825853035 0.327079461554868 0.32651255054551 0.327046616311894 0.00533063368980838 0.00538620336733121 27788534 12368083 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} +35 439 391 0.326821442954898 0.326022754454438 0.326756694895857 0.326024261844816 0.00473957820443195 0.00432048240427571 27822298 12328125 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} +36 492 391 0.326488422731056 0.325484536753153 0.326314183260853 0.325597009231708 0.00481627021971381 0.00442701593953613 27793948 12307773 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} +37 545 392 0.326528126729525 0.326379847301355 0.326543068589303 0.326543068589303 0.00520678549888452 0.0053282643951204 27797328 12341628 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} +38 598 392 0.325523274912659 0.326045127301101 0.325230792706188 0.326268406195163 0.00559131848102917 0.00536147070633043 27711785 12328971 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.325663084672947 0.325261019850083 0.325764858472572 0.325246051728084 0.00458701769775314 0.00496221947460623 27723687 12299321 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.324957974551029 0.324747978212656 0.32498664835584 0.32484931715877 0.00406481269818873 0.00390657119691129 27663661 12279921 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} +41 226 443 0.326362791292114 0.326536139882654 0.326070038910506 0.326085297932403 0.00647094913798809 0.006807681782216 27783253 12347538 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} +42 279 443 0.326606853415246 0.327068962713112 0.326588845654994 0.327199206530861 0.00544026837498976 0.00523178801256303 27804030 12367686 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} +43 332 443 0.326767079018534 0.327419629316839 0.32664988174258 0.327260242618448 0.00503429932418817 0.00452645205416961 27817670 12380946 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} +44 385 444 0.327038475817534 0.327244957151106 0.327092393377585 0.327260242618448 0.00476213603101452 0.00482086216832896 27840774 12374341 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.326628079783658 0.326899024282076 0.32646677347982 0.326619363698787 0.00609377968693407 0.00579249409592494 27805837 12361260 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.326202976824905 0.326366333678843 0.326009002822919 0.326131074998093 0.00601337042167832 0.00602159568590431 27769648 12341117 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.326143397333712 0.326510355573556 0.325841153582055 0.326268406195163 0.00550525461617161 0.00580678292714956 27764576 12346563 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} +48 598 445 0.326126599488206 0.326224136519851 0.326100556954299 0.32646677347982 0.00581040038099868 0.00574210003041727 27763146 12335740 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} +49 651 445 0.325293720019737 0.325160315594654 0.325169756618601 0.324956130312047 0.00507701353517133 0.00527015043140836 27692243 12295513 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.325183042187319 0.324926458522501 0.325276569771878 0.325093461509117 0.00448567155989385 0.00409933778997884 27682821 12286670 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} +51 226 496 0.326290877718557 0.325965262056512 0.326482032501717 0.326131074998093 0.00582502095001721 0.00559627646338157 27777131 12325951 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} +52 279 496 0.326384123381232 0.32659307692623 0.326527809567407 0.326543068589303 0.00462612095116693 0.00461459617123102 27785069 12349691 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} +53 332 496 0.327085286596794 0.326654403913714 0.327122911421378 0.326619363698787 0.0042070178883349 0.00433137052532178 27844759 12352010 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} +54 385 496 0.326765810370062 0.326341950978343 0.326726176852064 0.326314183260853 0.00399388908438356 0.00399260061942673 27817562 12340195 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} +55 438 496 0.326625284058322 0.326869616946982 0.326497291523613 0.326832990005341 0.00554525387836706 0.00538165443031808 27805599 12360148 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.326028960542859 0.325736614737068 0.325993743801022 0.325368123903258 0.00666408233135459 0.00692795321282259 27754834 12317305 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.326692404959875 0.32648993968984 0.326665140764477 0.326451514457923 0.00585666752499696 0.0053973370145353 27811313 12345791 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.325593532195156 0.32643091345609 0.325734340428779 0.326573586633097 0.005842820633092 0.00560965770831274 27717766 12343559 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.325180035020571 0.325525897429489 0.325017166399634 0.325597009231708 0.00549183325557637 0.00557299361263366 27682565 12309337 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} +60 704 498 0.324959020011344 0.325527748610655 0.325047684443427 0.325230792706188 0.00533143362851911 0.00547913143444121 27663750 12309407 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} +61 225 548 0.326063425493009 0.326640916736648 0.326131074998093 0.326497291523613 0.00546226590475135 0.00579493590757211 27757768 12351500 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} +62 279 548 0.326308368622024 0.326269437567527 0.326268406195163 0.326436255436027 0.00458573349018953 0.00452194498177369 27778620 12337453 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} +63 332 549 0.327066233376227 0.327064414096533 0.326878767071031 0.327244983596551 0.00425336131499805 0.00404110249200733 27843137 12367514 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} +64 385 549 0.326416908546832 0.326718507672948 0.326497291523613 0.326680399786374 0.00430130894678317 0.00435400847132573 27787860 12354434 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} +65 438 549 0.326480376210656 0.326987325623693 0.326451514457923 0.327077134355688 0.00524747088555473 0.00549382570195006 27793263 12364599 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} +66 491 549 0.326075442413256 0.326329389391859 0.325963225757229 0.32623788815137 0.00682871674078395 0.00716040277620887 27758791 12339720 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.326354462849832 0.326453868102549 0.326314183260853 0.32660410467689 0.00626407693434096 0.00680360256141048 27782544 12344427 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} +68 598 550 0.32584918835571 0.32618872606869 0.325917448691539 0.325795376516365 0.00543315511279326 0.00581818482022478 27739530 12334401 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} +69 651 550 0.32593044059163 0.325852366450832 0.325703822384985 0.325688563363088 0.00531692308864492 0.00539021904804163 27746447 12321682 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.325030205286705 0.325262659467688 0.325001907377737 0.325261310749981 0.00532091175865663 0.00496795170722194 27669810 12299383 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} +71 225 601 0.325228231915754 0.325959972967466 0.325307087815671 0.325947966735332 0.00556946035276501 0.00564906676712199 27686668 12325751 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} +72 278 601 0.326078508313729 0.325690758335042 0.326054779888609 0.325612268253605 0.00479814445321714 0.00452112644317223 27759052 12315571 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} +73 332 601 0.326395811392616 0.326423799631324 0.326390478370336 0.326222629129473 0.00487920575548139 0.00470892077205264 27786064 12343290 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} +74 385 601 0.326932367468963 0.326501258340398 0.326726176852064 0.326619363698787 0.00554613198405978 0.00502204301019861 27831741 12346219 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} +75 438 602 0.326867196527098 0.326936233023512 0.326665140764477 0.326756694895857 0.00527949372019052 0.00558965818458581 27826193 12362667 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} +76 491 602 0.32650181402048 0.327378242195057 0.32642099641413 0.327687495231556 0.00598758988001548 0.00622592330999283 27795088 12379381 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} +77 544 602 0.326186061511948 0.326092861329738 0.326054779888609 0.326131074998093 0.00529457622046933 0.00577464609289617 27768208 12330776 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.326157129278745 0.325908325012935 0.326024261844816 0.325902189669642 0.00486608390552768 0.00484396495385919 27765745 12323798 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.326204868050868 0.326087519349802 0.326176852063783 0.326192111085679 0.00454740193400661 0.0044769549157903 27769809 12330574 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} +80 704 603 0.325613572142312 0.325435110216021 0.325612268253605 0.325413900968948 0.0048817733897419 0.00435192298600752 27719472 12305904 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.324600779525752 0.396856621116755 0.32475776302739 0.402365148393988 0.00602962667954157 0.0282899289791107 27633253 19479991 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} +82 278 654 0.325936748593753 0.326203879308806 0.326009002822919 0.326070038910506 0.00496082566375003 0.00481439263238805 27746984 12334974 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} +83 331 654 0.325295411551033 0.325450422128808 0.325612268253605 0.325230792706188 0.00508969844785848 0.00503478084894872 27692387 12306483 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} +84 385 654 0.325963625146563 0.326510144009994 0.325795376516365 0.326726176852064 0.00534916615389643 0.00483902212993432 27749272 12346555 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} +85 438 654 0.326307487616141 0.327393474771508 0.326359960326543 0.327748531319142 0.00534407641435696 0.00547295293786473 27778545 12379957 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} +86 491 654 0.326316861518738 0.326479044166406 0.326268406195163 0.326253147173266 0.00507635380005021 0.00492103852317041 27779343 12345379 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} +87 544 655 0.326924520643231 0.326455904401831 0.326924544136721 0.326359960326543 0.00422289418422721 0.00424704847901409 27831073 12344504 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} +88 597 655 0.32617599455139 0.326318070741302 0.326253147173266 0.326268406195163 0.00418531177518751 0.00445792457626662 27767351 12339292 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} +89 650 655 0.325216602638096 0.325995277636846 0.325154497596704 0.326009002822919 0.00411208170038385 0.00394064317833666 27685678 12327086 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} +90 704 655 0.325255343403466 0.326181506462143 0.325215533684291 0.326100556954299 0.00461933867134434 0.00399771375793484 27688976 12334128 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} +91 225 711 0.324252547266993 0.396520555929561 0.324071107042039 0.404394598306249 0.00685736856274854 0.031910917636691 27603608 19463495 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} +92 278 706 0.325089855258369 0.325065323555394 0.325017166399634 0.325062943465324 0.00618014589633124 0.00507133928842296 27674888 12291921 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} +93 331 706 0.324592345362764 0.325538406125083 0.32466620889601 0.325642786297398 0.00592670231460427 0.00584012909911937 27632535 12309810 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} +94 384 707 0.32513627839504 0.325180995932823 0.32498664835584 0.325108720531014 0.00623659579727714 0.00600690152936907 27678840 12296295 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} +95 438 707 0.3264996056324 0.325842819645105 0.326543068589303 0.326070038910506 0.00588315258533313 0.00618095562572104 27794900 12321321 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} +96 491 707 0.326869816051258 0.332253645141 0.3265583276112 0.330907148851759 0.0057783480864112 0.00931862074100224 27826416 12563738 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} +97 544 707 0.32623418792666 0.325984699458754 0.326253147173266 0.325871671625849 0.0043053206628659 0.00459380475251768 27772305 12326686 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} +98 597 707 0.325794225335345 0.325318062675441 0.325856412603952 0.325139238574807 0.00419491038579376 0.00372344218995625 27734851 12301478 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} +99 650 708 0.325466126997703 0.325559641817601 0.325383382925155 0.325490196078431 0.00446303487200738 0.0046294075356633 27706920 12310613 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} +100 703 710 0.32526822958285 0.385958190811676 0.325246051728084 0.387060349431601 0.00481853038994439 0.0293213725829259 27690073 21777936 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv new file mode 100644 index 0000000..98e6db2 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 228 232 0.0342449923478766 0.040552472293843 0.0341649500267033 0.0407721065079728 0.00230299242404721 0.00454409138157464 2915275 2288199 1299 861 0 True 227 233 33 {X=0,Y=0,Width=0,Height=0} +2 280 233 0.0341392833886399 0.0342078180934183 0.0341496910048066 0.0341649500267033 0.00202211856677505 0.00170956867059268 2906276 1293524 1299 577 0 False 280 233 27 {X=0,Y=0,Width=0,Height=0} +3 333 233 0.0341652084550957 0.03396295971605 0.0341649500267033 0.0339818417639429 0.00173844496601942 0.00153099745147894 2908483 1284265 1299 577 0 False 333 233 27 {X=0,Y=0,Width=0,Height=0} +4 386 233 0.0341480699539815 0.0339503716841213 0.0341039139391165 0.0339665827420462 0.00167493853110176 0.0013264995958777 2907024 1283789 1299 577 0 False 386 233 27 {X=0,Y=0,Width=0,Height=0} +5 439 234 0.0341886901985687 0.0339391059244541 0.0340581368734264 0.0339055466544594 0.00194793883128589 0.00163693388315888 2910482 1283363 1299 577 0 False 439 234 27 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.0340448865449434 0.0340351293360778 0.034027618829633 0.0338902876325628 0.0024571750306764 0.00252172160965156 2898240 1286994 1299 577 0 False 493 234 27 {X=0,Y=0,Width=0,Height=0} +7 546 234 0.0342838858209327 0.0342391559460137 0.0342412451361868 0.0342259861142901 0.00260746122775198 0.0027915808743642 2918586 1294709 1299 577 0 False 546 234 27 {X=0,Y=0,Width=0,Height=0} +8 599 234 0.0340492798276142 0.0340566559284936 0.0339665827420462 0.034027618829633 0.00231998765466994 0.00229329380100238 2898614 1287808 1299 577 0 False 599 234 27 {X=0,Y=0,Width=0,Height=0} +9 652 234 0.034006181019809 0.0339344515260939 0.0340428778515297 0.0339055466544594 0.0018299940174297 0.00169125246409781 2894945 1283187 1299 577 0 False 652 234 27 {X=0,Y=0,Width=0,Height=0} +10 702 232 0.0340438528313738 0.0401167683712625 0.0340733958953231 0.0403906309605554 0.00176468076197505 0.00362569223459073 2898152 2558068 1299 973 0 True 705 235 34 {X=0,Y=0,Width=0,Height=0} +11 227 285 0.0339090354377568 0.0340654093708642 0.0338597695887694 0.0339513237201495 0.00201225820620702 0.00192849598443539 2886675 1288139 1299 577 0 False 227 285 27 {X=0,Y=0,Width=0,Height=0} +12 280 285 0.0342353012831616 0.0341687581708162 0.0342717631799802 0.0342107270923934 0.0017979789858576 0.00190953204243661 2914450 1292047 1299 577 0 False 280 285 27 {X=0,Y=0,Width=0,Height=0} +13 333 286 0.0340141922999733 0.0339856499080558 0.0339360646982528 0.0339513237201495 0.00159805430637141 0.001560961713797 2895627 1285123 1299 577 0 False 333 286 27 {X=0,Y=0,Width=0,Height=0} +14 386 286 0.0342982168499658 0.0339797790192151 0.0343022812237736 0.0340123598077363 0.00158456274410405 0.00166044948808232 2919806 1284901 1299 577 0 False 386 286 27 {X=0,Y=0,Width=0,Height=0} +15 439 286 0.034088349501847 0.034212419600888 0.0340733958953231 0.0341954680704967 0.00170899951741291 0.00162061333370043 2901940 1293698 1299 577 0 False 439 286 27 {X=0,Y=0,Width=0,Height=0} +16 492 286 0.0340687324375148 0.034146491105934 0.0340123598077363 0.0341954680704967 0.00210306785695174 0.0019743267376091 2900270 1291205 1299 577 0 False 492 286 27 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.0341352660018126 0.0341799974850382 0.0341649500267033 0.0341649500267033 0.00210807746430543 0.00199657753273921 2905934 1292472 1299 577 0 False 546 287 27 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.0341891013346476 0.0343022018874379 0.0342412451361868 0.0344090943770504 0.00220449155662303 0.00250766357463059 2910517 1297093 1299 577 0 False 599 287 27 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.0339472358528516 0.0341189878428966 0.0338750286106661 0.0341496910048066 0.00178655609061987 0.00169459698711001 2889927 1290165 1299 577 0 False 652 287 27 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.0340357123370132 0.0339640704247495 0.034027618829633 0.0339513237201495 0.00167342091465771 0.00154482914491034 2897459 1284307 1299 577 0 False 705 287 27 {X=0,Y=0,Width=0,Height=0} +21 226 338 0.0339914975884226 0.0342668443271677 0.034027618829633 0.0341802090486 0.00239165230364765 0.00242986584198843 2893695 1295756 1299 577 0 False 226 338 27 {X=0,Y=0,Width=0,Height=0} +22 279 338 0.0342380147812818 0.0343127271746387 0.0342412451361868 0.0343022812237736 0.00209791636335119 0.00208910126623916 2914681 1297491 1299 577 0 False 279 338 27 {X=0,Y=0,Width=0,Height=0} +23 333 338 0.0341450275469983 0.0343863512941541 0.0341802090486 0.0344701304646372 0.00188638745997883 0.00198428610277453 2906765 1300275 1299 577 0 False 333 338 27 {X=0,Y=0,Width=0,Height=0} +24 386 338 0.0342956912997674 0.0343804539598682 0.0342870222018769 0.0344396124208438 0.00165724522307763 0.00176393715985412 2919591 1300052 1299 577 0 False 386 338 27 {X=0,Y=0,Width=0,Height=0} +25 439 339 0.0342360765683388 0.0341706093519821 0.0341802090486 0.0342717631799802 0.00166728635428068 0.00162080576509457 2914516 1292117 1299 577 0 False 439 339 27 {X=0,Y=0,Width=0,Height=0} +26 492 339 0.0343040902225204 0.0343551985596753 0.0342259861142901 0.034378576333257 0.00183107263025821 0.00187755753592163 2920306 1299097 1299 577 0 False 492 339 27 {X=0,Y=0,Width=0,Height=0} +27 545 339 0.0341081545141009 0.0343466831263118 0.0340581368734264 0.0343022812237736 0.00199462278952654 0.00200820324773263 2903626 1298775 1299 577 0 False 545 339 27 {X=0,Y=0,Width=0,Height=0} +28 599 339 0.0342953623909043 0.033934345744313 0.0342870222018769 0.0339208056763561 0.00206358959750077 0.00202789228201853 2919563 1283183 1299 577 0 False 599 339 27 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.0340825113695278 0.0340592211366808 0.0340428778515297 0.0339818417639429 0.00184478816513967 0.0017571252430279 2901443 1287905 1299 577 0 False 652 340 27 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.0340747350242655 0.0342366700741623 0.0340428778515297 0.0341954680704967 0.00170541920199568 0.00167482584561357 2900781 1294615 1299 577 0 False 705 340 27 {X=0,Y=0,Width=0,Height=0} +31 226 390 0.0341636461379962 0.0342069189482805 0.0341496910048066 0.0341496910048066 0.00265922421610875 0.00260321055400408 2908350 1293490 1299 577 0 False 226 390 27 {X=0,Y=0,Width=0,Height=0} +32 279 391 0.0342818183937935 0.0342743812790578 0.0342565041580835 0.0342565041580835 0.00231274852964449 0.00235989125486024 2918410 1296041 1299 577 0 False 279 391 27 {X=0,Y=0,Width=0,Height=0} +33 332 391 0.034205734725722 0.0340225677495944 0.0342717631799802 0.0339971007858396 0.0019873613267566 0.00209009785033276 2911933 1286519 1299 577 0 False 332 391 27 {X=0,Y=0,Width=0,Height=0} +34 386 391 0.0341513355491219 0.0342912534731134 0.0341649500267033 0.0343480582894636 0.00189310560650801 0.00190590538803295 2907302 1296679 1299 577 0 False 386 391 27 {X=0,Y=0,Width=0,Height=0} +35 439 391 0.0342590532017721 0.0341981919513552 0.0342412451361868 0.0341344319829099 0.00181124557453418 0.00168846357104074 2916472 1293160 1299 577 0 False 439 391 27 {X=0,Y=0,Width=0,Height=0} +36 492 391 0.034115813391912 0.0341509074952871 0.0340733958953231 0.0341496910048066 0.00177361006630923 0.00166882185987865 2904278 1291372 1299 577 0 False 492 391 27 {X=0,Y=0,Width=0,Height=0} +37 545 392 0.0342398237800286 0.0341957060795037 0.0341496910048066 0.0341649500267033 0.00199331093711875 0.00192951066134194 2914835 1293066 1299 577 0 False 545 392 27 {X=0,Y=0,Width=0,Height=0} +38 598 392 0.0340487394773391 0.0341505108136087 0.0340733958953231 0.0340886549172198 0.00192823540875466 0.00208133033606789 2898568 1291357 1299 577 0 False 598 392 27 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.0340652788944527 0.0341361509368497 0.0340581368734264 0.0341344319829099 0.00179278184247926 0.00169530464767754 2899976 1290814 1299 577 0 False 652 392 27 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.0340495969897321 0.0340042675014965 0.0339971007858396 0.0340123598077363 0.00151928111039012 0.0014890957596795 2898641 1285827 1299 577 0 False 705 392 27 {X=0,Y=0,Width=0,Height=0} +41 226 443 0.0341078725922183 0.0340855608001281 0.0340886549172198 0.0340733958953231 0.00243014081659 0.00278658014138242 2903602 1288901 1299 577 0 False 226 443 27 {X=0,Y=0,Width=0,Height=0} +42 279 443 0.0343189381083382 0.0343159799644018 0.0342870222018769 0.0342870222018769 0.00205414949843773 0.00202864545010158 2921570 1297614 1299 577 0 False 279 443 27 {X=0,Y=0,Width=0,Height=0} +43 332 443 0.0343585833730814 0.0343306571865035 0.0343480582894636 0.0342565041580835 0.00176672334336836 0.00181417775634839 2924945 1298169 1299 577 0 False 332 443 27 {X=0,Y=0,Width=0,Height=0} +44 385 444 0.0342476706057614 0.0344255434439824 0.0342412451361868 0.0343633173113603 0.00187732032224415 0.00193113963339981 2915503 1301757 1299 577 0 False 385 444 27 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.0343036790864415 0.0340429307424202 0.0344243533989471 0.0339208056763561 0.00227966541656669 0.00219878381976751 2920271 1287289 1299 577 0 False 439 444 27 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.0341616961783081 0.0341786487673315 0.0341496910048066 0.0340581368734264 0.00219362097207867 0.00215305349959103 2908184 1292421 1299 577 0 False 492 444 27 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.0341905344375509 0.0342708640348424 0.0342565041580835 0.0342870222018769 0.00213933322908042 0.00211365574711847 2910639 1295908 1299 577 0 False 545 444 27 {X=0,Y=0,Width=0,Height=0} +48 598 445 0.034103855205391 0.0343720443082857 0.0342107270923934 0.034378576333257 0.00215463871509963 0.00220907834263212 2903260 1299734 1299 577 0 False 598 445 27 {X=0,Y=0,Width=0,Height=0} +49 651 445 0.0340574085752297 0.0340446232509148 0.0339360646982528 0.0339513237201495 0.00188534430125175 0.00202099235964151 2899306 1287353 1299 577 0 False 651 445 27 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.0338275130266998 0.0340565237012675 0.0337987335011826 0.0339971007858396 0.00174130635084052 0.0015919989039232 2879735 1287803 1299 577 0 False 705 445 27 {X=0,Y=0,Width=0,Height=0} +51 226 496 0.0340634933891962 0.0342690128536764 0.0340428778515297 0.0341954680704967 0.00226375176985653 0.00209602470232608 2899824 1295838 1299 577 0 False 226 496 27 {X=0,Y=0,Width=0,Height=0} +52 279 496 0.034342819241145 0.0342894287373926 0.0342717631799802 0.0342717631799802 0.0018276377312356 0.00169611648563548 2923603 1296610 1299 577 0 False 279 496 27 {X=0,Y=0,Width=0,Height=0} +53 332 496 0.034298886414437 0.0345196363381045 0.0343022812237736 0.0345464255741207 0.0016267294322946 0.00167658154437763 2919863 1305315 1299 577 0 False 332 496 27 {X=0,Y=0,Width=0,Height=0} +54 385 496 0.0342954563648652 0.0345087143692252 0.0343175402456703 0.034531166552224 0.00144374337179524 0.00144271834509881 2919571 1304902 1299 577 0 False 385 496 27 {X=0,Y=0,Width=0,Height=0} +55 438 496 0.0343218395543802 0.0345256130087261 0.0342717631799802 0.0345616845960174 0.00214009146017879 0.00208884560063485 2921817 1305541 1299 577 0 False 438 496 27 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.0342511006553333 0.0341096261552858 0.0341649500267033 0.0340733958953231 0.00253594524110998 0.00257332259466058 2915795 1289811 1299 577 0 False 492 497 27 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.0342523458103149 0.0342447359349569 0.0342870222018769 0.0342259861142901 0.00227545439615859 0.00213197117327524 2915901 1294920 1299 577 0 False 545 497 27 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.0341716691649057 0.0342600742931893 0.0341649500267033 0.0343022812237736 0.00213851775948172 0.00215674261298653 2909033 1295500 1299 577 0 False 598 497 27 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.0341145329966951 0.0339071333811731 0.0341344319829099 0.0340581368734264 0.00208017634049319 0.00215452190686077 2904169 1282154 1299 577 0 False 651 497 27 {X=0,Y=0,Width=0,Height=0} +60 704 498 0.0340460729661994 0.0341139896537485 0.0339971007858396 0.0340733958953231 0.00206752066940594 0.00214252838295192 2898341 1289976 1299 577 0 False 704 498 27 {X=0,Y=0,Width=0,Height=0} +61 225 548 0.03412098195976 0.0341800503759286 0.0341191729610132 0.0341039139391165 0.00214581546283601 0.00211465476204238 2904718 1292474 1299 577 0 False 225 548 27 {X=0,Y=0,Width=0,Height=0} +62 279 548 0.0342249289072303 0.0341717729515722 0.0342259861142901 0.0341649500267033 0.00176810644178259 0.00171743624355019 2913567 1292161 1299 577 0 False 279 548 27 {X=0,Y=0,Width=0,Height=0} +63 332 549 0.034368662080385 0.0343123040475151 0.0344090943770504 0.0343175402456703 0.00155425799996797 0.00159809237394148 2925803 1297475 1299 577 0 False 332 549 27 {X=0,Y=0,Width=0,Height=0} +64 385 549 0.0343866933341274 0.0343898949838147 0.034378576333257 0.034378576333257 0.00170715195763561 0.00175816830374546 2927338 1300409 1299 577 0 False 385 549 27 {X=0,Y=0,Width=0,Height=0} +65 438 549 0.0342186796388322 0.0342216226158274 0.0341954680704967 0.0342717631799802 0.00199281461184279 0.00205252754259119 2913035 1294046 1299 577 0 False 438 549 27 {X=0,Y=0,Width=0,Height=0} +66 491 549 0.0342622365696967 0.0342146410182872 0.0342870222018769 0.0341954680704967 0.00267754171670741 0.00270646457796757 2916743 1293782 1299 577 0 False 491 549 27 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.03424320684262 0.0341323956836273 0.0342412451361868 0.034027618829633 0.00235873926992807 0.00253847537605122 2915123 1290672 1299 577 0 False 545 549 27 {X=0,Y=0,Width=0,Height=0} +68 598 550 0.0342243180764846 0.0342621370379171 0.0342107270923934 0.0342107270923934 0.00212038591747636 0.00199147967807593 2913515 1295578 1299 577 0 False 598 550 27 {X=0,Y=0,Width=0,Height=0} +69 651 550 0.0342373099765752 0.0340800072566302 0.0341954680704967 0.0341191729610132 0.00198357925924729 0.00208196484738442 2914621 1288691 1299 577 0 False 651 550 27 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.0340111146527548 0.0340032625745778 0.034027618829633 0.0340123598077363 0.00199480262863909 0.00203216461166545 2895365 1285789 1299 577 0 False 704 550 27 {X=0,Y=0,Width=0,Height=0} +71 225 601 0.0340108797178526 0.0340479289315683 0.0339971007858396 0.0341344319829099 0.00206781145597653 0.00208713504808405 2895345 1287478 1299 577 0 False 225 601 27 {X=0,Y=0,Width=0,Height=0} +72 278 601 0.0340093761344786 0.0341822453478826 0.0339818417639429 0.0341496910048066 0.00173810482298612 0.00165222570708396 2895217 1292557 1299 577 0 False 278 601 27 {X=0,Y=0,Width=0,Height=0} +73 332 601 0.0340048066506312 0.0342002811415282 0.0339971007858396 0.0341649500267033 0.00178579021088297 0.00181659831340466 2894828 1293239 1299 577 0 False 332 601 27 {X=0,Y=0,Width=0,Height=0} +74 385 601 0.0344797627956267 0.0341661136262933 0.0344090943770504 0.0341802090486 0.00187385993598418 0.00201267357688208 2935261 1291947 1299 577 0 False 385 601 27 {X=0,Y=0,Width=0,Height=0} +75 438 602 0.0343471302966 0.03437833832425 0.0342565041580835 0.0343480582894636 0.0020551620728885 0.00213032128118689 2923970 1299972 1299 577 0 False 438 602 27 {X=0,Y=0,Width=0,Height=0} +76 491 602 0.0343382145170622 0.0342048562035527 0.0343175402456703 0.0342259861142901 0.00241200611863786 0.00226941679983203 2923211 1293412 1299 577 0 False 491 602 27 {X=0,Y=0,Width=0,Height=0} +77 544 602 0.0342989216546724 0.0343915874923093 0.0342717631799802 0.0342870222018769 0.0020598164623512 0.00190992172970053 2919866 1300473 1299 577 0 False 544 602 27 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.0342349723742985 0.0342862817294105 0.0342259861142901 0.0341802090486 0.00196151749031322 0.00207592247785016 2914422 1296491 1299 577 0 False 598 602 27 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.034055940232091 0.0341625170457423 0.0339971007858396 0.0341649500267033 0.00166788619179786 0.00179064907578708 2899181 1291811 1299 577 0 False 651 602 27 {X=0,Y=0,Width=0,Height=0} +80 704 603 0.0340499493920854 0.0342735614702557 0.034027618829633 0.0343022812237736 0.00179031299470398 0.00164408842278048 2898671 1296010 1299 577 0 False 704 603 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0340878443918073 0.0419753078874373 0.0340123598077363 0.0422369726100557 0.00239138936095422 0.00398242860002667 2901897 2060388 1299 749 0 True 225 653 31 {X=0,Y=0,Width=0,Height=0} +82 278 654 0.0341472829220592 0.0340544080656492 0.0341344319829099 0.0340123598077363 0.00189148441006767 0.00178231806592244 2906957 1287723 1299 577 0 False 278 654 27 {X=0,Y=0,Width=0,Height=0} +83 331 654 0.0340148853579348 0.0338952064853752 0.0339513237201495 0.0338750286106661 0.00185678885032309 0.00188522158915176 2895686 1281703 1299 577 0 False 331 654 27 {X=0,Y=0,Width=0,Height=0} +84 385 654 0.0342719981148823 0.0340427720697488 0.0343022812237736 0.0339665827420462 0.00189121152072287 0.00181005455355963 2917574 1287283 1299 577 0 False 385 654 27 {X=0,Y=0,Width=0,Height=0} +85 438 654 0.0341609091463858 0.03419179215361 0.0340886549172198 0.0340733958953231 0.00206911627704928 0.00214583108901721 2908117 1292918 1299 577 0 False 438 654 27 {X=0,Y=0,Width=0,Height=0} +86 491 654 0.0343092118033879 0.0342039835038602 0.0343022812237736 0.0342259861142901 0.00192094625697359 0.00179210213538655 2920742 1293379 1299 577 0 False 491 654 27 {X=0,Y=0,Width=0,Height=0} +87 544 655 0.0340774015354053 0.0340657796070974 0.0340886549172198 0.0340886549172198 0.00163213857931683 0.00164425853899559 2901008 1288153 1299 577 0 False 544 655 27 {X=0,Y=0,Width=0,Height=0} +88 597 655 0.0341222506082318 0.0342661038547013 0.0341039139391165 0.0343480582894636 0.00162710515026651 0.00154098755612566 2904826 1295728 1299 577 0 False 597 655 27 {X=0,Y=0,Width=0,Height=0} +89 650 655 0.0340759449390118 0.0340851376730045 0.0340581368734264 0.0340733958953231 0.00153968412103264 0.00155176149993307 2900884 1288885 1299 577 0 False 650 655 27 {X=0,Y=0,Width=0,Height=0} +90 704 655 0.0339591705458824 0.0340808799563227 0.0339513237201495 0.0340428778515297 0.00168703397172766 0.00170297118801228 2890943 1288724 1299 577 0 False 704 655 27 {X=0,Y=0,Width=0,Height=0} +91 225 711 0.033858653647984 0.0415318998612937 0.0337529564354925 0.0418860151064317 0.0025591112724578 0.00422557177849658 2882386 2038623 1299 749 0 True 225 706 31 {X=0,Y=0,Width=0,Height=0} +92 278 706 0.0338269374361895 0.0337307422615008 0.0338139925230793 0.0338597695887694 0.00223466464572744 0.00201004060206167 2879686 1275484 1299 577 0 False 278 706 27 {X=0,Y=0,Width=0,Height=0} +93 331 706 0.0339393420401383 0.0339497898843263 0.0339360646982528 0.0339208056763561 0.00229172039931174 0.00216554975841495 2889255 1283767 1299 577 0 False 331 706 27 {X=0,Y=0,Width=0,Height=0} +94 384 707 0.0340309196650087 0.0341738356963 0.0339360646982528 0.0341039139391165 0.00231078255140441 0.00246761416942063 2897051 1292239 1299 577 0 False 384 707 27 {X=0,Y=0,Width=0,Height=0} +95 438 707 0.0341199834864257 0.03417499929589 0.0341802090486 0.0341649500267033 0.00236149439255744 0.00227429014521358 2904633 1292283 1299 577 0 False 438 707 27 {X=0,Y=0,Width=0,Height=0} +96 491 707 0.0343931657906825 0.0349565415387203 0.0344090943770504 0.0349279011215381 0.00202014696113101 0.00202927803577852 2927889 1321836 1299 577 0 False 491 707 27 {X=0,Y=0,Width=0,Height=0} +97 544 707 0.0340668881985327 0.0341071402834344 0.0340733958953231 0.0341039139391165 0.00163375425513154 0.00161228372926031 2900113 1289717 1299 577 0 False 544 707 27 {X=0,Y=0,Width=0,Height=0} +98 597 707 0.0340906988508688 0.0340495949946177 0.0341191729610132 0.0340123598077363 0.00153072791533178 0.00159319784915506 2902140 1287541 1299 577 0 False 597 707 27 {X=0,Y=0,Width=0,Height=0} +99 650 708 0.034151030133749 0.0340566294830484 0.0341802090486 0.0340123598077363 0.00164564065699952 0.00156697678919425 2907276 1287807 1299 577 0 False 650 708 27 {X=0,Y=0,Width=0,Height=0} +100 703 710 0.0341066979177074 0.040565799569646 0.0341802090486 0.0406500343327993 0.00179143821310412 0.00355255686227591 2903502 2288951 1299 861 0 True 703 708 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv new file mode 100644 index 0000000..7f961dd --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 257 214 0.239625564963171 0.938263840539854 0.237323567559319 1 0.0124810327212997 0.144207636300068 22660672 52942133 1443 861 73 True 255 217 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.232367409753539 0.232438247571416 0.232028686961166 0.231845578698405 0.00506045953455003 0.00540376660680521 21974290 8789349 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.230738141701749 0.229908661398998 0.23076218814374 0.229831387808041 0.00429643641392654 0.00404302351020266 21820215 8693696 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.230775363986625 0.231118937199869 0.23057907988098 0.231036850537881 0.00572470515989815 0.0042264061618702 21823735 8739461 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.233912060554313 0.230230740476433 0.230746929121843 0.230182345311666 0.0204041914248976 0.00611032379509473 22120363 8705875 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.230448653840734 0.230299683752143 0.230472266727703 0.230411230640116 0.00577740055696784 0.00573722946017692 21792839 8708482 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 571 217 0.230833333465515 0.231312359186268 0.230838483253223 0.231372549019608 0.0052509469648507 0.00532479321238748 21829217 8746775 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} +8 624 217 0.23098010770247 0.230748780303009 0.231128404669261 0.230548561837186 0.00437989230692471 0.00451303918365246 21843097 8725464 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} +9 677 217 0.23159886474146 0.231329733843783 0.231570916304265 0.231357289997711 0.0038170528794568 0.00337039509853208 21901611 8747432 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.236699332922725 0.978949745093697 0.235919737544823 1 0.00714985987034068 0.0648695176913337 22383947 55237861 1443 861 82 True 729 217 33 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.232647116190261 0.230781466873311 0.231754024567025 0.23080796520943 0.00674734022645351 0.00400364001139379 22000741 8726700 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.231638201928886 0.23161727516975 0.231540398260472 0.231708247501335 0.00367123974272067 0.00380844021339312 21905331 8758305 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 360 269 0.231187008618915 0.23087862743908 0.231113145647364 0.2309452964065 0.00367528458294983 0.00356479315353894 21862663 8730374 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.231074538101318 0.232347724812399 0.23089951934081 0.231692988479438 0.00374019324308192 0.00491190047416465 21852027 8785926 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.232011958081997 0.231107354094859 0.231250476844434 0.231021591515984 0.00756795284995832 0.00457943902955457 21940676 8739023 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 518 269 0.231975105905067 0.231462410642493 0.231342030975814 0.231219958800641 0.00945704189033868 0.00547129200357154 21937191 8752449 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} +17 571 269 0.231532530822986 0.231390320358801 0.231555657282368 0.231189440756847 0.00464403622176798 0.00432339325131507 21895338 8749723 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} +18 624 269 0.231469274087722 0.231208983940871 0.231494621194781 0.231052109559777 0.0040431312044763 0.00377313059991359 21889356 8742866 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} +19 677 269 0.231208083622824 0.230829835592634 0.231174181734951 0.230731670099947 0.00340716940729344 0.00361826402861519 21864656 8728529 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} +20 729 270 0.231446665779465 0.231620527959513 0.231387808041505 0.231631952391852 0.00389639557557146 0.00371465630000045 21887218 8758428 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.23100995955196 0.231091962845736 0.23080796520943 0.231204699778744 0.00444379275815618 0.00467633887068022 21845920 8738441 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 307 321 0.23139633109878 0.232108631542091 0.231372549019608 0.231158922713054 0.00370135138772358 0.00666665056648587 21882458 8776885 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} +23 360 321 0.231424723665511 0.231618200760333 0.231570916304265 0.231509880216678 0.00401625754785925 0.00462787072781372 21885143 8758340 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} +24 413 321 0.231083526437154 0.231926977778818 0.231082627603571 0.231830319676509 0.00388946261043034 0.00384759510731082 21852877 8770016 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} +25 466 321 0.231615889706986 0.231885617102481 0.231601434348058 0.231891355764096 0.00438509579173074 0.0043791048806693 21903221 8768452 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} +26 518 321 0.232067960701515 0.232332598017729 0.232059205004959 0.232196536202029 0.00497547407160789 0.0045183173932108 21945972 8785354 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} +27 571 321 0.236934822283717 0.232842386865394 0.232394903486687 0.232684824902724 0.0483595048290229 0.00442441917245021 22390689 8804631 1442 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} +28 624 322 0.232225203706092 0.232504863647946 0.232120241092546 0.23237964446479 0.00413898528692754 0.00387900015145899 21960842 8791868 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} +29 676 322 0.231720429340022 0.232323024766556 0.231754024567025 0.232120241092546 0.00343871246316838 0.00348246647486117 21913107 8784992 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} +30 729 322 0.231297406532014 0.231058006894063 0.231342030975814 0.231067368581674 0.00376896213496857 0.00351445788476838 21873103 8737157 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.231665822556186 0.231099156006838 0.231754024567025 0.230914778362707 0.00505307603338378 0.00528008458080721 21907943 8738713 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 373 0.231965409076876 0.231832065075894 0.231830319676509 0.231921873807889 0.00395985697155972 0.00370363603906981 21936274 8766427 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} +33 360 373 0.231707750499236 0.230870323569278 0.231647211413748 0.230930037384604 0.0042259653806659 0.00417196213781584 21911908 8730060 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} +34 413 373 0.231941552976115 0.232143195739004 0.231845578698405 0.231937132829786 0.00414624824077485 0.00403759590708317 21934018 8778192 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} +35 466 373 0.23264684125293 0.232843656246765 0.23256275272755 0.232913710231174 0.00441399630612317 0.00416007271832241 22000715 8804679 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} +36 518 373 0.232707052528522 0.232857804559962 0.232501716639963 0.23251697566186 0.00453222018704865 0.00390261566023082 22006409 8805214 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} +37 571 374 0.232689572858948 0.232567856698479 0.23270008392462 0.232669565880827 0.00373990487245491 0.00419926775644477 22004756 8794250 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} +38 624 374 0.232365559213808 0.232910483886856 0.23224231326772 0.232852674143587 0.00401268510818489 0.00402511936587455 21974115 8807206 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} +39 676 374 0.23253120895602 0.232214783559237 0.232486457618067 0.232166018158236 0.00376530455371069 0.0036979822933967 21989780 8780899 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} +40 729 374 0.231395157327865 0.231589401670479 0.231387808041505 0.231586175326162 0.00375539396136359 0.00378501675522769 21882347 8757251 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 425 0.231811401873201 0.231577845010915 0.231754024567025 0.231357289997711 0.00548357671808868 0.00581364576667566 21921710 8756814 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 425 0.23199519747929 0.231850471105773 0.231937132829786 0.231982909895476 0.00451744243133572 0.00447805451751456 21939091 8767123 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} +43 360 425 0.232326951667762 0.232227636045618 0.232272831311513 0.23224231326772 0.00492421275596168 0.00490296044775431 21970464 8781385 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} +44 413 425 0.232897795589487 0.232353569255795 0.232761120012207 0.232089723048753 0.00470150309201746 0.00444331239347165 22024447 8786147 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} +45 465 425 0.233564370575128 0.233895391603492 0.233508812085145 0.233707179369802 0.00488366275190571 0.00507876596181842 22087483 8844449 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} +46 518 426 0.234929508447476 0.235164217620098 0.233691920347906 0.233417257953765 0.0115709044908625 0.0130034209912471 22216580 8892428 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} +47 571 426 0.233431924802948 0.233706121551993 0.233463035019455 0.233569848172732 0.00416330444611367 0.00417225344103842 22074958 8837292 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} +48 624 426 0.233312126148015 0.233167692287146 0.233142595559625 0.233203631647211 0.00441218958943107 0.00428465004116319 22063629 8816932 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} +49 676 426 0.232874182702519 0.232277459264428 0.232745860990311 0.232394903486687 0.00417173098913696 0.00379680820454123 22022214 8783269 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} +50 729 426 0.231826819512789 0.239475988791891 0.231860837720302 0.235187304493782 0.00424889181747074 0.012296534672424 21923168 9055472 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 477 0.231721455067759 0.231713827490278 0.231738765545129 0.231769283588922 0.00521573716696076 0.0052029446937872 21913204 8761956 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} +52 307 477 0.232026413440925 0.232044395555631 0.232089723048753 0.231982909895476 0.00414757192472929 0.00399079263831907 21942043 8774456 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} +53 360 477 0.232854122851834 0.232580338948627 0.232745860990311 0.232303349355306 0.00427633869439967 0.0040786758184801 22020317 8794722 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} +54 413 478 0.233740816894857 0.23434009821045 0.233630884260319 0.234348058289464 0.00503324859784375 0.0049884799208475 22104169 8861265 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} +55 465 478 0.233906847319528 0.233645825936873 0.233981841763943 0.233554589150835 0.00595532003248602 0.00622033781970772 22119870 8835012 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} +56 518 478 0.234342686436987 0.234062394590108 0.234378576333257 0.23408865491722 0.00539685633209953 0.00544567086187637 22161086 8850764 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} +57 571 478 0.234444000843635 0.234810774244622 0.234454871442741 0.234744792858778 0.00489257102097917 0.00545003421455041 22170667 8879063 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} +58 623 478 0.233654528870825 0.234285911493177 0.233554589150835 0.234103913939117 0.00489824874560151 0.00511105549289502 22096009 8859216 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} +59 676 478 0.233162073812108 0.234000380021048 0.232547493705653 0.233752956435492 0.00550944493458939 0.00553477041894349 22049439 8848419 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} +60 729 478 0.231976882423209 0.231573560848788 0.231952391851682 0.231479362172885 0.00499633466535141 0.00535449136795783 21937359 8756652 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} +61 254 529 0.231878095325108 0.2315529862924 0.231906614785992 0.231235217822538 0.00456807500894764 0.00426082051588796 21928017 8755874 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} +62 307 529 0.232335337256372 0.231902489296537 0.232364385442893 0.231784542610819 0.00366332217994101 0.00379109337695402 21971257 8769090 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} +63 360 530 0.233500680284841 0.233797834356045 0.233615625238422 0.233875028610666 0.00363222527993717 0.00377460307612454 22081460 8840760 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} +64 413 530 0.233943424559126 0.233746794646754 0.233875028610666 0.233737697413596 0.00416377807625241 0.00355215484641989 22123329 8838830 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} +65 465 530 0.234379422294277 0.234696767930243 0.234332799267567 0.234622720683604 0.00576237359051774 0.00612938842466044 22164560 8874752 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} +66 518 530 0.234519217352818 0.234436597640088 0.234439612420844 0.234470130464637 0.0054448318237484 0.0053112182823904 22177780 8864914 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} +67 571 530 0.234292637268147 0.234900027622268 0.234332799267567 0.234699015793088 0.00452397912300696 0.00430682349500907 22156353 8882438 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} +68 623 530 0.23358261160962 0.233305155711443 0.233478294041352 0.233218890669108 0.00463196405709613 0.00409753570081032 22089208 8822130 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} +69 676 530 0.232886607754999 0.231889742591937 0.23251697566186 0.232013427939269 0.00443614929181162 0.00388859575240599 22023389 8768608 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} +70 729 530 0.232561801021403 0.231434114016099 0.23242542153048 0.231342030975814 0.00540020356098678 0.00403732810286413 21992673 8751379 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} +71 254 581 0.232719065175005 0.232323104102892 0.232822156099794 0.23237964446479 0.00437605861421915 0.00477884200421485 22007545 8784995 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} +72 307 582 0.232498745201881 0.232670914598534 0.232486457618067 0.23270008392462 0.00357537872451027 0.00334548578569696 21986710 8798147 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} +73 360 582 0.23462085956936 0.233988902697819 0.233768215457389 0.233966582742046 0.00989779099293048 0.00365056352231995 22187392 8847985 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} +74 412 582 0.234045066775669 0.234615553967947 0.23404287785153 0.234699015793088 0.00411867588971349 0.00389584735703929 22132941 8871681 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} +75 465 582 0.234517546579803 0.234819342568876 0.234531166552224 0.234714274814984 0.00525171021502886 0.0051815746985305 22177622 8879387 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} +76 518 582 0.234635494695005 0.234578080772059 0.234699015793088 0.234531166552224 0.00562844267643118 0.00545721176561576 22188776 8870264 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} +77 571 582 0.233917675620582 0.234623487601516 0.233783474479286 0.234592202639811 0.00431795714377821 0.00453826052575785 22120894 8871981 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} +78 623 582 0.233297163212476 0.233217013042497 0.233234149691005 0.233035782406348 0.00379155897042519 0.00393807614090322 22062214 8818797 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} +79 676 582 0.232099049768997 0.231932002413411 0.232043945983062 0.231830319676509 0.00341171652621545 0.00343867125641085 21948912 8770206 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} +80 729 582 0.232127537506343 0.231727684903578 0.232013427939269 0.231784542610819 0.00432274021471807 0.00418735778720964 21951606 8762480 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} +81 253 637 0.242618257816244 0.978909281447769 0.241031509880217 1 0.00963733930239385 0.0692124033332237 22943682 48050462 1443 749 83 True 254 634 31 {X=0,Y=0,Width=0,Height=0} +82 307 634 0.234460655701214 0.233664179075861 0.234027618829633 0.233218890669108 0.00453620465736845 0.00354589002515053 22172242 8835706 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} +83 360 634 0.233411537142368 0.233809549688281 0.233340962844282 0.233691920347906 0.0037890531923281 0.00385827492745188 22073030 8841203 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} +84 412 634 0.235398340044712 0.233723972227522 0.234500648508431 0.233524071107042 0.00717726214942527 0.00401312432594189 22260916 8837967 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} +85 465 634 0.23424256695028 0.24066986841672 0.234241245136187 0.23598077363241 0.004806124836672 0.0202252374790453 22151618 9100617 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} +86 518 634 0.23426983861866 0.234654481663323 0.234241245136187 0.234637979705501 0.00456259290093584 0.00470205135123672 22154197 8873153 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} +87 571 634 0.233675212617762 0.233724157345639 0.233524071107042 0.233539330128939 0.00457811867434722 0.00447938276836769 22097965 8837974 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} +88 623 634 0.232756752738442 0.232401541293439 0.232822156099794 0.23251697566186 0.00360259014336412 0.00369457004989902 22011109 8787961 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} +89 676 634 0.232600165353656 0.231796495952062 0.232623788815137 0.231647211413748 0.00337837168999886 0.00355571170322549 21996301 8765082 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} +90 729 634 0.23186575486873 0.231713087017812 0.231906614785992 0.231708247501335 0.0040009806542118 0.00388172781631649 21926850 8761928 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} +91 253 690 0.243771091196131 0.973385230305803 0.24115358205539 1 0.0141580900618744 0.0864309408732952 23052702 47779310 1443 749 82 True 254 686 31 {X=0,Y=0,Width=0,Height=0} +92 307 686 0.234406556493991 0.233271279096105 0.23395132372015 0.233188372625315 0.0047617307961239 0.00342519695131413 22167126 8820849 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} +93 360 686 0.232832794059619 0.232884778914094 0.232761120012207 0.232990005340658 0.00424345176962039 0.00398270435338114 22018300 8806234 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} +94 412 686 0.233497148397583 0.232603029140633 0.233554589150835 0.232455939574273 0.0040611110423329 0.00379170979620769 22081126 8795580 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} +95 465 686 0.23394244112944 0.234123536459476 0.23395132372015 0.234103913939117 0.00451740833313688 0.00450137133471654 22123236 8853076 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} +96 518 686 0.233421307992148 0.233586217903328 0.233447775997559 0.233401998931868 0.00434136516663539 0.00441379712653287 22073954 8832758 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} +97 570 686 0.232602079340463 0.232399452103266 0.23256275272755 0.232227054245823 0.00350183635463455 0.00375235497977732 21996482 8787882 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} +98 623 686 0.232267533480626 0.232555004212098 0.2323338673991 0.23247119859617 0.00375184867291539 0.00360739980698386 21964845 8793764 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} +99 676 686 0.232913371846766 0.231686430009022 0.232776379034104 0.231662470435645 0.00403128930907614 0.00386519240482842 22025920 8760920 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} +100 728 690 0.236375932599325 0.944805229041729 0.235996032654307 1 0.00510610476815883 0.130293302005745 22353364 53311235 1443 861 76 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv new file mode 100644 index 0000000..4b8cad7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 257 214 0.0241564697962043 0.153193207307282 0.0240939955748837 0.17080949111162 0.00226463056148391 0.0492970397586142 2284405 8644024 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.0235933769923241 0.0234806992545955 0.0235294117647059 0.023422598611429 0.00166862767325673 0.00164955172310329 2231155 887892 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.023371428544237 0.0234825239903162 0.0234683756771191 0.0234988937209125 0.00159872907065476 0.00164075915776558 2210166 887961 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.0234637757640733 0.0233236133099397 0.0235141527428092 0.0233157854581521 0.00186607835392395 0.00165967948930581 2218899 881952 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0237313743836976 0.023339401240741 0.0234988937209125 0.0232547493705653 0.0030924019295995 0.00241552516860202 2244205 882549 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0234398985142862 0.0232805336796629 0.023422598611429 0.0233157854581521 0.00234055782900588 0.00226570644593574 2216641 880323 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 571 217 0.0234715903289948 0.0234136864963871 0.0234683756771191 0.0234683756771191 0.00201990743310606 0.00202621135752353 2219638 885358 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} +8 624 217 0.0232964129507961 0.0233930061582186 0.023270008392462 0.0233463035019455 0.0017896199529616 0.00198947248764821 2203072 884576 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} +9 677 217 0.0233510620326825 0.0233135375953077 0.0233310444800488 0.0233463035019455 0.00152999082845091 0.00139239529967715 2208240 881571 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.0238511836131429 0.176301888317252 0.0237888151369497 0.195223926146334 0.00190342011693346 0.0428208551196959 2255535 9947946 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0236198026996837 0.0233685705668277 0.0235599298084993 0.0233310444800488 0.00181812785907283 0.00184520811343629 2233654 883652 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0233702970713728 0.0234707028762992 0.0233615625238422 0.0234378576333257 0.00149879933035201 0.00142693438366837 2210059 887514 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 360 269 0.0234346324069373 0.0235534242289731 0.0234073395895323 0.0236057068741894 0.0014589254187523 0.00126843806513634 2216143 890642 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0233173716350645 0.0235845240725615 0.0232852674143587 0.0236362249179828 0.00146619185489175 0.00148384408502576 2205054 891818 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0234643467877618 0.023442300468124 0.0233768215457389 0.0234531166552224 0.00196348268778322 0.00186832378349179 2218953 886440 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 518 269 0.0234410828597141 0.0234813074998357 0.0233310444800488 0.023422598611429 0.00233587399404548 0.00228789175347978 2216753 887915 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} +17 571 269 0.0233997470893786 0.0235205789859997 0.0234378576333257 0.0235294117647059 0.00176758838939391 0.00158209322877627 2212844 889400 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} +18 624 269 0.0233784923187532 0.0233481811285567 0.0234378576333257 0.0233310444800488 0.00157874336032729 0.00155960446431157 2210834 882881 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} +19 677 269 0.0233198566455605 0.0234810165999382 0.0233615625238422 0.0234073395895323 0.00136907611948734 0.00138702918288348 2205289 887904 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} +20 729 270 0.0233750450275971 0.0235108470621557 0.0233920805676356 0.0234683756771191 0.0015957191186705 0.00151594604508246 2210508 889032 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0233337832788508 0.0233040172350256 0.0233157854581521 0.0232852674143587 0.0018536485776663 0.00214183576728544 2206606 881211 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 307 321 0.0234200924519075 0.0236481253683355 0.0234531166552224 0.0236209658960861 0.0013899218439415 0.0015528534065677 2214768 894223 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} +23 360 321 0.0233764937358437 0.0237096903648268 0.0233310444800488 0.0237888151369497 0.00154545138907833 0.00175937981523353 2210645 896551 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} +24 413 321 0.0235205714720478 0.0234668418412959 0.0234683756771191 0.0234378576333257 0.00152504275074237 0.0014972412129826 2224270 887368 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} +25 466 321 0.0234236666372166 0.023483661144461 0.0234073395895323 0.0234378576333257 0.00171904969243255 0.00173381559796299 2215106 888004 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} +26 518 321 0.0235144171056279 0.0235530804381852 0.0235599298084993 0.0235141527428092 0.001915065630963 0.00179815943853203 2223688 890629 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} +27 571 321 0.0245165531043306 0.0234423269135693 0.0236514839398795 0.0233157854581521 0.0107281350707713 0.00183511920773927 2318457 886441 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} +28 624 322 0.0234871348627357 0.0232526337349471 0.0234683756771191 0.0232852674143587 0.00162880342717246 0.00162375266541764 2221108 879268 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} +29 676 322 0.0233946713232591 0.0234725276120199 0.0233615625238422 0.0234531166552224 0.00135791145698732 0.00149300679140969 2212364 887583 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} +30 729 322 0.0233641638539785 0.0233144896313359 0.0233310444800488 0.023270008392462 0.00146321411806189 0.00143995042167629 2209479 881607 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0234612061574753 0.0233011875723861 0.0234531166552224 0.0233005264362554 0.00190563046881693 0.00202810163318487 2218656 881104 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 373 0.0233728772524836 0.0235085991993113 0.0233157854581521 0.0234073395895323 0.00160205738637447 0.00150796908580594 2210303 888947 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} +33 360 373 0.0234484427205874 0.0235254978388121 0.023422598611429 0.023575188830396 0.00164117535094777 0.00156923500722329 2217449 889586 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} +34 413 373 0.0234766237970633 0.0237296831214194 0.0234531166552224 0.0237277790493629 0.00154532296482824 0.00154200147839793 2220114 897307 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} +35 466 373 0.0234916607541922 0.023571830258852 0.0234683756771191 0.0236057068741894 0.00164069928436055 0.0016515608045266 2221536 891338 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} +36 518 373 0.023515929260951 0.0236420958068234 0.0234683756771191 0.0236057068741894 0.00175258127359927 0.00159556181898818 2223831 893995 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} +37 571 374 0.023791289572933 0.0234731358572602 0.0237430380712596 0.023422598611429 0.00155229766246255 0.00150235621585721 2249871 887606 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} +38 624 374 0.0234600112375347 0.0235166386146606 0.0234988937209125 0.0235141527428092 0.00160387516994475 0.00167146854998249 2218543 889251 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} +39 676 374 0.0233686791709222 0.0235612520807607 0.0233463035019455 0.0235446707866026 0.00143653459137029 0.0014008580320713 2209906 890938 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} +40 729 374 0.023386084818907 0.0234060966536066 0.0233768215457389 0.0233157854581521 0.00141460365348053 0.0014951433071847 2211552 885071 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 425 0.0235847587644337 0.0234965400762872 0.0234836346990158 0.0234378576333257 0.00218669897686332 0.00248969646970199 2230340 888491 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 425 0.0235529294810595 0.0234215407936199 0.0235446707866026 0.0233920805676356 0.00178530507822455 0.00178457762435051 2227330 885655 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} +43 360 425 0.0235116042852367 0.0235830431276288 0.0235446707866026 0.0235904478522927 0.00185926669395926 0.00182974842332018 2223422 891762 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} +44 413 425 0.0235834052268019 0.0235029398740324 0.0235446707866026 0.0234378576333257 0.00179790109030112 0.00173008998520075 2230212 888733 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} +45 465 425 0.0237523013444277 0.0237523204225347 0.0236972610055695 0.0237277790493629 0.00191984373902558 0.0019615558369491 2246184 898163 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} +46 518 426 0.0238831609396956 0.0237953471619211 0.0237888151369497 0.0237125200274662 0.00216557742898256 0.0021792251363835 2258559 899790 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} +47 571 426 0.0236449277419751 0.0235984079313064 0.0235904478522927 0.0236514839398795 0.00170990761591065 0.00163611917667208 2236030 892343 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} +48 624 426 0.0236151816376124 0.0236196436238246 0.023575188830396 0.0236514839398795 0.00166513651776086 0.0016546751507275 2233217 893146 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} +49 676 426 0.0235300568099836 0.0235779656021449 0.0235599298084993 0.0235599298084993 0.00161484462334028 0.00154413004669159 2225167 891570 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} +50 729 426 0.0233387744488683 0.0242819169086755 0.0233615625238422 0.0241855497062638 0.00173097031911116 0.0021697497738046 2207078 918189 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 477 0.023344178024883 0.0234896113696374 0.0233005264362554 0.0233920805676356 0.00207695328786971 0.00223845344007022 2207589 888229 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} +52 307 477 0.02339332836014 0.0235826200005051 0.0233615625238422 0.0236362249179828 0.00172143117330438 0.0016558183384242 2212237 891746 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} +53 360 477 0.0235999226157157 0.0235964509683595 0.0236209658960861 0.0235141527428092 0.00167933890833667 0.00159918178303592 2231774 892269 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} +54 413 478 0.0236807013186047 0.0234867552615527 0.0236972610055695 0.0234531166552224 0.00194015663824579 0.00192167418383478 2239413 888121 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} +55 465 478 0.0237939226266074 0.0238243313698913 0.0237582970931563 0.0239414053559167 0.00221796507474534 0.00239097325632433 2250120 900886 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} +56 518 478 0.0237436408184863 0.0237053004209189 0.0237430380712596 0.0235904478522927 0.00211099503477714 0.00229179599034106 2245365 896385 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} +57 571 478 0.0238166155309666 0.0238133829555668 0.0237888151369497 0.0237277790493629 0.00199229362240582 0.00211664655799117 2252266 900472 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} +58 623 478 0.0234978468441503 0.023534171944847 0.0234683756771191 0.0235294117647059 0.00203282574913133 0.00205390212183874 2222121 889914 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} +59 676 478 0.0234685131457848 0.0235793936561873 0.0234378576333257 0.0235141527428092 0.00180063201222234 0.0017989721311155 2219347 891624 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} +60 729 478 0.0234453443883519 0.0234217259117365 0.023422598611429 0.0234378576333257 0.00194557902925516 0.00196941338426528 2217156 885662 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} +61 254 529 0.0235760559404414 0.0235610140717536 0.0235446707866026 0.0235141527428092 0.00179390436274185 0.00181674241765418 2229517 890929 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} +62 307 529 0.0235200215973848 0.0235190451501764 0.0235446707866026 0.0235294117647059 0.00152175385529882 0.00149982816040006 2224218 889342 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} +63 360 530 0.0236976416880285 0.0238464397621021 0.0237125200274662 0.0238803692683299 0.00146717729388964 0.0015862017226616 2241015 901722 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} +64 413 530 0.0237209690631526 0.0236381289900392 0.0237277790493629 0.0236209658960861 0.00161612131586661 0.00152549897764623 2243221 893845 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} +65 465 530 0.0236654528712208 0.0236533351210454 0.023575188830396 0.0236667429617761 0.00223635776859273 0.00233929948219423 2237971 894420 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} +66 518 530 0.0237270811315215 0.0238573088400909 0.0236209658960861 0.0238040741588464 0.00212820318645237 0.00207658868326274 2243799 902133 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} +67 571 530 0.0237731965816196 0.0237602805015484 0.0237582970931563 0.0237582970931563 0.0018540770091217 0.00176088493158689 2248160 898464 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} +68 623 530 0.0236192739740462 0.0235171939690104 0.0236209658960861 0.0235904478522927 0.00174625637854878 0.00176509500907035 2233604 889272 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} +69 676 530 0.0234998242780344 0.0233552420624327 0.0235294117647059 0.023422598611429 0.00155226172648724 0.00141710295907402 2222308 883148 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} +70 729 530 0.0233834940632835 0.0235817737462578 0.0234073395895323 0.0235446707866026 0.00175219825786098 0.00175191279090117 2211307 891714 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} +71 254 581 0.0235743428693761 0.023463959287766 0.0235294117647059 0.0234683756771191 0.00178283187798198 0.00186733577335402 2229355 887259 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} +72 307 582 0.0234794048939162 0.023758958229287 0.0234836346990158 0.0237888151369497 0.00143239320417488 0.00132734596117367 2220377 898414 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} +73 360 582 0.0238488043477744 0.0237245791504903 0.0238193331807431 0.0237430380712596 0.00170913527470266 0.00143128973354942 2255310 897114 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} +74 412 582 0.0238116243609491 0.023815260582178 0.0237888151369497 0.0237430380712596 0.00156196553579116 0.00165531900187747 2251794 900543 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} +75 465 582 0.0237120018763415 0.0239042759508162 0.0236362249179828 0.0239108873121233 0.00201994854780338 0.00194441898013292 2242373 903909 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} +76 518 582 0.0237801123129574 0.0238492429792963 0.0237430380712596 0.0239414053559167 0.00218300237019207 0.00217279729808796 2248814 901828 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} +77 571 582 0.0235965599206615 0.0236602902731405 0.0236514839398795 0.0236972610055695 0.00165569859194387 0.00162120832251107 2231456 894683 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} +78 623 582 0.0234491089148906 0.0234349486343506 0.0234531166552224 0.0233310444800488 0.00158727629301045 0.00158692315108421 2217512 886162 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} +79 676 582 0.0236119881347622 0.0234150352140937 0.0236514839398795 0.0234531166552224 0.00132491582747666 0.00139665476950237 2232915 885409 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} +80 729 582 0.0234780513562844 0.0233028800808807 0.0234531166552224 0.023224231326772 0.00170429170861521 0.00170054053035229 2220249 881168 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} +81 253 637 0.0245053441208168 0.167762005707771 0.0244449530785077 0.176943617914092 0.00196171496563345 0.0412007961513391 2317397 8234718 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} +82 307 634 0.0237015965557966 0.023780617048929 0.0236820019836728 0.0238040741588464 0.00143755212907954 0.0013547838110855 2241389 899233 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} +83 360 634 0.0236969014721361 0.0237439636618426 0.0236209658960861 0.0236514839398795 0.00145279353002156 0.00151427969769735 2240945 897847 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} +84 412 634 0.0238913350380505 0.0236392396987388 0.0238803692683299 0.0235599298084993 0.00171345247869939 0.00161025354374884 2259332 893887 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} +85 465 634 0.0238029426859823 0.0242593589438959 0.0238040741588464 0.0239871824216068 0.00193217468712201 0.00296344778510354 2250973 917336 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} +86 518 634 0.0238558258242396 0.0236552391931019 0.0238345922026398 0.0236209658960861 0.00180103498856685 0.00169040051002986 2255974 894492 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} +87 571 634 0.0235779487782234 0.0236162321613902 0.0235446707866026 0.0236057068741894 0.00154734373671977 0.00156212658703279 2229696 893017 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} +88 623 634 0.0234709875817681 0.0233746530192302 0.0233768215457389 0.0232852674143587 0.00150610821134452 0.00136824306559515 2219581 883882 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} +89 676 634 0.0234636594444331 0.0235936213057201 0.023422598611429 0.0236057068741894 0.00131589513127822 0.00142601365064536 2218888 892162 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} +90 729 634 0.0234917242012687 0.023443913640283 0.0234988937209125 0.0234378576333257 0.00155461599684349 0.00135053845785435 2221542 886501 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} +91 253 690 0.0245424183625145 0.168009755995201 0.0244907301441978 0.180361638818952 0.00230836505903315 0.0432693700623523 2320903 8246879 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} +92 307 686 0.0237926642595903 0.0236764484401749 0.0238040741588464 0.0236514839398795 0.00151195262109501 0.0014326682911375 2250001 895294 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} +93 360 686 0.0236069652412065 0.0236414346706927 0.023575188830396 0.0236514839398795 0.00165037318934321 0.00165540588750474 2232440 893970 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} +94 412 686 0.0235924464352022 0.023452032391968 0.0236057068741894 0.0233920805676356 0.00159375478520744 0.00160843272410403 2231067 886808 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} +95 465 686 0.0237256747213259 0.0236982923779334 0.0236514839398795 0.0237582970931563 0.00179565155601154 0.00176390056816032 2243666 896120 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} +96 518 686 0.0235655343002562 0.0237665480720675 0.0235446707866026 0.0236514839398795 0.00173286973234385 0.00191918602553774 2228522 898701 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} +97 570 686 0.0233859262012157 0.0235868512717416 0.0233920805676356 0.0235294117647059 0.00140979191217094 0.00139910903009074 2211537 891906 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} +98 623 686 0.0233742096410899 0.0235020142834494 0.0234073395895323 0.0235294117647059 0.00151337798077132 0.0014264964474674 2210429 888698 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} +99 676 686 0.0234745829161027 0.0234616320885859 0.0234378576333257 0.0234073395895323 0.0015379431587551 0.00151820942827445 2219921 887171 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} +100 728 690 0.0238740139861678 0.15554160799431 0.0238651102464332 0.176836804760815 0.00165599425527312 0.0446044238513565 2257694 8776534 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv new file mode 100644 index 0000000..18c9eee --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 257 214 0.315615367114566 0.339898983857249 0.315465018692302 0.329610131990539 0.00566751996003519 0.0263099694029962 29846800 19179016 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.315188304842688 0.315373543897257 0.315220874341955 0.315403982604715 0.00493112386504526 0.00480873400426498 29806414 11925439 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.315170804024089 0.31471801420094 0.314961470969711 0.315007248035401 0.00435817690742111 0.0042603982656554 29804759 11900651 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.315052464651915 0.315232298774293 0.314854657816434 0.315068284122988 0.00480825402508554 0.0043627163779978 29793568 11920098 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.316944731410284 0.315400386024164 0.315556572823682 0.315526054779889 0.0120562818414038 0.00581734770259926 29972514 11926454 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.315088978444437 0.315912951643578 0.315129320210574 0.315846494239719 0.00668847159603603 0.00719274194579962 29797021 11945836 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 571 217 0.315393376368428 0.31563339684207 0.315312428473335 0.315754940108339 0.00641143907279527 0.00600039401017616 29825807 11935265 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} +8 624 217 0.3154474332776 0.315207334273998 0.315419241626612 0.315129320210574 0.0057604151056902 0.00640908083530983 29830919 11919154 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} +9 677 217 0.315109080593173 0.314886471687044 0.315205615320058 0.314991989013504 0.00437477837809595 0.00407950731140685 29798922 11907021 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.315216507068189 0.337067380810158 0.315342946517128 0.332097352559701 0.00572013207605367 0.0205234730366497 29809081 19019241 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.316655645380754 0.316165955218076 0.315999084458686 0.315907530327306 0.0065767037966101 0.00489635365650173 29945176 11955403 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.316048615476402 0.315878546119336 0.315983825436789 0.315907530327306 0.00437973333605802 0.00413084589262653 29887771 11944535 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 360 269 0.315889902614554 0.315706756507133 0.315709163042649 0.315739681086442 0.00428074077177504 0.00442691065844347 29872762 11938039 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.315420891250601 0.315646884019136 0.315281910429541 0.315327687495232 0.00401245739664729 0.00458295012939265 29828409 11935775 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.31635300282588 0.315984751027373 0.316243228809033 0.316090638590066 0.00539850730936009 0.00468928161165133 29916556 11948551 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 518 269 0.316015697018215 0.316183594330044 0.315846494239719 0.31625848783093 0.00626376045451259 0.00609047259565177 29884658 11956070 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} +17 571 269 0.316037554536067 0.316021034178226 0.316151674677653 0.316182192721447 0.00577768959490126 0.00563885633519076 29886725 11949923 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} +18 624 269 0.316277564251929 0.316365565438659 0.316227969787137 0.31607537956817 0.00541133935136021 0.00509433742716009 29909422 11962951 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} +19 677 269 0.315548515044967 0.315299179305276 0.315541313801785 0.315098802166781 0.00411060610085592 0.00400440182106778 29840478 11922627 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} +20 729 270 0.315396442977125 0.314659358203423 0.315342946517128 0.31464103150988 0.00478452803721979 0.0045272767982621 29826097 11898433 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.316414007189928 0.315978457011408 0.316227969787137 0.31602960250248 0.00569028751191547 0.00595489348810619 29922325 11948313 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 307 321 0.315823875356949 0.317225544872036 0.315922789349203 0.316685740444038 0.00476942338370962 0.00520107821088869 29866518 11995470 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} +23 360 321 0.315655793476805 0.315350615696244 0.315602349889372 0.315068284122988 0.00466899413111061 0.00506807193648807 29850623 11924572 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} +24 413 321 0.316290972734095 0.315942517651343 0.316227969787137 0.315892271305409 0.00402256011054908 0.00383542474762324 29910690 11946954 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} +25 466 321 0.316574041865871 0.316487849177395 0.316578927290761 0.316578927290761 0.0045660559031447 0.00459822199516171 29937459 11967575 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} +26 518 321 0.316704986057241 0.316165294081946 0.316929884794385 0.316365300984207 0.00501673443702901 0.00501418639895105 29949842 11955378 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} +27 571 321 0.319740664304638 0.316799217849512 0.316639963378347 0.316914625772488 0.0332276233880102 0.00578897875976583 30236917 11979349 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} +28 624 322 0.316404944832503 0.316487558277497 0.316289005874723 0.316639963378347 0.00508073204696825 0.00496548335483716 29921468 11967564 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} +29 676 322 0.31635861789215 0.316633114008033 0.316227969787137 0.316838330663004 0.00443308103760161 0.00398818564407704 29917087 11973068 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} +30 729 322 0.315534250027269 0.31541265671075 0.315617608911269 0.315465018692302 0.00438067404439738 0.00413262544110156 29839129 11926918 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.316356978842674 0.316256980440552 0.31635004196231 0.316105897611963 0.00617926694649581 0.00715726873575534 29916932 11958845 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 373 0.316668609733384 0.316173492169966 0.316502632181277 0.316182192721447 0.00503755019342426 0.00487549790595213 29946402 11955688 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} +33 360 373 0.31668563469891 0.316844254442736 0.316594186312657 0.316395819028 0.00524367526182491 0.00517586700087636 29948012 11981052 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} +34 413 373 0.316444430063107 0.317333627406684 0.31635004196231 0.317265583276112 0.00440327904888414 0.0041925368561135 29925202 11999557 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} +35 466 373 0.316949299599792 0.316556342880536 0.316990920881971 0.316243228809033 0.00431923411999521 0.00397928199486366 29972946 11970165 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} +36 518 373 0.31704565455996 0.317280101825542 0.317021438925765 0.316960402838178 0.0052200279038587 0.00482638479431304 29982058 11997533 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} +37 571 374 0.316804904628205 0.316430092325016 0.316777294575418 0.316014343480583 0.00541883628179349 0.00522577350818719 29959291 11965391 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} +38 624 374 0.316685179994862 0.316436862358995 0.316609445334554 0.31621271076524 0.00476056929090057 0.00455724687978772 29947969 11965647 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} +39 676 374 0.316175615374517 0.316901852622443 0.316227969787137 0.31648737315938 0.00436408003856242 0.00446043377143429 29899781 11983230 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} +40 729 374 0.315727911653753 0.315695675865583 0.315754940108339 0.315754940108339 0.00415821768886019 0.00403578487282604 29857443 11937620 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 425 0.316649702504589 0.316549467064776 0.316639963378347 0.316334782940414 0.00649386463978241 0.0063678299807063 29944614 11969905 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 425 0.317168117992105 0.317315062704134 0.317112993057145 0.317357137407492 0.00528156397164732 0.00516211188376165 29993639 11998855 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} +43 360 425 0.317107494310516 0.317350050028171 0.317036697947662 0.317418173495079 0.00494486147084198 0.00496057622693932 29987906 12000178 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} +44 413 425 0.317687770697613 0.317107042831969 0.317692835889219 0.316853589684901 0.00525259420498326 0.00537853201750793 30042781 11990989 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} +45 465 425 0.317426537934663 0.316577869472952 0.317341878385595 0.316792553597314 0.00558782312991347 0.00608648004924552 30018077 11970979 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} +46 518 426 0.317980293443786 0.317681702356778 0.317479209582666 0.317082475013352 0.00763120827949718 0.00684987872077514 30070444 12012719 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} +47 571 426 0.317472357298404 0.317412249715348 0.317479209582666 0.317555504692149 0.0055409661530634 0.00594137797885663 30022410 12002530 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} +48 624 426 0.316476312219045 0.31638301943251 0.316563668268864 0.31648737315938 0.00513716509766192 0.00507963907627935 29928217 11963611 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} +49 676 426 0.316611919770537 0.316051525776574 0.316533150225071 0.315892271305409 0.0045925619685066 0.00421171884504135 29941041 11951076 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} +50 729 426 0.316400059407613 0.328334297930948 0.31644159609369 0.321400778210117 0.00439171238125743 0.0166422980623069 29921006 12415533 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 477 0.316978083423494 0.315739707531888 0.317112993057145 0.315587090867475 0.00519916206520126 0.00513768995274378 29975668 11939285 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} +52 307 477 0.317217458668592 0.316717527869202 0.317311360341802 0.316411078049897 0.00471780831023687 0.00465172278070948 29998305 11976260 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} +53 360 477 0.317602370932652 0.317686912109488 0.317692835889219 0.317387655451286 0.00424648934502891 0.00397775779293629 30034705 12012916 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} +54 413 478 0.317543893877151 0.317665729307861 0.317647058823529 0.317509727626459 0.005022631401428 0.00488348935403598 30029175 12012115 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} +55 465 478 0.317606547865188 0.316983278148301 0.317540245670253 0.316975661860075 0.00657556678072479 0.0071238919476435 30035100 11986309 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} +56 518 478 0.316890071753885 0.316966776190478 0.316884107728695 0.316655222400244 0.00627049405681402 0.00685583026197283 29967345 11985685 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} +57 571 478 0.317342893538819 0.317496266894838 0.317479209582666 0.316990920881971 0.00547132894631529 0.00548034431904381 30010167 12005707 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} +58 623 478 0.317010092473585 0.317361183560612 0.317021438925765 0.317204547188525 0.00591183134908469 0.00553899891933931 29978695 12000599 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} +59 676 478 0.317012440015416 0.31695596000338 0.316807812619211 0.316670481422141 0.00556913503478834 0.00498478973160443 29978917 11985276 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} +60 729 478 0.316779335456378 0.316956700475846 0.316609445334554 0.316868848706798 0.00516142874429126 0.00533601840343292 29956873 11985304 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} +61 254 529 0.316535920747411 0.316625682837924 0.316472114137484 0.316578927290761 0.00482988314173835 0.00487621094429284 29933854 11972787 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} +62 307 529 0.317232929180743 0.317149699335122 0.317174029144732 0.317006179903868 0.00404466382162492 0.00420041703163798 29999768 11992602 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} +63 360 530 0.317376858873769 0.317430787972453 0.317219806210422 0.317036697947662 0.0039756649807529 0.004175466983059 30013379 12003231 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} +64 413 530 0.317276580769371 0.317044525799449 0.317189288166629 0.317143511100938 0.0046330493522911 0.00478937374986081 30003896 11988625 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} +65 465 530 0.317794118572329 0.317287189204863 0.3177843900206 0.317189288166629 0.00616006526386883 0.00584955835071381 30052838 11997801 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} +66 518 530 0.317015897881084 0.316888603454383 0.316899366750591 0.316777294575418 0.00682634683684819 0.00708358153136629 29979244 11982729 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} +67 571 530 0.317256415173559 0.316957388057422 0.317036697947662 0.316960402838178 0.00567096009715675 0.00585943801367236 30001989 11985330 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} +68 623 530 0.317435769484293 0.317187860112586 0.317341878385595 0.317174029144732 0.00568584366240165 0.00553119082613433 30018950 11994045 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} +69 676 530 0.317111100219363 0.316228181350698 0.317067215991455 0.31635004196231 0.00559104180732898 0.00531079113692329 29988247 11957756 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} +70 729 530 0.316682293152881 0.316802153293932 0.316609445334554 0.316700999465934 0.00568217111548419 0.00546007773023067 29947696 11979460 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} +71 254 581 0.316612638837404 0.317190795557007 0.316594186312657 0.317265583276112 0.00499001120605151 0.00538472360859161 29941109 11994156 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} +72 307 582 0.316479865255329 0.316670772322038 0.316395819028 0.316777294575418 0.00419234737189543 0.00385068561004227 29928553 11974492 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} +73 360 582 0.317181727390013 0.317095142381616 0.316990920881971 0.316899366750591 0.00524883849775431 0.0048622478135349 29994926 11990539 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} +74 412 582 0.317394053031499 0.318114376286158 0.317357137407492 0.318043793392844 0.0048005382277105 0.00448299681523956 30015005 12029080 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} +75 465 582 0.31739848375234 0.317540642351931 0.317341878385595 0.317357137407492 0.0061850060966676 0.00586531648723923 30015424 12007385 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} +76 518 582 0.317420573909473 0.317081284968316 0.317235065232319 0.317067215991455 0.00656262435155326 0.00697858828838253 30017513 11990015 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} +77 571 582 0.317465208927786 0.317909926549098 0.317494468604562 0.317570763714046 0.00507733964530715 0.00521251192274223 30021734 12021349 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} +78 623 582 0.317486971275023 0.317414576914528 0.317616540779736 0.317479209582666 0.00522612333078286 0.00519228175727376 30023792 12002618 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} +79 676 582 0.317426347593434 0.317100616588778 0.317265583276112 0.317097734035248 0.0048261666838567 0.00431413052891867 30018059 11990746 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} +80 729 582 0.316700809124705 0.315963330216738 0.316685740444038 0.315892271305409 0.00548107340519808 0.00555249411202587 29949447 11947741 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} +81 253 637 0.315826423814522 0.34227937802271 0.315739681086442 0.334630350194553 0.00498116936634032 0.0283408402140837 29866759 16801028 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} +82 307 634 0.316451345794445 0.316421444664427 0.316334782940414 0.316548409246967 0.00416769652219452 0.00409970344514605 29925856 11965064 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} +83 360 634 0.316548176607687 0.317136079930829 0.316472114137484 0.316929884794385 0.00495386293015722 0.00505966640041125 29935013 11992087 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} +84 412 634 0.318496551730701 0.317292266730347 0.31787594415198 0.317158770122835 0.00695716973161687 0.00526690536204102 30119265 11997993 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} +85 465 634 0.317050391941671 0.318806770933124 0.317235065232319 0.31810482948043 0.00527341256309987 0.00732374298470802 29982506 12055262 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} +86 518 634 0.317762416183107 0.317561058235647 0.31773861295491 0.317631799801633 0.00477708830057637 0.0047217621203507 30049840 12008157 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} +87 571 634 0.317467831406948 0.317455012000282 0.317479209582666 0.317463950560769 0.00450327782648278 0.00441156904127954 30021982 12004147 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} +88 623 634 0.317037649653809 0.317831489358551 0.316945143816281 0.317891203173877 0.00438074545749301 0.0039611846979233 29981301 12018383 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} +89 676 634 0.316882553275321 0.317452050110416 0.316929884794385 0.317402914473182 0.0039336383063195 0.00384450930754097 29966634 12004035 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} +90 729 634 0.316101276549892 0.316944033107582 0.315953307392996 0.316990920881971 0.00491076177323693 0.00489429781472549 29892751 11984825 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} +91 253 690 0.315452403298592 0.344871313374981 0.315617608911269 0.33496604867628 0.00609669498954932 0.0290250920219602 29831389 16928255 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} +92 307 686 0.316043211900387 0.316348084999363 0.316182192721447 0.31625848783093 0.0050264593639065 0.00500533547172193 29887260 11962290 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} +93 360 686 0.316065249184956 0.315707920106723 0.31630426489662 0.315709163042649 0.00564919565424752 0.00582214013675897 29889344 11938083 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} +94 412 686 0.316948612256463 0.317336880196447 0.316884107728695 0.317128252079042 0.00529345571854525 0.00520592321490132 29972881 11999680 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} +95 465 686 0.317112273990278 0.317794571517013 0.317143511100938 0.317692835889219 0.00536949146436709 0.00555070738416063 29988358 12016987 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} +96 518 686 0.317017462908971 0.317811734610966 0.316838330663004 0.317982757305257 0.00453884055303183 0.00463452203743732 29979392 12017636 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} +97 570 686 0.317007628612115 0.316928694749349 0.317143511100938 0.316914625772488 0.00393664701762885 0.00408844585754468 29978462 11984245 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} +98 623 686 0.317000131282576 0.31690735327505 0.317158770122835 0.316731517509728 0.00387531487298847 0.00411239597537891 29977753 11983438 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} +99 676 686 0.316714704034457 0.316353453424745 0.316700999465934 0.316411078049897 0.00424675088213373 0.00413233984855931 29950761 11962493 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} +100 728 690 0.315737841121224 0.335463535323971 0.315770199130236 0.329549095902953 0.00461805946245769 0.0192507609393791 29858382 18928743 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv new file mode 100644 index 0000000..f77541c --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 257 214 0.033325238543824 0.035816078986085 0.033325703822385 0.0354467078660258 0.0022099668375184 0.00350926877912906 3151468 2020945 1443 861 0 True 255 217 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.0332102935902432 0.0329615235961468 0.0332188906691081 0.0329900053406577 0.00194047216561033 0.00189830267945854 3140598 1246397 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.0330550808921145 0.0332522648209862 0.0330968184939345 0.0331883726253147 0.00163977973941061 0.00153554832463972 3125920 1257391 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.0332013792759959 0.0332100049995114 0.0331883726253147 0.0330968184939345 0.0018657129760598 0.00160610687567033 3139755 1255793 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0332592324352453 0.0331122626339478 0.0331120775158312 0.0331578545815213 0.00255848504528456 0.00234335693213308 3145226 1252097 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0332322674277355 0.0331361428709889 0.0330968184939345 0.0331883726253147 0.00267142717835983 0.00286550026243735 3142676 1253000 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 571 217 0.0332294969053953 0.0331420666507201 0.0331578545815213 0.0329900053406577 0.00253448323149962 0.00236385838370694 3142414 1253224 1443 577 0 False 571 217 26 {X=0,Y=0,Width=0,Height=0} +8 624 217 0.0330734805442977 0.0331962533679927 0.032974746318761 0.0331425955596246 0.00227425796474272 0.00244703362875204 3127660 1255273 1443 577 0 False 624 217 26 {X=0,Y=0,Width=0,Height=0} +9 677 217 0.0329839461448525 0.0328709743916853 0.0329900053406577 0.0328984512092775 0.00169905346492135 0.00160030029960867 3119193 1242973 1443 577 0 False 677 217 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.0329881548009266 0.0352480747447503 0.0329289692530709 0.0349126420996414 0.0020792475319483 0.00312617016223774 3119591 1988895 1443 861 0 True 729 217 33 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0332395955650705 0.0330106327879357 0.0331425955596246 0.0328526741435874 0.00207027590088008 0.00190985951701056 3143369 1248254 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0332274983224857 0.0332852951820762 0.0332494087129015 0.033325703822385 0.00157636498360637 0.00150712966183172 3142225 1258640 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 360 269 0.033073004691224 0.0331034827461321 0.0330510414282445 0.0330205233844511 0.00160396470735454 0.00153837366330161 3127615 1251765 1443 577 0 False 360 269 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0332514813174003 0.0331730871579728 0.0332188906691081 0.0332646677347982 0.00157231443848122 0.00155407428394146 3144493 1254397 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0331690952885734 0.0331297695186889 0.0332036316472114 0.0331883726253147 0.00187608711903211 0.00185448270378903 3136702 1252759 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 518 269 0.0331988731164744 0.0332715171051123 0.0331883726253147 0.0331883726253147 0.00227785168686216 0.00245388453016121 3139518 1258119 1443 577 0 False 518 269 26 {X=0,Y=0,Width=0,Height=0} +17 571 269 0.0331363142990518 0.0333816359390427 0.0330968184939345 0.0333104448004883 0.00238234113874541 0.00236326024114043 3133602 1262283 1443 577 0 False 571 269 26 {X=0,Y=0,Width=0,Height=0} +18 624 269 0.0332396695866597 0.0331787200378064 0.0331883726253147 0.033173113603418 0.00203074333420244 0.00196060400897722 3143376 1254610 1443 577 0 False 624 269 26 {X=0,Y=0,Width=0,Height=0} +19 677 269 0.0330641855475914 0.0331924187784346 0.0330815594720378 0.0331425955596246 0.00159286572555413 0.00161648932994629 3126781 1255128 1443 577 0 False 677 269 26 {X=0,Y=0,Width=0,Height=0} +20 729 270 0.0330084578654045 0.0330969771666059 0.0330510414282445 0.0330357824063478 0.00183247708615596 0.00171408657110173 3121511 1251519 1443 577 0 False 729 270 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0330103295541611 0.0332394916709409 0.032974746318761 0.033173113603418 0.0021017282396005 0.00238842276533598 3121688 1256908 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 307 321 0.0332447453527792 0.0334035592131369 0.0332494087129015 0.0334019989318685 0.00178006870445808 0.00160159573709201 3143856 1263112 1443 577 0 False 307 321 26 {X=0,Y=0,Width=0,Height=0} +23 360 321 0.0332353023128944 0.0333167123710074 0.0331883726253147 0.0333104448004883 0.00174091222224409 0.00189273471417596 3142963 1259828 1443 577 0 False 360 321 26 {X=0,Y=0,Width=0,Height=0} +24 413 321 0.0332334411986506 0.0333954933523423 0.0332188906691081 0.0332951857785916 0.00164311398023745 0.00162023184902025 3142787 1262807 1443 577 0 False 413 321 26 {X=0,Y=0,Width=0,Height=0} +25 466 321 0.0332808044412531 0.0333847829470249 0.0332341496910048 0.0333562218661784 0.00170075315842894 0.00169223877957402 3147266 1262402 1443 577 0 False 466 321 26 {X=0,Y=0,Width=0,Height=0} +26 518 321 0.0333908745444566 0.0331993739305297 0.0333409628442817 0.033173113603418 0.00200101872287717 0.00192486948104545 3157675 1255391 1443 577 0 False 518 321 26 {X=0,Y=0,Width=0,Height=0} +27 571 321 0.0336362984108464 0.0333762939591066 0.033325703822385 0.0333867399099718 0.00422289443122936 0.00208599138707373 3180884 1262081 1443 577 0 False 571 321 26 {X=0,Y=0,Width=0,Height=0} +28 624 322 0.0332973218301669 0.0330543206634527 0.0332951857785916 0.032974746318761 0.00198672456984611 0.00207193261996191 3148828 1249906 1443 577 0 False 624 322 26 {X=0,Y=0,Width=0,Height=0} +29 676 322 0.0331831065179658 0.0332525821663289 0.0331425955596246 0.0332188906691081 0.0016571619030131 0.00165232587940951 3138027 1257403 1443 577 0 False 676 322 26 {X=0,Y=0,Width=0,Height=0} +30 729 322 0.0331521549191497 0.0330604824521909 0.0331273365377279 0.0330663004501411 0.00167891282114379 0.00164898952272536 3135100 1250139 1443 577 0 False 729 322 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0333229967471213 0.0330848651526914 0.0332188906691081 0.0330357824063478 0.00256602056978332 0.00295270859131845 3151256 1251061 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 373 0.0333057602913405 0.033471814907271 0.0333714808880751 0.0334019989318685 0.00197575654747031 0.00191420831520127 3149626 1265693 1443 577 0 False 307 373 26 {X=0,Y=0,Width=0,Height=0} +33 360 373 0.0331741076076164 0.0333041772299692 0.0331273365377279 0.0331578545815213 0.00203312908681692 0.00195499062301626 3137176 1259354 1443 577 0 False 360 373 26 {X=0,Y=0,Width=0,Height=0} +34 413 373 0.0331724051110638 0.0333523608311751 0.0331273365377279 0.033325703822385 0.00166500299175994 0.00170308668419689 3137015 1261176 1443 577 0 False 413 373 26 {X=0,Y=0,Width=0,Height=0} +35 466 373 0.0332277521107917 0.03331353891758 0.0332036316472114 0.0332646677347982 0.00168442256655389 0.00158433396895787 3142249 1259708 1443 577 0 False 466 373 26 {X=0,Y=0,Width=0,Height=0} +36 518 373 0.0332466170415358 0.0332569721102368 0.0331273365377279 0.0332646677347982 0.00195751678031053 0.00186523340158019 3144033 1257569 1443 577 0 False 518 373 26 {X=0,Y=0,Width=0,Height=0} +37 571 374 0.0333526899789202 0.0334351615201847 0.0334019989318685 0.0333714808880751 0.00202970255947441 0.00208549049648972 3154064 1264307 1443 577 0 False 571 374 26 {X=0,Y=0,Width=0,Height=0} +38 624 374 0.033303634814278 0.0330870336792001 0.0332646677347982 0.0330968184939345 0.00182958089748196 0.00172988872063746 3149425 1251143 1443 577 0 False 624 374 26 {X=0,Y=0,Width=0,Height=0} +39 676 374 0.0330323033916534 0.0334423546812868 0.0330357824063478 0.0334019989318685 0.00172439893654408 0.00162483450837379 3123766 1264579 1443 577 0 False 676 374 26 {X=0,Y=0,Width=0,Height=0} +40 729 374 0.0332487953911621 0.033181100127877 0.0332036316472114 0.0331883726253147 0.00161940074636761 0.00150367044558609 3144239 1254700 1443 577 0 False 729 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 425 0.0332777166835304 0.0331497358298363 0.0332341496910048 0.0330968184939345 0.00243433457344872 0.00251053069918278 3146974 1253514 1443 577 0 False 255 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 425 0.0332907656322625 0.0334182628806838 0.0332799267566949 0.0334782940413519 0.00207635499195458 0.0018633506129675 3148208 1263668 1443 577 0 False 307 425 26 {X=0,Y=0,Width=0,Height=0} +43 360 425 0.0335151885163329 0.0333386620905468 0.0334630350194553 0.0333867399099718 0.00193717558179864 0.00189776597484847 3169431 1260658 1443 577 0 False 360 425 26 {X=0,Y=0,Width=0,Height=0} +44 413 425 0.0333066062523604 0.0333274227763248 0.0332341496910048 0.033325703822385 0.00190690633828635 0.00205543125695423 3149706 1260233 1443 577 0 False 413 425 26 {X=0,Y=0,Width=0,Height=0} +45 465 425 0.0332225494505192 0.0331743300938985 0.0332036316472114 0.0332188906691081 0.00214238227076936 0.00234763547692023 3141757 1254444 1443 577 0 False 465 425 26 {X=0,Y=0,Width=0,Height=0} +46 518 426 0.033411283354062 0.0331641485974856 0.0334019989318685 0.0331273365377279 0.0020283277804739 0.00183260743543987 3159605 1254059 1443 577 0 False 518 426 26 {X=0,Y=0,Width=0,Height=0} +47 571 426 0.0333666589102616 0.0333706081883825 0.0333104448004883 0.0332341496910048 0.00211737894309278 0.0021635078860002 3155385 1261866 1443 577 0 False 571 426 26 {X=0,Y=0,Width=0,Height=0} +48 624 426 0.0331261627668128 0.0333143851718273 0.0330357824063478 0.0332799267566949 0.00204761795169412 0.00204553592946549 3132642 1259740 1443 577 0 False 624 426 26 {X=0,Y=0,Width=0,Height=0} +49 676 426 0.0330058142372173 0.0333022202670223 0.0329594872968643 0.033325703822385 0.00169935755841305 0.00159362295322907 3121261 1259280 1443 577 0 False 676 426 26 {X=0,Y=0,Width=0,Height=0} +50 729 426 0.0332357887404809 0.0343191534178292 0.0332188906691081 0.0342259861142901 0.00169182812794776 0.00206796243083782 3143009 1297734 1443 577 0 False 729 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 477 0.0332985907716967 0.0333271583218725 0.0332646677347982 0.0332341496910048 0.00191979490465129 0.00201910712495438 3148948 1260223 1443 577 0 False 255 477 26 {X=0,Y=0,Width=0,Height=0} +52 307 477 0.0333983718739956 0.0333852325195938 0.0333714808880751 0.0334172579537652 0.00174392136564894 0.00182778845928206 3158384 1262419 1443 577 0 False 307 477 26 {X=0,Y=0,Width=0,Height=0} +53 360 477 0.0335031229972864 0.0335144978558694 0.033524071107042 0.0335545891508354 0.00161430381054092 0.00146770745591738 3168290 1267307 1443 577 0 False 360 477 26 {X=0,Y=0,Width=0,Height=0} +54 413 478 0.0333325138085953 0.0333124810997709 0.0333714808880751 0.0332494087129015 0.00180031205873102 0.00172662709163739 3152156 1259668 1443 577 0 False 413 478 26 {X=0,Y=0,Width=0,Height=0} +55 465 478 0.0331984818595027 0.0331531208468255 0.033173113603418 0.0332341496910048 0.00243905562331313 0.00275398687666677 3139481 1253642 1443 577 0 False 465 478 26 {X=0,Y=0,Width=0,Height=0} +56 518 478 0.0333433209606247 0.0330812950175856 0.0333104448004883 0.0329137102311742 0.00234978838118778 0.00245384696093284 3153178 1250926 1443 577 0 False 518 478 26 {X=0,Y=0,Width=0,Height=0} +57 571 478 0.0333563487603314 0.0334923630182134 0.0333409628442817 0.0333409628442817 0.00208947557709308 0.00206601962742148 3154410 1266470 1443 577 0 False 571 478 26 {X=0,Y=0,Width=0,Height=0} +58 623 478 0.0331043898450628 0.0332795829659069 0.0330052643625544 0.0332494087129015 0.00212919934768765 0.00218724180749109 3130583 1258424 1443 577 0 False 623 478 26 {X=0,Y=0,Width=0,Height=0} +59 676 478 0.0332937053468067 0.0331087189442872 0.0332951857785916 0.0330968184939345 0.00199773107527507 0.00185493913718689 3148486 1251963 1443 577 0 False 676 478 26 {X=0,Y=0,Width=0,Height=0} +60 729 478 0.0332715517425977 0.0330720126663104 0.0332646677347982 0.0330663004501411 0.00195179365742348 0.00205921776201836 3146391 1250575 1443 577 0 False 729 478 26 {X=0,Y=0,Width=0,Height=0} +61 254 529 0.033348026618798 0.0333947528798759 0.0333562218661784 0.0332799267566949 0.00184330548126004 0.00201751365290227 3153623 1262779 1443 577 0 False 254 529 26 {X=0,Y=0,Width=0,Height=0} +62 307 529 0.0334146460491162 0.0330983523297578 0.0334172579537652 0.0330205233844511 0.00149592414273392 0.00154903508518557 3159923 1251571 1443 577 0 False 307 529 26 {X=0,Y=0,Width=0,Height=0} +63 360 530 0.033425939628732 0.0334070500119071 0.0334477759975586 0.0334325169756619 0.00155188201804379 0.00159278767721671 3160991 1263244 1443 577 0 False 360 530 26 {X=0,Y=0,Width=0,Height=0} +64 413 530 0.0331920631302641 0.0332041076652255 0.0331578545815213 0.0331120775158312 0.00168622076406639 0.00161880964174268 3138874 1255570 1443 577 0 False 413 530 26 {X=0,Y=0,Width=0,Height=0} +65 465 530 0.0332859753779873 0.0332156907702355 0.0332646677347982 0.0331883726253147 0.00233017444439928 0.00226205095186895 3147755 1256008 1443 577 0 False 465 530 26 {X=0,Y=0,Width=0,Height=0} +66 518 530 0.0332816715512985 0.0332663073524023 0.0333714808880751 0.0331425955596246 0.00252795494720949 0.00256894975807041 3147348 1257922 1443 577 0 False 518 530 26 {X=0,Y=0,Width=0,Height=0} +67 571 530 0.0331889647980287 0.0335500934251466 0.0331425955596246 0.0335088120851453 0.00221233831730653 0.00224146596895044 3138581 1268653 1443 577 0 False 571 530 26 {X=0,Y=0,Width=0,Height=0} +68 623 530 0.0333715126116133 0.0331163881234034 0.0332951857785916 0.0330968184939345 0.0021429352468022 0.00203337792756495 3155844 1252253 1443 577 0 False 623 530 26 {X=0,Y=0,Width=0,Height=0} +69 676 530 0.0333486505150501 0.0330537124182125 0.0334019989318685 0.0331273365377279 0.00197809372647176 0.00196088711596234 3153682 1249883 1443 577 0 False 676 530 26 {X=0,Y=0,Width=0,Height=0} +70 729 530 0.033352615957331 0.0332176477331824 0.033325703822385 0.0332188906691081 0.00209468539841795 0.00226372200488196 3154057 1256082 1443 577 0 False 729 530 26 {X=0,Y=0,Width=0,Height=0} +71 254 581 0.0333223728508691 0.033293493270097 0.0333104448004883 0.0333104448004883 0.0020204373201607 0.00205675123585904 3151197 1258950 1443 577 0 False 254 581 26 {X=0,Y=0,Width=0,Height=0} +72 307 582 0.0333804797984244 0.0334360871107677 0.033325703822385 0.0334172579537652 0.00154579364043747 0.00145527320531514 3156692 1264342 1443 577 0 False 307 582 26 {X=0,Y=0,Width=0,Height=0} +73 360 582 0.0331900116747908 0.0333319185020136 0.0331883726253147 0.0333562218661784 0.00171572324206449 0.00181684139115379 3138680 1260403 1443 577 0 False 360 582 26 {X=0,Y=0,Width=0,Height=0} +74 412 582 0.0334461475225952 0.0333857878739436 0.0334477759975586 0.0334019989318685 0.00187565555628232 0.00185895682399482 3162902 1262440 1443 577 0 False 412 582 26 {X=0,Y=0,Width=0,Height=0} +75 465 582 0.0332702405030169 0.0332223021315426 0.0334172579537652 0.0332341496910048 0.00233101069916038 0.00242928486397759 3146267 1256258 1443 577 0 False 465 582 26 {X=0,Y=0,Width=0,Height=0} +76 518 582 0.0333017419764959 0.033173695403213 0.0333867399099718 0.0330968184939345 0.00247248863740157 0.00264564497524338 3149246 1254420 1443 577 0 False 518 582 26 {X=0,Y=0,Width=0,Height=0} +77 571 582 0.033286112846653 0.0336104948220479 0.0332799267566949 0.0335393301289387 0.00200631646550194 0.00189776096630906 3147768 1270937 1443 577 0 False 571 582 26 {X=0,Y=0,Width=0,Height=0} +78 623 582 0.0332899831183191 0.0328654208481874 0.0332646677347982 0.0328831921873808 0.00204448749855717 0.00206651175828822 3148134 1242763 1443 577 0 False 623 582 26 {X=0,Y=0,Width=0,Height=0} +79 676 582 0.0332360954013506 0.0333666413715983 0.033173113603418 0.0332188906691081 0.00169557762361072 0.00182257065542133 3143038 1261716 1443 577 0 False 676 582 26 {X=0,Y=0,Width=0,Height=0} +80 729 582 0.0331414323632222 0.0331434682593172 0.0330815594720378 0.0331883726253147 0.00208930188308555 0.00214664554558134 3134086 1253277 1443 577 0 False 729 582 26 {X=0,Y=0,Width=0,Height=0} +81 253 637 0.0331948759506553 0.0359964604773507 0.0332188906691081 0.0355230029755093 0.00201647996859439 0.00354431585896368 3139140 1766912 1443 749 0 True 254 634 31 {X=0,Y=0,Width=0,Height=0} +82 307 634 0.0331668640663834 0.032936056632392 0.0330968184939345 0.0329900053406577 0.0017036377527216 0.0016877333968821 3136491 1245434 1443 577 0 False 307 634 26 {X=0,Y=0,Width=0,Height=0} +83 360 634 0.0332057676987867 0.0334460570436187 0.0331425955596246 0.0334019989318685 0.00195040885761641 0.00204999116841802 3140170 1264719 1443 577 0 False 360 634 26 {X=0,Y=0,Width=0,Height=0} +84 412 634 0.033431628716591 0.032957715452034 0.0333714808880751 0.0328374151216907 0.00203997740653204 0.00193357287828557 3161529 1246253 1443 577 0 False 412 634 26 {X=0,Y=0,Width=0,Height=0} +85 465 634 0.0333702330955707 0.0334229966153797 0.0334172579537652 0.0334172579537652 0.00206912484582779 0.00203378932406391 3155723 1263847 1443 577 0 False 465 634 26 {X=0,Y=0,Width=0,Height=0} +86 518 634 0.0333831551501499 0.0335853187581906 0.0333714808880751 0.0335545891508354 0.00177554074151698 0.00167732670803622 3156945 1269985 1443 577 0 False 518 634 26 {X=0,Y=0,Width=0,Height=0} +87 571 634 0.0333058977600062 0.0334263816323689 0.0332951857785916 0.0334172579537652 0.00167934968003896 0.00171381166936786 3149639 1263975 1443 577 0 False 571 634 26 {X=0,Y=0,Width=0,Height=0} +88 623 634 0.0332219995758563 0.0332315844828177 0.0331883726253147 0.0332799267566949 0.00170229832238584 0.00157602156750412 3141705 1256609 1443 577 0 False 623 634 26 {X=0,Y=0,Width=0,Height=0} +89 676 634 0.0332307764214379 0.0332457327960148 0.0332188906691081 0.0332188906691081 0.00153623438090441 0.00147627168415223 3142535 1257144 1443 577 0 False 676 634 26 {X=0,Y=0,Width=0,Height=0} +90 729 634 0.0331490988849652 0.0330636823510636 0.033173113603418 0.0330510414282445 0.00191344900686627 0.00196072645845592 3134811 1250260 1443 577 0 False 729 634 26 {X=0,Y=0,Width=0,Height=0} +91 253 690 0.0331922428969808 0.0363545279925127 0.0331883726253147 0.0360112916762036 0.00235797236003186 0.00408074370231066 3138891 1784488 1443 749 0 True 254 686 31 {X=0,Y=0,Width=0,Height=0} +92 307 686 0.0331318624291845 0.0333359117642431 0.0331120775158312 0.0332799267566949 0.00193218796471247 0.00190351350437154 3133181 1260554 1443 577 0 False 307 686 26 {X=0,Y=0,Width=0,Height=0} +93 360 686 0.0332384640922064 0.0332482715587567 0.0332188906691081 0.0331883726253147 0.00213855139718242 0.00210242290330983 3143262 1257240 1443 577 0 False 360 686 26 {X=0,Y=0,Width=0,Height=0} +94 412 686 0.0333708569918229 0.0331434947047624 0.0333409628442817 0.0331120775158312 0.00205319789982661 0.00187709585953886 3155782 1253278 1443 577 0 False 412 686 26 {X=0,Y=0,Width=0,Height=0} +95 465 686 0.0330825851997745 0.0333209436422439 0.0330968184939345 0.033325703822385 0.00195193209228344 0.00199246577910651 3128521 1259988 1443 577 0 False 465 686 26 {X=0,Y=0,Width=0,Height=0} +96 518 686 0.0334449631771673 0.0334593591025685 0.0334172579537652 0.0334325169756619 0.00173820408930495 0.00172543297562537 3162790 1265222 1443 577 0 False 518 686 26 {X=0,Y=0,Width=0,Height=0} +97 570 686 0.0333510826529824 0.0334371449285768 0.0333562218661784 0.0334172579537652 0.00152298921426231 0.00149902808785626 3153912 1264382 1443 577 0 False 570 686 26 {X=0,Y=0,Width=0,Height=0} +98 623 686 0.033139211715545 0.0331820257184599 0.0331425955596246 0.0331273365377279 0.00164464713494871 0.00157757799494995 3133876 1254735 1443 577 0 False 623 686 26 {X=0,Y=0,Width=0,Height=0} +99 676 686 0.033239447521892 0.0330537917545482 0.0332188906691081 0.0330510414282445 0.0016249617284582 0.00164592568197193 3143355 1249886 1443 577 0 False 676 686 26 {X=0,Y=0,Width=0,Height=0} +100 728 690 0.0332290527758598 0.0352473126797776 0.0332494087129015 0.0349126420996414 0.00184342698826779 0.00283966237230699 3142372 1988852 1443 861 0 True 729 686 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv new file mode 100644 index 0000000..b73308b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 111 226 0.234603658192492 0.925696024510845 0.234210727092393 1 0.00711305199990202 0.191020334593711 20786663 52232986 1352 861 79 True 106 226 32 {X=0,Y=0,Width=0,Height=0} +2 159 226 0.232619071158959 0.231576998756667 0.231769283588922 0.231540398260472 0.00772757768025186 0.00595664775082165 20610822 8756782 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} +3 212 226 0.23140204001385 0.231734402046666 0.231494621194781 0.231586175326162 0.00555187452723849 0.00608226347399097 20502989 8762734 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} +4 266 227 0.231708653806652 0.231764417627 0.231815060654612 0.231799801632715 0.00448778985636768 0.00403753699418027 20530156 8763869 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} +5 319 227 0.233330895501433 0.231451779573512 0.232028686961166 0.231097886625467 0.0103579857793656 0.0037551505888424 20673892 8752047 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} +6 372 227 0.234567666313181 0.232209626697417 0.232883192187381 0.232135500114443 0.0198769383147062 0.00378960909964103 20783474 8780704 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} +7 426 227 0.233492954891532 0.232250167564952 0.232928969253071 0.232272831311513 0.00854182173505274 0.00444207941868454 20688251 8782237 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} +8 479 228 0.235170691120829 0.234153790048817 0.233615625238422 0.234149691004807 0.0199762014252984 0.00608151410517176 20836904 8854220 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} +9 532 228 0.237093835761459 0.277675006370047 0.234287022201877 0.236636911573968 0.0201012124409971 0.153896481183008 21007301 10499918 1352 577 2 False 532 228 27 {X=0,Y=0,Width=0,Height=0} +10 586 230 0.236531633351888 0.935162909553433 0.236438544289311 1 0.00533257691466061 0.156956448225774 20957488 52767161 1352 861 77 True 586 228 32 {X=0,Y=0,Width=0,Height=0} +11 105 278 0.22999769083145 0.229406383057778 0.229861905851835 0.229114213778897 0.00436293161839153 0.00373493927533042 20378559 8674703 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} +12 159 279 0.230613751268011 0.230515108348973 0.230548561837186 0.230548561837186 0.00480292263900829 0.0041053009477313 20433144 8716628 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} +13 212 279 0.231552102110846 0.231342321875712 0.231372549019608 0.231357289997711 0.00512577828850389 0.00542930390442186 20516285 8747908 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} +14 265 279 0.232229774234193 0.231681246701757 0.232272831311513 0.231387808041505 0.0040992434716144 0.00465301421973547 20576329 8760724 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} +15 319 280 0.233167109313737 0.232354627073604 0.232776379034104 0.23247119859617 0.00494064691546325 0.00383680937419256 20659380 8786187 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} +16 372 280 0.244283874457539 0.233904964854664 0.233875028610666 0.233707179369802 0.0673774941517341 0.00380726867645285 21388216 8844811 1336 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} +17 425 280 0.234347674556664 0.233588280648056 0.233829251544976 0.233447775997559 0.00766659477122873 0.00345381610399966 20763982 8832836 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} +18 479 280 0.237599685880845 0.234587786250458 0.23408865491722 0.234256504158083 0.0315834288202366 0.00531840835204856 21052121 8870631 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} +19 532 281 0.234035519210793 0.23349431998116 0.233737697413596 0.233478294041352 0.0061497568534699 0.00519763248315669 20736324 8829283 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} +20 585 281 0.233870051370536 0.233551944606313 0.233844510566873 0.233188372625315 0.00461385576505137 0.00437250419157988 20721663 8831462 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} +21 105 331 0.230095204107476 0.229292165179838 0.230121309224079 0.229221026932174 0.00461134573718965 0.00427215857546546 20387199 8670384 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} +22 158 331 0.230794749000376 0.230644558803365 0.230731670099947 0.23071641107805 0.0044022227074428 0.00420102971688194 20449181 8721523 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} +23 212 332 0.231394162205209 0.231518712995384 0.231311512932021 0.231525139238575 0.00485629808804723 0.00455839108490572 20502291 8754578 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} +24 265 332 0.2325397287596 0.232293458758791 0.232486457618067 0.232257572289616 0.0045953529308459 0.00426604432720247 20603792 8783874 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} +25 318 332 0.233080983872839 0.234927636667086 0.233112077515831 0.233539330128939 0.00377989138793263 0.00917590639848853 20651749 8883482 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} +26 372 333 0.240758822581366 0.233916865305017 0.234851606012055 0.234103913939117 0.0489658750372241 0.00419743481500342 21332031 8845261 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} +27 425 333 0.235914286281823 0.236472896922663 0.235019455252918 0.23598077363241 0.00700089195747104 0.00482965741149193 20902789 8941914 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} +28 478 333 0.234634909843107 0.234418244501099 0.234622720683604 0.234424353398947 0.00475468547314052 0.00459842107387462 20789432 8864220 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} +29 532 334 0.234892292975026 0.235540774314703 0.235004196231022 0.235172045471885 0.00457877041145806 0.00613410776957499 20812237 8906667 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} +30 585 334 0.234639785506909 0.234439268630056 0.234470130464637 0.234470130464637 0.00486949889896976 0.00450497810665654 20789864 8865015 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} +31 105 384 0.230179783330918 0.230499241081836 0.230243381399252 0.230411230640116 0.00458843889942224 0.00425424357137714 20394693 8716028 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} +32 158 384 0.230820854116979 0.231085272148093 0.230685893034257 0.230655374990463 0.0046086274507593 0.00460050100330389 20451494 8738188 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} +33 211 384 0.231679760984126 0.232100274781399 0.231677729457542 0.231784542610819 0.00493352790279599 0.00641388425030869 20527596 8776569 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} +34 265 385 0.233108906077109 0.233727912598861 0.233112077515831 0.233447775997559 0.00504792297970955 0.00576153951882059 20654223 8838116 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} +35 318 385 0.233536395701651 0.233574264562085 0.233447775997559 0.233676661326009 0.00426260293437327 0.00427379913214919 20692100 8832306 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} +36 371 385 0.234716791650697 0.234740640923877 0.234683756771191 0.234439612420844 0.0043883753719003 0.00427562905171987 20796687 8876411 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} +37 425 386 0.235608767256125 0.235271506791389 0.235019455252918 0.235370412756542 0.00764049595051434 0.00404188998754213 20875719 8896485 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} +38 478 386 0.234708778406949 0.235004513576364 0.234454871442741 0.234851606012055 0.00474660421978801 0.00396392175550327 20795977 8886389 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} +39 531 386 0.234871368251212 0.234915683325843 0.234775310902571 0.234912642099641 0.00415135777992854 0.00392423907243502 20810383 8883030 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} +40 585 387 0.236045500326624 0.234639169750536 0.235126268406195 0.234668497749294 0.0101214169698474 0.00385628411371623 20914415 8872574 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} +41 104 436 0.230851846183642 0.231433717334421 0.23085374227512 0.230869001297017 0.00520710634013741 0.00929706817898906 20454240 8751364 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} +42 158 437 0.231188221840897 0.231208983940871 0.231006332494087 0.231250476844434 0.00531061691933948 0.0048152176936892 20484044 8742866 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} +43 211 437 0.239236863673515 0.232377713947288 0.232547493705653 0.2323338673991 0.0532175404571884 0.00591705769397562 21181502 8787060 1351 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} +44 264 437 0.233446026627445 0.23483084633755 0.233508812085145 0.234500648508431 0.0055567656678328 0.00667227335979933 20684093 8879822 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} +45 318 438 0.234324853741372 0.23453645564127 0.234454871442741 0.234454871442741 0.00436404311669612 0.00447626581924002 20761960 8868690 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} +46 371 438 0.238900844799044 0.236593779052801 0.23566033417258 0.236362249179828 0.0239803922734404 0.00650632502697465 21167408 8946485 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} +47 424 438 0.235671722007708 0.236245571875481 0.235538261997406 0.236392767223621 0.00512780652328128 0.00498112012732609 20881297 8933318 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} +48 478 439 0.240508775517667 0.235491480004797 0.23584344243534 0.235523002975509 0.0429725417767888 0.0052570647811675 21309876 8904803 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} +49 531 439 0.236522705921178 0.234971377433493 0.235767147325856 0.235004196231022 0.00873231800488305 0.00514713525983374 20956697 8885136 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} +50 584 439 0.235371530096163 0.236810869712679 0.235492484931716 0.235767147325856 0.00465942631482559 0.00884941017477297 20854699 8954694 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} +51 104 489 0.231013420264613 0.24011943291974 0.23080796520943 0.231754024567025 0.00517771013475958 0.0440416622026635 20468556 9079803 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} +52 157 489 0.231694941002211 0.231885617102481 0.231723506523232 0.231784542610819 0.00577300283209667 0.00531624809699837 20528941 8768452 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} +53 211 490 0.23299910206525 0.232462762499142 0.232867933165484 0.232349126420996 0.0060646431363476 0.00631910617507747 20644494 8790276 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} +54 264 490 0.233643062133563 0.23329092806191 0.233630884260319 0.233218890669108 0.00471338982812932 0.00465536515662678 20701551 8821592 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} +55 317 490 0.235298677295614 0.235016493363053 0.235202563515679 0.234882124055848 0.00409218684994006 0.00422171930243714 20848244 8886842 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} +56 371 491 0.236264927770201 0.235979134014806 0.236331731136034 0.236163881895171 0.00409422399816521 0.0041666502005607 20933857 8923243 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} +57 424 491 0.236954834198086 0.236401176875204 0.236591134508278 0.236606393530175 0.00728224680797303 0.00500565392112278 20994985 8939202 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} +58 477 491 0.235612807736776 0.236016924556037 0.235385671778439 0.236209658960861 0.00601002713054644 0.00652068598594122 20876077 8924672 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} +59 531 492 0.236060127318028 0.235694448796924 0.236255436026551 0.235568780041199 0.00523517968367537 0.00460288207296761 20915711 8912478 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} +60 584 492 0.236476940141746 0.236740101701249 0.235812924391546 0.236789501792935 0.00768422760158598 0.00544957143500243 20952642 8952018 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} +61 104 542 0.231398733140022 0.232383373272567 0.231387808041505 0.231631952391852 0.00396828622480116 0.00587158704050677 20502696 8787274 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} +62 157 542 0.23216156008601 0.231872341488976 0.232120241092546 0.231906614785992 0.00462768769104992 0.00458037444791323 20570285 8767950 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} +63 210 543 0.232620335219944 0.232616807217597 0.23260852979324 0.23256275272755 0.00550774990336422 0.00552056258619814 20610934 8796101 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} +64 264 543 0.233508699222557 0.23401799268757 0.233432516975662 0.233615625238422 0.00423555100396673 0.00519244637708819 20689646 8849085 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} +65 317 543 0.235091360007729 0.234440061993413 0.235233081559472 0.234332799267567 0.00374378366756228 0.00366062616494745 20829875 8865045 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} +66 370 543 0.236176172631003 0.236204845889829 0.23611810482948 0.236240177004654 0.00386188963766013 0.00392858899058307 20925993 8931778 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} +67 424 544 0.236202909778099 0.235751412285946 0.236209658960861 0.235858701457237 0.00435143604493693 0.00377741632565149 20928362 8914632 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} +68 477 544 0.236225064704122 0.235962023811743 0.236255436026551 0.236057068741894 0.00588225443627097 0.00603350676256227 20930325 8922596 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} +69 530 544 0.235722216729576 0.235781533648061 0.23579766536965 0.235919737544823 0.00518869868741856 0.00529152958242689 20885771 8915771 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} +70 584 545 0.235189471455471 0.234378020978907 0.235156786449989 0.234287022201877 0.00443571198397334 0.00402359322240413 20838568 8862699 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} +71 103 595 0.231761665364232 0.232215867822491 0.231525139238575 0.2323338673991 0.0042180726801645 0.00405636727564215 20534853 8780940 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} +72 157 595 0.232275032131979 0.232693287445197 0.23228809033341 0.232593270771344 0.00471235245837634 0.0046815274822868 20580339 8798993 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} +73 210 595 0.2325918035577 0.232273227993191 0.232547493705653 0.232349126420996 0.00489589348913834 0.00492364423442663 20608406 8783109 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} +74 263 596 0.233288989622511 0.233863445505656 0.233432516975662 0.233936064698253 0.00414207166977837 0.00426111713862184 20670179 8843241 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} +75 317 596 0.234540534147027 0.233987025071208 0.234531166552224 0.233981841763943 0.0035938645475403 0.00341948544569922 20781070 8847914 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} +76 370 596 0.235383911122066 0.235236969039921 0.235156786449989 0.235049973296712 0.00399457118741768 0.00394910990405012 20855796 8895179 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} +77 423 596 0.235729485080243 0.235356052879783 0.23575188830396 0.235477225909819 0.00408142698347073 0.00405489723158234 20886415 8899682 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} +78 477 597 0.235735105637125 0.24143274017522 0.235446707866026 0.236896314946212 0.00555526869476304 0.023389612048453 20886913 9129464 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} +79 530 597 0.235258791657017 0.234725170338418 0.235126268406195 0.234531166552224 0.00524489373931588 0.00518563139586669 20844710 8875826 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} +80 583 597 0.234137682425444 0.234514320803614 0.234241245136187 0.234393835355154 0.0040466560195045 0.00425004548947902 20745376 8867853 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} +81 104 652 0.236825076080671 0.97665178148062 0.236194399938964 1 0.00659388016666606 0.0917531124900757 20983488 47939651 1352 749 89 True 103 647 31 {X=0,Y=0,Width=0,Height=0} +82 156 648 0.233703691915833 0.232960042651214 0.233585107194629 0.232913710231174 0.00456495675457388 0.00393053979671099 20706923 8809080 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} +83 210 648 0.232944194416191 0.232970673720196 0.232883192187381 0.232822156099794 0.00463318944466944 0.00423417485324543 20639629 8809482 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} +84 263 648 0.233469242461795 0.233375950168319 0.233600366216526 0.233264667734798 0.00437879051476778 0.00487300987036639 20686150 8824807 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} +85 316 649 0.23402952620737 0.23354348206384 0.23413443198291 0.233585107194629 0.00349423079650586 0.00340219422390485 20735793 8831142 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} +86 370 649 0.234197161009317 0.234068953060525 0.234012359807736 0.233844510566873 0.00403471287200442 0.00408906750468499 20750646 8851012 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} +87 423 649 0.235005087845467 0.234855308374387 0.235004196231022 0.234637979705501 0.0041759268893424 0.00417268037093318 20822231 8880747 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} +88 476 650 0.23485644781708 0.234673495938442 0.234866865033951 0.234531166552224 0.00488347701117617 0.00470448286745318 20809061 8873872 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} +89 530 650 0.234387955214319 0.234240213763823 0.234287022201877 0.234485389486534 0.00386535697119219 0.00408437731721226 20767551 8857488 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} +90 583 650 0.234000938113831 0.23384530393023 0.233905546654459 0.23399710078584 0.00376177098673204 0.00337681983151724 20733260 8842555 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} +91 105 706 0.236980995745983 0.919188149145331 0.236652170595865 1 0.00642085790116291 0.194042271941174 20997303 51865775 1352 861 77 True 103 700 32 {X=0,Y=0,Width=0,Height=0} +92 156 700 0.234188876895358 0.233037845151076 0.234058136873426 0.23270008392462 0.00475350766101571 0.00444208256780096 20749912 8812022 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} +93 209 701 0.232609331117615 0.232627517622914 0.232532234683757 0.23237964446479 0.00516161164370583 0.00519459460725893 20609959 8796506 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} +94 263 701 0.233181792736435 0.232372900876257 0.232867933165484 0.232410162508583 0.00604228471646792 0.00505032474091481 20660681 8786878 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} +95 316 701 0.233293921717606 0.233398984151112 0.233249408712902 0.233249408712902 0.00393322955390282 0.00423094915394316 20670616 8825678 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} +96 369 702 0.233242433804964 0.233934451526094 0.233264667734798 0.233707179369802 0.0044366299640502 0.00473995106363388 20666054 8845926 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} +97 423 702 0.233694674195053 0.2336872395041 0.233829251544976 0.233737697413596 0.00423601958469319 0.00396142801226203 20706124 8836578 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} +98 476 702 0.233982823668458 0.233679596770429 0.234210727092393 0.233676661326009 0.00473582865143478 0.00465140117594858 20731655 8836289 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} +99 529 703 0.234087356997458 0.233717598875222 0.234027618829633 0.233920805676356 0.00455375763238936 0.00483032321489112 20740917 8837726 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} +100 583 708 0.236997913847924 0.965647520872417 0.236896314946212 1 0.00464802278394771 0.103110047201103 20998802 47399499 1352 749 84 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv new file mode 100644 index 0000000..4ebf23a --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 111 226 0.0237731046647011 0.146603879601887 0.0237888151369497 0.162813763637751 0.0021781315383363 0.0419460810409674 2106376 8272217 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} +2 159 226 0.0235488579886171 0.0234681905590025 0.0235294117647059 0.0233920805676356 0.0022599536744027 0.00233707604332647 2086507 887419 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} +3 212 226 0.0234316276184685 0.0235318711911121 0.0234073395895323 0.0235446707866026 0.00224010153128437 0.00213211598441326 2076120 889827 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} +4 266 227 0.0233260898124359 0.0232530039711803 0.0233005264362554 0.0232547493705653 0.00183602340877603 0.00166552037056257 2066769 879282 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} +5 319 227 0.0235351226116583 0.0232726793824301 0.0234836346990158 0.023224231326772 0.00194195283762362 0.00163777887744858 2085290 880026 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} +6 372 227 0.0236205257319929 0.0234149294323128 0.0234683756771191 0.0233310444800488 0.00252404417744753 0.00155173548235024 2092857 885405 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} +7 426 227 0.0234815354548791 0.0236244831403014 0.0234378576333257 0.0235446707866026 0.00195604240946453 0.00175459725503593 2080542 893329 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} +8 479 228 0.0237574393374876 0.0236747294862351 0.023575188830396 0.0236209658960861 0.00311561315459301 0.00243344569186406 2104988 895229 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} +9 532 228 0.0239144199111275 0.0391429613001321 0.0237125200274662 0.0242923628595407 0.00298359448390759 0.0877945153056139 2118897 1480140 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} +10 586 230 0.0238430794692569 0.144316922618593 0.0238345922026398 0.159349965667201 0.0019033593760157 0.0377339815046066 2112576 8143174 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} +11 105 278 0.0232354272955009 0.0233211538835335 0.023224231326772 0.0232394903486687 0.00168301764617769 0.00151879662416111 2058736 881859 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} +12 159 279 0.0232629431944537 0.0232786560530517 0.0232394903486687 0.023270008392462 0.00181408773424757 0.0016989905663141 2061174 880252 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} +13 212 279 0.0236060680344709 0.0233407499584476 0.023575188830396 0.0233615625238422 0.00198441635199288 0.00199681254255945 2091576 882600 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} +14 265 279 0.023294307707657 0.0233519363817791 0.0232852674143587 0.0233157854581521 0.00170787804751676 0.00183688508184064 2063953 883023 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} +15 319 280 0.0235184979524469 0.023270114174243 0.0234836346990158 0.0233310444800488 0.00143119039536348 0.00134035662619859 2083817 879929 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} +16 372 280 0.0297138188501289 0.0234525877463178 0.0236057068741894 0.023422598611429 0.045416696703243 0.00148525215503351 2632743 886829 1352 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} +17 425 280 0.0237019673754889 0.02372280730566 0.0236209658960861 0.0236820019836728 0.0016853428541429 0.00150129123185638 2100073 897047 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} +18 479 280 0.0238722205894768 0.0238093896933373 0.0235446707866026 0.0238193331807431 0.00383621683621133 0.00200483300648432 2115158 900321 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} +19 532 281 0.023632839040343 0.0235740252308059 0.0236209658960861 0.0235446707866026 0.00217745124719818 0.00211685524699919 2093948 891421 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} +20 585 281 0.0235579095681742 0.023645983287272 0.0235141527428092 0.0236972610055695 0.00176842910774789 0.00162831403170523 2087309 894142 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} +21 105 331 0.0232952557533961 0.0231650199749059 0.0233768215457389 0.0231174181734951 0.00170504062082736 0.0017220798695901 2064037 875955 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} +22 158 331 0.023345378028724 0.0230902058103552 0.0233157854581521 0.0229953459983215 0.00177346943828489 0.00169795068393236 2068478 873126 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} +23 212 332 0.0234225873251702 0.0233844113885194 0.0234378576333257 0.0233005264362554 0.00188393280546659 0.0019961543021145 2075319 884251 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} +24 265 332 0.0235013879841071 0.023465466678144 0.0234988937209125 0.0234531166552224 0.00184024778072908 0.00172245595794763 2082301 887316 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} +25 318 332 0.0235642073005842 0.0236698370788679 0.0235294117647059 0.0236057068741894 0.00145100630233765 0.00166972535940727 2087867 895044 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} +26 372 333 0.0245839320693626 0.0235515994932524 0.0238040741588464 0.0235599298084993 0.0096232523164387 0.00171062180629751 2178218 890573 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} +27 425 333 0.0237180841530543 0.0236363042543184 0.0236362249179828 0.0235446707866026 0.00170575778271467 0.00157767555237188 2101501 893776 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} +28 478 333 0.0236565401838216 0.0237701446526186 0.0236057068741894 0.0237430380712596 0.00186379185557399 0.00182812541947253 2096048 898837 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} +29 532 334 0.0237872576332354 0.0237912216724655 0.0237888151369497 0.0237430380712596 0.00179610356369131 0.00191998478661373 2107630 899634 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} +30 585 334 0.0235415106341388 0.0238335872757211 0.0234836346990158 0.0237582970931563 0.00180055836735844 0.00185101641107752 2085856 901236 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} +31 105 384 0.0233294869763345 0.023449943201795 0.0233157854581521 0.023422598611429 0.00185668539591179 0.00171157999123157 2067070 886729 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} +32 158 384 0.0234371578852801 0.023379148744919 0.0234378576333257 0.0234073395895323 0.00179970639200738 0.00175835512800027 2076610 884052 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} +33 211 384 0.0233613819437014 0.0234116501971045 0.0234073395895323 0.0233920805676356 0.00203249796008536 0.00202798314663732 2069896 885281 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} +34 265 385 0.0233744514313911 0.0235546142740084 0.0233920805676356 0.0234988937209125 0.0019633427098811 0.0019979218394813 2071054 890687 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} +35 318 385 0.0234720211387113 0.0236141958621076 0.0233768215457389 0.0235904478522927 0.00154219784849746 0.00160638072299028 2079699 892940 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} +36 371 385 0.0234871447255024 0.0238577055217693 0.0234531166552224 0.0237888151369497 0.00164995931379947 0.00169996960127637 2081039 902148 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} +37 425 386 0.0237799328512746 0.0237990759696983 0.023773556115053 0.0238040741588464 0.001687526085329 0.00159152186137873 2106981 899931 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} +38 478 386 0.0235930436918165 0.0238453554988477 0.0235904478522927 0.0238651102464332 0.00179671112265453 0.00167855226002448 2090422 901681 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} +39 531 386 0.0236836497774576 0.0235757970756362 0.0236972610055695 0.0236362249179828 0.00161001038768221 0.00147410719531471 2098450 891488 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} +40 585 387 0.0238582707736008 0.0235697675141242 0.0238040741588464 0.0236667429617761 0.00181303510429105 0.00140239320046616 2113922 891260 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} +41 104 436 0.0232127983466082 0.0234592784439606 0.0232089723048753 0.0233768215457389 0.00200339993799152 0.00234120168901565 2056731 887082 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} +42 158 437 0.0233403669298171 0.0231896935753039 0.0233310444800488 0.0232852674143587 0.00212349162546219 0.00186543261318447 2068034 876888 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} +43 211 437 0.024213325189169 0.0235506210117789 0.0235446707866026 0.0234836346990158 0.00638282495455486 0.00244872194959203 2145381 890536 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} +44 264 437 0.0234886683704403 0.0234893204697399 0.0234378576333257 0.0234683756771191 0.00220805726331328 0.00244696641144554 2081174 888218 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} +45 318 438 0.0236283245368232 0.0238938828908415 0.0235294117647059 0.02392614633402 0.00172971889654014 0.00168245532261397 2093548 903516 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} +46 371 438 0.0241884389885165 0.0239137698656532 0.0238651102464332 0.023773556115053 0.00291967910675234 0.00210804149629086 2143176 904268 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} +47 424 438 0.0236810652241925 0.0237731065424841 0.0236820019836728 0.0236820019836728 0.00192069489585002 0.00199893868160309 2098221 898949 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} +48 478 439 0.0243043375801268 0.0239002033522511 0.0237125200274662 0.0238498512245365 0.00489905641070918 0.00202937933648961 2153445 903755 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} +49 531 439 0.0238829199628185 0.0236979750325907 0.0237888151369497 0.0236209658960861 0.00205044333405239 0.00182952562214841 2116106 896108 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} +50 584 439 0.0237771677178688 0.0237616292192551 0.023773556115053 0.0236209658960861 0.00185595973879595 0.00198388526182371 2106736 898515 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} +51 104 489 0.0231713890630735 0.0242683239498282 0.0231479362172885 0.0233920805676356 0.00213991749987204 0.00489734691454785 2053062 917675 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} +52 157 489 0.0234503063767814 0.0234667360595149 0.0234378576333257 0.0234531166552224 0.00225903294177576 0.00222234799010563 2077775 887364 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} +53 211 490 0.0233824308163622 0.0234905634056656 0.0234531166552224 0.0234378576333257 0.00240337686092299 0.00239504329134513 2071761 888265 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} +54 264 490 0.0235564874995655 0.0235044472644104 0.0236362249179828 0.0234988937209125 0.00194625244221542 0.00188111200912158 2087183 888790 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} +55 317 490 0.0236978817498035 0.0237934430898647 0.0236820019836728 0.0238651102464332 0.00165160197481682 0.00161897471502662 2099711 899718 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} +56 371 491 0.0237811179084486 0.0237312169572426 0.023773556115053 0.0237125200274662 0.00166008194771032 0.00162619224821261 2107086 897365 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} +57 424 491 0.0238788004783568 0.0238454612806286 0.0238193331807431 0.0238193331807431 0.00208564520981906 0.00198744183517586 2115741 901685 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} +58 477 491 0.0238220870278902 0.0237909572180132 0.0238345922026398 0.0237582970931563 0.00243168721203872 0.00261629546010779 2110716 899624 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} +59 531 492 0.0239737179148592 0.0238473389072398 0.0239871824216068 0.0238498512245365 0.00205876182508762 0.00203685290178588 2124151 901756 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} +60 584 492 0.0238988335877256 0.0237472428970509 0.0238651102464332 0.0237277790493629 0.00214399581086334 0.00192210055375383 2117516 897971 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} +61 104 542 0.023303810737566 0.0234184995674186 0.0233005264362554 0.0234378576333257 0.0017289662695426 0.00158832394281712 2064795 885540 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} +62 157 542 0.0234492341821954 0.0234013100280203 0.0234378576333257 0.023422598611429 0.00192647484551099 0.00180509382240461 2077680 884890 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} +63 210 543 0.0235581352933502 0.0233815552804348 0.0234683756771191 0.0233768215457389 0.00212160344202096 0.0022141046447522 2087329 884143 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} +64 264 543 0.0236094087670755 0.0236044903837089 0.0235904478522927 0.0235904478522927 0.00170817599395569 0.00169662432070608 2091872 892573 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} +65 317 543 0.0236601179278609 0.0236475700139857 0.0236209658960861 0.0236362249179828 0.00144491736842891 0.00154487233341507 2096365 894202 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} +66 370 543 0.0237927201824943 0.0236570639288226 0.0238040741588464 0.0236057068741894 0.00144881251489917 0.0013121614616865 2108114 894561 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} +67 424 544 0.0239570481106126 0.0239391046021818 0.0239108873121233 0.0239719233997101 0.00173256266638091 0.001480291268681 2122674 905226 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} +68 477 544 0.0239647453391137 0.0237765444503638 0.0239108873121233 0.0238803692683299 0.00235115956899679 0.0023509128686988 2123356 899079 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} +69 530 544 0.0236464051234198 0.023758958229287 0.0235599298084993 0.0238040741588464 0.0020108036275654 0.00212724937902632 2095150 898414 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} +70 584 545 0.0236400058146805 0.0233886955506464 0.0236514839398795 0.0232852674143587 0.00169119718290226 0.00165412365294652 2094583 884413 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} +71 103 595 0.0234016174563211 0.0235025960832444 0.0234683756771191 0.0234836346990158 0.00161096748819411 0.00172711750023126 2073461 888720 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} +72 157 595 0.0234494373348538 0.0234582735170419 0.0234836346990158 0.0235294117647059 0.00186821872409511 0.00186283919586385 2077698 887044 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} +73 210 595 0.0235778185286962 0.0234782662736345 0.0235141527428092 0.0234836346990158 0.00198166317164578 0.0020340383369032 2089073 887800 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} +74 263 596 0.0235827280512739 0.0232899482581641 0.023575188830396 0.0232394903486687 0.00170633401481 0.00175917080364374 2089508 880679 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} +75 317 596 0.0235971293175019 0.0236673512070164 0.0235294117647059 0.0236514839398795 0.00136971024053782 0.0013403756097224 2090784 894950 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} +76 370 596 0.0236988297955427 0.0235667527333682 0.0236972610055695 0.023575188830396 0.00145792640882339 0.00161156455214942 2099795 891146 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} +77 423 596 0.023865572983044 0.0239375972118038 0.023773556115053 0.02392614633402 0.00168975135913515 0.00165450960043723 2114569 905169 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} +78 477 597 0.0239217221205707 0.0243324277090615 0.0238956282902266 0.0238651102464332 0.00217434600422803 0.00317698397134649 2119544 920099 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} +79 530 597 0.0236389336200946 0.02375234686798 0.0236362249179828 0.0237430380712596 0.00202328569540359 0.00192880620214661 2094488 898164 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} +80 583 597 0.0235453366758717 0.0234291041909552 0.0235294117647059 0.0233920805676356 0.00160557523176593 0.00160442675120671 2086195 885941 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} +81 104 652 0.0239315298794673 0.160515864951748 0.0238956282902266 0.168398565651942 0.00171444534999066 0.0257168382253702 2120413 7879036 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} +82 156 648 0.0235961474129863 0.0235164799419893 0.0236057068741894 0.0234836346990158 0.00178155315151404 0.0016504271395131 2090697 889245 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} +83 210 648 0.0234727547455332 0.0234030554274053 0.0234531166552224 0.0233157854581521 0.00190745487263181 0.00180314301932573 2079764 884956 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} +84 263 648 0.0234443698046529 0.0234193458216659 0.0233920805676356 0.0234073395895323 0.00172393338825985 0.00181267139265915 2077249 885572 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} +85 316 649 0.0235490385687579 0.0233836444706078 0.0235446707866026 0.0233768215457389 0.00129497192005936 0.00131211699138053 2086523 884222 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} +86 370 649 0.0235282379937908 0.0233914194315049 0.0234988937209125 0.0234683756771191 0.00163473222796657 0.00159590944612649 2084680 884516 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} +87 423 649 0.0236506939017635 0.0236687792610587 0.0236362249179828 0.0235599298084993 0.00166826701937634 0.00164744545975926 2095530 895004 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} +88 476 650 0.0237575070550404 0.0236908612078243 0.023773556115053 0.0236362249179828 0.00173260964386086 0.00208889958834703 2104994 895839 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} +89 530 650 0.0236932543836958 0.0236135611714222 0.0236667429617761 0.0236362249179828 0.00160609426185989 0.00158885925661299 2099301 892916 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} +90 583 650 0.0236771714649067 0.0235908709794163 0.0236362249179828 0.0235141527428092 0.00143687973974667 0.0014595961215575 2097876 892058 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} +91 105 706 0.0238201232188591 0.147461238141139 0.0238193331807431 0.163805600061036 0.00204700693908138 0.0442677111069257 2110542 8320594 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} +92 156 700 0.0236505697529167 0.0236439998788799 0.0236209658960861 0.0236972610055695 0.00185126746055751 0.00165679701869091 2095519 894067 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} +93 209 701 0.023378728923476 0.023355162726097 0.0233768215457389 0.0233310444800488 0.00198469693500925 0.00212278745795122 2071433 883145 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} +94 263 701 0.023496839621811 0.0233298808804588 0.0235599298084993 0.0233768215457389 0.00190128740639338 0.00190349070120469 2081898 882189 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} +95 316 701 0.023531432005031 0.0233922127948618 0.0235141527428092 0.0233310444800488 0.00157574042011351 0.00160146093365819 2084963 884546 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} +96 369 702 0.0234814564510675 0.0232814063793554 0.0234836346990158 0.0233157854581521 0.0017369109586145 0.00166172531961156 2080535 880356 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} +97 423 702 0.023459098372386 0.0237238651234692 0.0233920805676356 0.0237582970931563 0.00174861821509544 0.00159054500390188 2078554 897087 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} +98 476 702 0.0235955943863052 0.0235637379526121 0.0234988937209125 0.0234988937209125 0.00182687923012039 0.00192258198490021 2090648 891032 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} +99 529 703 0.0236117563089058 0.0235104503804772 0.0235904478522927 0.0233920805676356 0.00170011537242423 0.00190340498802631 2092080 889017 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} +100 583 708 0.0237280386333153 0.154978408687741 0.0237125200274662 0.163088426031891 0.00159199474615397 0.0293384519398071 2102383 7607226 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv new file mode 100644 index 0000000..3a1c17a --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 111 226 0.324596155087642 0.356294563632292 0.324498359655146 0.357579919127184 0.00522462187535851 0.0155582903010333 28760297 20104147 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} +2 159 226 0.325726541623948 0.326070594264856 0.325520714122225 0.326054779888609 0.00622574441643244 0.00677881101775703 28860453 12329934 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} +3 212 226 0.326056890419005 0.326180051962655 0.325917448691539 0.325947966735332 0.00624926880539861 0.00661109661300324 28889723 12334073 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} +4 266 227 0.325702050442354 0.325266070930122 0.325505455100328 0.32503242542153 0.00539727788375643 0.00517029373326504 28858283 12299512 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} +5 319 227 0.326317151546917 0.32451152948687 0.325383382925155 0.324208438239109 0.00939030411790782 0.00506681127631979 28912783 12270980 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} +6 372 227 0.328074143711637 0.325014812755008 0.325291828793774 0.325047684443427 0.0306959358729292 0.00427662855470123 29046958 12290011 1351 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} +7 426 227 0.325339129504402 0.324812901780691 0.325337605859464 0.324773022049287 0.00524683351145825 0.00454580493460289 28826127 12282376 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} +8 479 228 0.329018836395928 0.325470811567079 0.325673304341192 0.325169756618601 0.0372478500725285 0.00604706291598265 29044350 12307254 1347 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} +9 532 228 0.330777458451895 0.34222738613616 0.325612268253605 0.326314183260853 0.033785942791788 0.0869661877069603 29307981 12940882 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} +10 586 230 0.32449747932696 0.348630901539699 0.324391546501869 0.349919890135042 0.00639460957115679 0.0108357214038199 28751554 19671720 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} +11 105 278 0.324334392887309 0.324222427879635 0.324330510414282 0.324330510414282 0.00461234951009118 0.00432418190546928 28737104 12260048 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} +12 159 279 0.324884360992342 0.325066619382211 0.324834058136873 0.325154497596704 0.00485077780230647 0.00476189649351018 28785833 12291970 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} +13 212 279 0.325673530066368 0.32573682630063 0.325810635538262 0.325535973144121 0.00518922936297778 0.00476440745827251 28855756 12317313 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} +14 265 279 0.325875565385135 0.325609861718089 0.325764858472572 0.325215533684291 0.00503406612551986 0.00545511143877601 28873657 12312512 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} +15 319 280 0.325899514826307 0.32589898977077 0.325795376516365 0.325917448691539 0.00479763515165576 0.00441198821671316 28875779 12323445 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} +16 372 280 0.333895532214904 0.32605433031604 0.325841153582055 0.326115815976196 0.0570935341024135 0.00432194092689452 29540489 12329319 1350 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} +17 425 280 0.326294962762118 0.325774193714737 0.326070038910506 0.325459678034638 0.00461919942482582 0.00399928099388016 28910817 12318726 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} +18 479 280 0.332911136762478 0.327605329233231 0.326405737392233 0.325825894560159 0.0522407334138855 0.0150764249295578 29300676 12387968 1343 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} +19 532 281 0.326105714774571 0.325267498984164 0.325963225757229 0.324971389333944 0.00742110066462695 0.00515697864480355 28894049 12299566 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} +20 585 281 0.325290880748035 0.324925718050035 0.325169756618601 0.324589913786526 0.00588063490678198 0.00633715368433552 28821852 12286642 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} +21 105 331 0.324557691517654 0.323892547395857 0.324177920195315 0.323903257801175 0.00530845549726156 0.00504788131936822 28756889 12247574 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} +22 158 331 0.325053903172026 0.324890862953224 0.325062943465324 0.32466620889601 0.00531740964977363 0.00471164625019879 28800855 12285324 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} +23 212 332 0.326021722436586 0.326021961091081 0.325917448691539 0.326131074998093 0.00585027576680288 0.00610811319817944 28886607 12328095 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} +24 265 332 0.326252616719103 0.326233207307564 0.326207370107576 0.32637521934844 0.00568708369116079 0.00611990202345366 28907065 12336083 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} +25 318 332 0.326033494004514 0.327963479897958 0.326024261844816 0.326863508049134 0.00485346720986639 0.00873348649363241 28887650 12401511 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} +26 372 333 0.328936015038714 0.326464552062421 0.327306019684138 0.326131074998093 0.0163030528966646 0.00471351347344134 29144823 12344831 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} +27 425 333 0.327407697589661 0.326800329880484 0.327260242618448 0.3265583276112 0.0052668373252441 0.00440322252009471 29009409 12357528 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} +28 478 333 0.325929434698384 0.326800488553155 0.325902189669642 0.326787212939651 0.00468317535794154 0.00438916147164781 28878430 12357534 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} +29 532 334 0.326061720937771 0.3264117405083 0.326192111085679 0.326085297932403 0.00542753684839523 0.00550532831080502 28890151 12342834 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} +30 585 334 0.326007253452805 0.325489640724082 0.325764858472572 0.325246051728084 0.00585846053938064 0.00524615889164516 28885325 12307966 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} +31 105 384 0.324317215201417 0.324417965501652 0.324254215304799 0.324437323567559 0.00531362832157146 0.0051954404602163 28735582 12267442 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} +32 158 384 0.324928388687918 0.324890519162436 0.32475776302739 0.324635690852216 0.00543464238197388 0.00510728790999335 28789734 12285311 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} +33 211 384 0.325607042715781 0.325538829252206 0.325612268253605 0.325337605859464 0.00657937658478531 0.00675592478380968 28849865 12309826 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} +34 265 385 0.32724809860398 0.327325827322614 0.327229724574655 0.327183947508965 0.00672592042758534 0.00729607886337667 28995268 12377399 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} +35 318 385 0.326956461676605 0.326903493562319 0.326970321202411 0.326573586633097 0.00545431144246986 0.00532008412611551 28969428 12361429 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} +36 371 385 0.32706677357011 0.327569495654947 0.326848249027237 0.327321278706035 0.00503787485997377 0.00541637734566277 28979202 12386613 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} +37 425 386 0.327609778053463 0.327435946156545 0.327504386968795 0.327489127946899 0.00467528913442385 0.00438258373683899 29027314 12381563 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} +38 478 386 0.326458895671178 0.326174313301041 0.326405737392233 0.326070038910506 0.00483429762838105 0.00418317797297362 28925342 12333856 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} +39 531 386 0.325966273047105 0.325650270358398 0.325902189669642 0.325474937056535 0.00524133523450635 0.00509361117631686 28881694 12314040 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} +40 585 387 0.326196952890704 0.325249595417745 0.32623788815137 0.325291828793774 0.00554035527503905 0.00528507816952366 28902133 12298889 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} +41 104 436 0.324523731164927 0.324563812132086 0.324376287479973 0.324299992370489 0.00588238699309941 0.00654439627083121 28753880 12272957 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} +42 158 437 0.324895997125164 0.325094545772372 0.324879835202564 0.32494087129015 0.00609416234507679 0.00633967588209702 28786864 12293026 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} +43 211 437 0.32735300437952 0.32546859014968 0.326298924238956 0.325505455100328 0.0113782412790386 0.00694329025804045 29004563 12307170 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} +44 264 437 0.326903224393849 0.327751017190994 0.326939803158618 0.327931639581903 0.00642891712739119 0.00586100591600879 28964711 12393477 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} +45 318 438 0.327377247263421 0.328284236703131 0.327275501640345 0.328206301976043 0.00493647635630653 0.00464071596040644 29006711 12413640 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} +46 371 438 0.338482001640773 0.328176815304614 0.328496223392081 0.327901121538109 0.065202228554459 0.00614126871607174 29613528 12409578 1335 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} +47 424 438 0.327017226893981 0.326681827840416 0.327092393377585 0.32664988174258 0.00552710263660503 0.00557645407771177 28974812 12353047 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} +48 478 439 0.327982721189229 0.326950830909278 0.32646677347982 0.326878767071031 0.0140736502806988 0.00576306507457292 29060358 12363219 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} +49 531 439 0.326528712468111 0.325932284586312 0.326253147173266 0.326146334019989 0.006342854872024 0.00565922569418375 28931528 12324704 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} +50 584 439 0.326482856398609 0.326607225239427 0.326543068589303 0.326115815976196 0.00543745241708182 0.00628068346921288 28927465 12350226 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} +51 104 489 0.324262894437816 0.325913138083967 0.324299992370489 0.324879835202564 0.00551242377609957 0.00838014690697397 28730769 12323980 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} +52 157 489 0.324724603999037 0.325256947251518 0.32466620889601 0.325230792706188 0.00614090137939858 0.00563861787439486 28771678 12299167 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} +53 211 490 0.325821447774192 0.325896583235254 0.325734340428779 0.325703822384985 0.00619067148786142 0.00640204369861267 28868862 12323354 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} +54 264 490 0.326677296065204 0.327217480333514 0.326680399786374 0.327092393377585 0.00492518998366576 0.00496903414101114 28944693 12373302 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} +55 317 490 0.327830932294636 0.32788327086258 0.32799267566949 0.328099488822766 0.00445492799042279 0.0047519572575052 29046909 12398478 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} +56 371 491 0.327500572213321 0.328060587572836 0.327458609903105 0.327977416647593 0.00429577026658586 0.00387537397413313 29017638 12405183 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} +57 424 491 0.327511621460686 0.326283321426272 0.327077134355688 0.326344701304646 0.00677648038962159 0.0050064799151944 29018617 12337978 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} +58 477 491 0.326421041559165 0.326409704209017 0.32646677347982 0.325856412603952 0.00682637025232061 0.00695267630640934 28921988 12342757 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} +59 531 492 0.326292750655393 0.32648700424542 0.326436255436027 0.32660410467689 0.00600559945636522 0.00581857234421666 28910621 12345680 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} +60 584 492 0.327544419328757 0.326470978305611 0.32660410467689 0.32651255054551 0.00965699342228514 0.00565140909478751 29021523 12345074 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} +61 104 542 0.323887976206761 0.324664648614741 0.323750667582208 0.324437323567559 0.00452881388087644 0.00496576250241882 28697550 12276770 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} +62 157 542 0.324445675399071 0.325933977094807 0.324330510414282 0.325673304341192 0.00495387231815234 0.00475422595008196 28746964 12324768 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} +63 210 543 0.325830318773608 0.325474593265747 0.325963225757229 0.325688563363088 0.0055876100501452 0.00538736944274659 28869648 12307397 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} +64 264 543 0.326180531384151 0.32606591342105 0.326085297932403 0.325749599450675 0.00471093416296507 0.00527183880859625 28900678 12329757 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} +65 317 543 0.326626135454066 0.326910078478181 0.326756694895857 0.326848249027237 0.0040127616622908 0.00436392576839805 28940160 12361678 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} +66 370 543 0.3267641889717 0.326965085004256 0.326802471961547 0.327061875333791 0.00423207791129183 0.00451056192243569 28952392 12363758 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} +67 424 544 0.326648200090019 0.327006525016928 0.326497291523613 0.326985580224308 0.00479064311651287 0.00467805205475074 28942115 12365325 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} +68 477 544 0.3267639971053 0.325850303706104 0.32674143587396 0.325978484779126 0.0066535041176591 0.00650695469553352 28952375 12321604 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} +69 530 544 0.326078402028276 0.326625604823861 0.326161593041886 0.32637521934844 0.0066227034379094 0.007012803385622 28891629 12350921 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} +70 584 545 0.326571148801196 0.32644820877727 0.326680399786374 0.326344701304646 0.00570487263215026 0.00528491656742851 28935288 12344213 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} +71 103 595 0.324039573234953 0.323613918184933 0.323994811932555 0.323308155947204 0.00520702651470731 0.00527860803605277 28710982 12237038 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} +72 157 595 0.324693047619435 0.324720818740406 0.324788281071183 0.324559395742733 0.00547121293684502 0.00521462964762469 28768882 12278894 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} +73 210 595 0.324880015782704 0.325249436745073 0.32480354009308 0.325200274662394 0.00533792539703295 0.00573328600882469 28785448 12298883 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} +74 263 596 0.324932158298357 0.325060431148027 0.325047684443427 0.325398641947051 0.00499214483429527 0.0051483199510907 28790068 12291736 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} +75 317 596 0.32574720676381 0.325797783051881 0.325749599450675 0.325825894560159 0.00427830833579256 0.0037377613650168 28862284 12319618 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} +76 370 596 0.326501444866851 0.327031780417121 0.326482032501717 0.327046616311894 0.00517568495056126 0.00515751386220736 28929112 12366280 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} +77 423 596 0.32676870347522 0.326968787366588 0.326878767071031 0.326771953917754 0.00524747843120933 0.00505672826616215 28952792 12363898 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} +78 477 597 0.326649847883804 0.327858703043963 0.326482032501717 0.326726176852064 0.00624654043559863 0.00853046277212499 28942261 12397549 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} +79 530 597 0.326512020091347 0.325965817410861 0.326497291523613 0.326024261844816 0.00569530502231601 0.00572320687865789 28930049 12325972 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} +80 583 597 0.326049328625609 0.325650243912953 0.325947966735332 0.325581750209812 0.00519482285931838 0.00542165821170725 28889053 12314039 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} +81 104 652 0.322649478597416 0.354783728830272 0.322774090180819 0.353414206149386 0.0054909208774711 0.0134962443135617 28587815 17414813 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} +82 156 648 0.323579511467516 0.324464800385151 0.323308155947204 0.324788281071183 0.005310125536568 0.0051593352579425 28670219 12269213 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} +83 210 648 0.324798133975115 0.324545035865974 0.324864576180667 0.324650949874113 0.00597368263027534 0.00606603059410237 28778193 12272247 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} +84 263 648 0.324462424207129 0.324734279472027 0.3247119859617 0.32452887769894 0.00507977617975832 0.00514602788790076 28748448 12279403 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} +85 316 649 0.325585971270603 0.325698348177823 0.325612268253605 0.325719081406882 0.00460955153895036 0.00504426926179535 28847998 12315858 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} +86 370 649 0.325779338742611 0.325510003716907 0.325734340428779 0.325627527275502 0.00546933123539571 0.00513737638731167 28865131 12308736 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} +87 423 649 0.32629719744136 0.326108887269546 0.326070038910506 0.326390478370336 0.00529077490122226 0.00576981735805537 28911015 12331382 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} +88 476 650 0.326012388700559 0.326292392213985 0.326100556954299 0.326222629129473 0.00526513737967768 0.00509770564448474 28885780 12338321 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} +89 530 650 0.326237052968218 0.325605286656065 0.32637521934844 0.325673304341192 0.00457184626437649 0.00416652390267888 28905686 12312339 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} +90 583 650 0.32534356500411 0.325266176711903 0.325383382925155 0.325169756618601 0.0043320823493513 0.00402689121016391 28826520 12299516 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} +91 105 706 0.321657360017661 0.350621113967083 0.321538109407187 0.351338979171435 0.00629785055974605 0.0157633552051079 28499910 19784019 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} +92 156 700 0.323028832328179 0.323134911835514 0.323018234531167 0.322972457465476 0.00555504826479874 0.00533538311721709 28621427 12218925 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} +93 209 701 0.323596813302255 0.323604635833658 0.323674372472725 0.323735408560311 0.00658354060135658 0.0066064771834014 28671752 12236687 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} +94 263 701 0.324342733432562 0.323983334609326 0.324101625085832 0.323842221713588 0.0069232997832579 0.00680235555075611 28737843 12251007 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} +95 316 701 0.32476377860333 0.324830488001768 0.324971389333944 0.32484931715877 0.0053673952901145 0.005785589786098 28775149 12283041 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} +96 369 702 0.325269278848693 0.324120692251842 0.325261310749981 0.32452887769894 0.00606733856830207 0.00625758695356238 28819938 12256201 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} +97 423 702 0.326007908055816 0.324915192762834 0.325856412603952 0.324605172808423 0.00589982961048892 0.00577084990316963 28885383 12286244 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} +98 476 702 0.326074779139202 0.326312993215818 0.326054779888609 0.326253147173266 0.00559572631962013 0.00532168083053398 28891308 12339100 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} +99 529 703 0.32593689491545 0.325245496373734 0.326009002822919 0.325246051728084 0.00447855167471826 0.00455471473322293 28879091 12298734 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} +100 583 708 0.325107084023488 0.355828819036251 0.325139238574807 0.354543373769741 0.00406602452354276 0.0135278325416574 28805567 17466112 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv new file mode 100644 index 0000000..4a5ad6f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 111 226 0.0337409365698712 0.0370950366796935 0.0337376974135958 0.037247272449836 0.00210200751022554 0.00263236837252891 2989559 2093111 1352 861 0 True 106 226 32 {X=0,Y=0,Width=0,Height=0} +2 159 226 0.0341429869670798 0.0339383918974329 0.0340733958953231 0.0339360646982528 0.00252781040183171 0.00248226835975926 3025182 1283336 1352 577 0 False 159 226 27 {X=0,Y=0,Width=0,Height=0} +3 212 226 0.0340442999201384 0.0338745261472067 0.034027618829633 0.0338139925230793 0.00248977155690604 0.00247514587648976 3016438 1280921 1352 577 0 False 212 226 27 {X=0,Y=0,Width=0,Height=0} +4 266 227 0.0341697579729518 0.0339059962270283 0.0340886549172198 0.034027618829633 0.00212794954482496 0.00176933675916339 3027554 1282111 1352 577 0 False 266 227 27 {X=0,Y=0,Width=0,Height=0} +5 319 227 0.0340529451943787 0.0338828564624536 0.0340123598077363 0.0338750286106661 0.00194821759133238 0.00178641582960113 3017204 1281236 1352 577 0 False 319 227 27 {X=0,Y=0,Width=0,Height=0} +6 372 227 0.0342575312076342 0.0340850054457783 0.0337987335011826 0.0340733958953231 0.00504353926503223 0.00150069147576497 3035331 1288880 1352 577 0 False 372 227 27 {X=0,Y=0,Width=0,Height=0} +7 426 227 0.0341087896029178 0.0339321772178043 0.0341191729610132 0.0338445105668727 0.00177996041221123 0.00157110589432284 3022152 1283101 1352 577 0 False 426 227 27 {X=0,Y=0,Width=0,Height=0} +8 479 228 0.0352966119102535 0.0341722754150315 0.0341039139391165 0.0341496910048066 0.0148232563794689 0.00232370676692305 3127397 1292180 1352 577 0 False 479 228 27 {X=0,Y=0,Width=0,Height=0} +9 532 228 0.0346266370154075 0.0362828863986976 0.0341954680704967 0.0343022812237736 0.00451750429007309 0.0123770414604214 3068035 1371990 1352 577 0 False 532 228 27 {X=0,Y=0,Width=0,Height=0} +10 586 230 0.0340408801837222 0.0365157786881796 0.0339818417639429 0.0365300984206912 0.00236831472158811 0.00261309494789321 3016135 2060426 1352 861 0 True 586 228 32 {X=0,Y=0,Width=0,Height=0} +11 105 278 0.033903718280534 0.0338072489345461 0.0339055466544594 0.0336614023041123 0.00173839398539966 0.00178112265488329 3003982 1278377 1352 577 0 False 105 278 27 {X=0,Y=0,Width=0,Height=0} +12 159 279 0.0337381714364654 0.0337270927900593 0.0337834744792859 0.0336003662165255 0.00192180483077527 0.00193814473890887 2989314 1275346 1352 577 0 False 159 279 27 {X=0,Y=0,Width=0,Height=0} +13 212 279 0.0339247445806771 0.0338354133337141 0.0339360646982528 0.0337376974135958 0.00196258502455624 0.00180732092331299 3005845 1279442 1352 577 0 False 212 279 27 {X=0,Y=0,Width=0,Height=0} +14 265 279 0.0339823722181065 0.0340851905638949 0.034027618829633 0.0340733958953231 0.00201350373779871 0.00201746058566591 3010951 1288887 1352 577 0 False 265 279 27 {X=0,Y=0,Width=0,Height=0} +15 319 280 0.0341223669722534 0.0341947804889208 0.0340123598077363 0.0342259861142901 0.00175698851686063 0.00164742979601401 3023355 1293031 1352 577 0 False 319 280 27 {X=0,Y=0,Width=0,Height=0} +16 372 280 0.0351670795180135 0.0341000000132227 0.0342107270923934 0.0341344319829099 0.00741950895362394 0.0016692471073463 3115920 1289447 1352 577 0 False 372 280 27 {X=0,Y=0,Width=0,Height=0} +17 425 280 0.0339143612225817 0.0339197743039922 0.0338597695887694 0.0339513237201495 0.00162828341856065 0.00159495444129852 3004925 1282632 1352 577 0 False 425 280 27 {X=0,Y=0,Width=0,Height=0} +18 479 280 0.0367070105273708 0.0343882553662106 0.0342717631799802 0.0342565041580835 0.021981155670079 0.00248674570969798 3252363 1300347 1352 577 0 False 479 280 27 {X=0,Y=0,Width=0,Height=0} +19 532 281 0.0341740806100719 0.0342300851583005 0.0341344319829099 0.0340581368734264 0.00214740245770264 0.00190277091615244 3027937 1294366 1352 577 0 False 532 281 27 {X=0,Y=0,Width=0,Height=0} +20 585 281 0.0340663532698323 0.034032141000767 0.034027618829633 0.0339971007858396 0.00220819379417719 0.00240351086690825 3018392 1286881 1352 577 0 False 585 281 27 {X=0,Y=0,Width=0,Height=0} +21 105 331 0.0339789186229139 0.0338445370123179 0.0339665827420462 0.0338445105668727 0.0021253801964241 0.00204102921264402 3010645 1279787 1352 577 0 False 105 331 27 {X=0,Y=0,Width=0,Height=0} +22 158 331 0.0338763039579104 0.0336052057330023 0.0338750286106661 0.0335851071946288 0.00194364473645818 0.00203915148529843 3001553 1270737 1352 577 0 False 158 331 27 {X=0,Y=0,Width=0,Height=0} +23 212 332 0.0341284276932287 0.0340514197303384 0.0341191729610132 0.0339208056763561 0.00225398395792867 0.00237448560981208 3023892 1287610 1352 577 0 False 212 332 27 {X=0,Y=0,Width=0,Height=0} +24 265 332 0.0342056595621925 0.0341443225794253 0.0342107270923934 0.0341344319829099 0.00221910129759943 0.00241261984831175 3030735 1291123 1352 577 0 False 265 332 27 {X=0,Y=0,Width=0,Height=0} +25 318 332 0.0341821502851135 0.0342459788708826 0.0341344319829099 0.0341496910048066 0.0018089401729531 0.00200955876002552 3028652 1294967 1352 577 0 False 318 332 27 {X=0,Y=0,Width=0,Height=0} +26 372 333 0.0342760971033591 0.0342236853605552 0.0341344319829099 0.0341649500267033 0.00242926576527445 0.00179974995625616 3036976 1294124 1352 577 0 False 372 333 27 {X=0,Y=0,Width=0,Height=0} +27 425 333 0.0342249026334453 0.0342011538412208 0.0342412451361868 0.0341649500267033 0.00167568908414058 0.00158913997179019 3032440 1293272 1352 577 0 False 425 333 27 {X=0,Y=0,Width=0,Height=0} +28 478 333 0.0341633248054362 0.0341520975403224 0.0340733958953231 0.0341496910048066 0.00176676555429979 0.00156926285780998 3026984 1291417 1352 577 0 False 478 333 27 {X=0,Y=0,Width=0,Height=0} +29 532 334 0.0340671658804659 0.0342780836413897 0.0340733958953231 0.0342107270923934 0.00200050084510031 0.00205082762340188 3018464 1296181 1352 577 0 False 532 334 27 {X=0,Y=0,Width=0,Height=0} +30 585 334 0.0341568803516618 0.0339383654519877 0.0340886549172198 0.0338597695887694 0.00207620180187731 0.00200126929686267 3026413 1283335 1352 577 0 False 585 334 27 {X=0,Y=0,Width=0,Height=0} +31 105 384 0.0337102830909722 0.03369705076428 0.0336461432822156 0.0335851071946288 0.002051126768275 0.00201378302553971 2986843 1274210 1352 577 0 False 105 384 27 {X=0,Y=0,Width=0,Height=0} +32 158 384 0.0338656610158626 0.0338979303662337 0.033829251544976 0.0338750286106661 0.00202472788521459 0.00204621855483787 3000610 1281806 1352 577 0 False 158 384 27 {X=0,Y=0,Width=0,Height=0} +33 211 384 0.0339763227833901 0.0340849790003331 0.0339665827420462 0.0339208056763561 0.00248303594481725 0.00247135792277821 3010415 1288879 1352 577 0 False 211 384 27 {X=0,Y=0,Width=0,Height=0} +34 265 385 0.0340574935566749 0.034085428572902 0.0339513237201495 0.034027618829633 0.00257599580179252 0.00260794454472485 3017607 1288896 1352 577 0 False 265 385 27 {X=0,Y=0,Width=0,Height=0} +35 318 385 0.0343853593747954 0.0342422765085507 0.034332799267567 0.0342259861142901 0.00201014685611634 0.00211223813407608 3046657 1294827 1352 577 0 False 318 385 27 {X=0,Y=0,Width=0,Height=0} +36 371 385 0.0344042638582843 0.0340847938822165 0.0344243533989471 0.0339971007858396 0.00201767279147433 0.00201601790853071 3048332 1288872 1352 577 0 False 371 385 27 {X=0,Y=0,Width=0,Height=0} +37 425 386 0.0341330324868188 0.0344071638595488 0.0342107270923934 0.0344243533989471 0.00172162749581422 0.00173413265265715 3024300 1301062 1352 577 0 False 425 386 27 {X=0,Y=0,Width=0,Height=0} +38 478 386 0.0343209712683452 0.034326082124479 0.0343175402456703 0.0342717631799802 0.00180846330889593 0.00150345389386858 3040952 1297996 1352 577 0 False 478 386 27 {X=0,Y=0,Width=0,Height=0} +39 531 386 0.0341309445289409 0.0340307922830604 0.0341954680704967 0.0339360646982528 0.00196200383316985 0.00196193880562365 3024115 1286830 1352 577 0 False 531 386 27 {X=0,Y=0,Width=0,Height=0} +40 585 387 0.0340569292437349 0.0339640704247495 0.0340733958953231 0.0339360646982528 0.00202218001903333 0.00208399043881296 3017557 1284307 1352 577 0 False 585 387 27 {X=0,Y=0,Width=0,Height=0} +41 104 436 0.0337395483600389 0.0335263718607769 0.033676661326009 0.0336308842603189 0.00236198933951809 0.00250846891896087 2989436 1267756 1352 577 0 False 104 436 27 {X=0,Y=0,Width=0,Height=0} +42 158 437 0.0338313620753714 0.0339350862167794 0.0337529564354925 0.0340123598077363 0.00238262207849316 0.00239915012430456 2997571 1283211 1352 577 0 False 158 437 27 {X=0,Y=0,Width=0,Height=0} +43 211 437 0.0341068145076279 0.0340748239493654 0.0340733958953231 0.0340428778515297 0.00263922482101499 0.00250707196219325 3021977 1288495 1352 577 0 False 211 437 27 {X=0,Y=0,Width=0,Height=0} +44 264 437 0.0341458875355912 0.034176506686268 0.0340733958953231 0.0340428778515297 0.00237013061697275 0.00225989355764115 3025439 1292340 1352 577 0 False 264 437 27 {X=0,Y=0,Width=0,Height=0} +45 318 438 0.0342907579535394 0.0341495587775805 0.0343175402456703 0.0342870222018769 0.00192464681047011 0.00187141564155894 3038275 1291321 1352 577 0 False 318 438 27 {X=0,Y=0,Width=0,Height=0} +46 371 438 0.0382616588182023 0.0342743812790578 0.0346379797055009 0.0342107270923934 0.0245687536004704 0.00188691289254425 3390110 1296041 1352 577 0 False 371 438 27 {X=0,Y=0,Width=0,Height=0} +47 424 438 0.0342179841568014 0.0341049453114804 0.0342412451361868 0.0340733958953231 0.00210890612174584 0.00205145150660672 3031827 1289634 1352 577 0 False 424 438 27 {X=0,Y=0,Width=0,Height=0} +48 478 439 0.0344069499878786 0.0343292026870159 0.0342870222018769 0.0342565041580835 0.00256176252803611 0.00230368904797772 3048570 1298114 1352 577 0 False 478 439 27 {X=0,Y=0,Width=0,Height=0} +49 531 439 0.0342896857589535 0.0343516548700147 0.0343022812237736 0.0343022812237736 0.00210643544786279 0.00197991973319987 3038180 1298963 1352 577 0 False 531 439 27 {X=0,Y=0,Width=0,Height=0} +50 584 439 0.0339429380298616 0.03443569849495 0.0339665827420462 0.034378576333257 0.00216743134982953 0.00237160175099185 3007457 1302141 1352 577 0 False 584 439 27 {X=0,Y=0,Width=0,Height=0} +51 104 489 0.033835097827034 0.0341167928709427 0.0338445105668727 0.0340123598077363 0.00201600500366879 0.0021447109785099 2997902 1290082 1352 577 0 False 104 489 27 {X=0,Y=0,Width=0,Height=0} +52 157 489 0.0337233300061442 0.0338682585766876 0.0336614023041123 0.0337376974135958 0.0022683721346649 0.00223989037628031 2987999 1280684 1352 577 0 False 157 489 27 {X=0,Y=0,Width=0,Height=0} +53 211 490 0.034135380028649 0.0338531317820171 0.0341191729610132 0.0336461432822156 0.00232667728156598 0.00228351210820986 3024508 1280112 1352 577 0 False 211 490 27 {X=0,Y=0,Width=0,Height=0} +54 264 490 0.0342605559249924 0.0342490994334196 0.0342565041580835 0.034378576333257 0.00181384001380275 0.00191440279253927 3035599 1295085 1352 577 0 False 264 490 27 {X=0,Y=0,Width=0,Height=0} +55 317 490 0.0342922703122185 0.0341911310174792 0.0343175402456703 0.0342565041580835 0.00166932061023946 0.00182343443174392 3038409 1292893 1352 577 0 False 317 490 27 {X=0,Y=0,Width=0,Height=0} +56 371 491 0.0343862058442054 0.0343188625179317 0.0343175402456703 0.034378576333257 0.00160258592927534 0.00144617243391578 3046732 1297723 1352 577 0 False 371 491 27 {X=0,Y=0,Width=0,Height=0} +57 424 491 0.0343596718497682 0.0342158575087677 0.0343175402456703 0.0341954680704967 0.00196913626785325 0.0020296574658787 3044381 1293828 1352 577 0 False 424 491 27 {X=0,Y=0,Width=0,Height=0} +58 477 491 0.0342095871802546 0.0343415527099375 0.0342565041580835 0.0344090943770504 0.00253237448379139 0.00280567600005066 3031083 1298581 1352 577 0 False 477 491 27 {X=0,Y=0,Width=0,Height=0} +59 531 492 0.0340588253352132 0.0340756702036127 0.0341344319829099 0.0339971007858396 0.00228514629227739 0.00215024071306315 3017725 1288527 1352 577 0 False 531 492 27 {X=0,Y=0,Width=0,Height=0} +60 584 492 0.0343185898677386 0.0342451061711901 0.0342717631799802 0.0343175402456703 0.00228238594718412 0.00208062892129834 3040741 1294934 1352 577 0 False 584 492 27 {X=0,Y=0,Width=0,Height=0} +61 104 542 0.0335905697438877 0.0338933024133188 0.0335545891508354 0.0338902876325628 0.00174296072329567 0.00175892543066053 2976236 1281631 1352 577 0 False 104 542 27 {X=0,Y=0,Width=0,Height=0} +62 157 542 0.0338129654735285 0.0340098474904396 0.0337071793698024 0.0340581368734264 0.00197004776753602 0.00187182145483227 2995941 1286038 1352 577 0 False 157 542 27 {X=0,Y=0,Width=0,Height=0} +63 210 543 0.034008217750757 0.0343444617089126 0.0339360646982528 0.0343175402456703 0.00222264430251821 0.00218283362258089 3013241 1298691 1352 577 0 False 210 543 27 {X=0,Y=0,Width=0,Height=0} +64 264 543 0.0339973716560508 0.0341747877323282 0.0339665827420462 0.0342717631799802 0.00183206368495597 0.00188069929593702 3012280 1292275 1352 577 0 False 264 543 27 {X=0,Y=0,Width=0,Height=0} +65 317 543 0.0341802541936352 0.0342979177253109 0.0341344319829099 0.0342259861142901 0.00155666397478304 0.00155674685440597 3028484 1296931 1352 577 0 False 317 543 27 {X=0,Y=0,Width=0,Height=0} +66 370 543 0.0343229576498939 0.034222151524732 0.0343480582894636 0.0342259861142901 0.00163447429165016 0.00162031919651279 3041128 1294066 1352 577 0 False 370 543 27 {X=0,Y=0,Width=0,Height=0} +67 424 544 0.0343895127180336 0.0339328647993802 0.0343633173113603 0.0339818417639429 0.00179390689266101 0.001895509824038 3047025 1283127 1352 577 0 False 424 544 27 {X=0,Y=0,Width=0,Height=0} +68 477 544 0.0340094705254837 0.034235136238339 0.0338902876325628 0.0340886549172198 0.00251047124906689 0.00241256673802125 3013352 1294557 1352 577 0 False 477 544 27 {X=0,Y=0,Width=0,Height=0} +69 530 544 0.0341120626179696 0.0343361578391109 0.0341802090486 0.0345922026398108 0.00244524586110542 0.00281154561461638 3022442 1298377 1352 577 0 False 530 544 27 {X=0,Y=0,Width=0,Height=0} +70 584 545 0.0343360271375836 0.0342285513224772 0.0343022812237736 0.0341039139391165 0.00220103257561558 0.00207613027183861 3042286 1294308 1352 577 0 False 584 545 27 {X=0,Y=0,Width=0,Height=0} +71 103 595 0.0336381300384681 0.0337099825869966 0.033676661326009 0.033676661326009 0.00198696237045589 0.00214531867647872 2980450 1274699 1352 577 0 False 103 595 27 {X=0,Y=0,Width=0,Height=0} +72 157 595 0.0338397026206241 0.0340959538601028 0.0337529564354925 0.0339208056763561 0.00215465873260296 0.00202470974494403 2998310 1289294 1352 577 0 False 157 595 27 {X=0,Y=0,Width=0,Height=0} +73 210 595 0.033895840471892 0.0334945315447221 0.0338139925230793 0.0334935530632486 0.00217856565492366 0.00206917075079217 3003284 1266552 1352 577 0 False 210 595 27 {X=0,Y=0,Width=0,Height=0} +74 263 596 0.0339609847576818 0.0343159799644018 0.0339360646982528 0.0344701304646372 0.0019157270967108 0.00193293434110831 3009056 1297614 1352 577 0 False 263 596 27 {X=0,Y=0,Width=0,Height=0} +75 317 596 0.0340949752221474 0.0341428151890473 0.0341039139391165 0.0341344319829099 0.00164422326930521 0.00172617317911337 3020928 1291066 1352 577 0 False 317 596 27 {X=0,Y=0,Width=0,Height=0} +76 370 596 0.0341816311172087 0.0341848898924054 0.0341802090486 0.0341191729610132 0.00190815029467266 0.00207202117119549 3028606 1292657 1352 577 0 False 370 596 27 {X=0,Y=0,Width=0,Height=0} +77 423 596 0.034112660789686 0.0340428778515297 0.0340428778515297 0.0339360646982528 0.0019626037082548 0.00195971238851446 3022495 1287287 1352 577 0 False 423 596 27 {X=0,Y=0,Width=0,Height=0} +78 477 597 0.0341390480627588 0.0343614925756396 0.0342565041580835 0.0342717631799802 0.00232478350468162 0.00231144980791214 3024833 1299335 1352 577 0 False 477 597 27 {X=0,Y=0,Width=0,Height=0} +79 530 597 0.0341900619525318 0.0341630724000921 0.0341649500267033 0.0341649500267033 0.00222147709803031 0.00223126731006474 3029353 1291832 1352 577 0 False 530 597 27 {X=0,Y=0,Width=0,Height=0} +80 583 597 0.0341248612354481 0.0340851112275592 0.0341039139391165 0.0341344319829099 0.00191031135834673 0.00203422791887296 3023576 1288884 1352 577 0 False 583 597 27 {X=0,Y=0,Width=0,Height=0} +81 104 652 0.0336905659968498 0.0371475489355712 0.0336003662165255 0.0371709773403525 0.00209334446749031 0.00243502653032305 2985096 1823414 1352 749 0 True 103 647 31 {X=0,Y=0,Width=0,Height=0} +82 156 648 0.033872331194813 0.0337000390995908 0.0338445105668727 0.033829251544976 0.00196252955862299 0.0020009641728283 3001201 1274323 1352 577 0 False 156 648 27 {X=0,Y=0,Width=0,Height=0} +83 210 648 0.03370691978585 0.0338247822647324 0.0336461432822156 0.0337834744792859 0.00222543864716547 0.00234598796325746 2986545 1279040 1352 577 0 False 210 648 27 {X=0,Y=0,Width=0,Height=0} +84 263 648 0.03396400947504 0.0339678785688624 0.0339665827420462 0.034027618829633 0.00197378006189926 0.00206093111287589 3009324 1284451 1352 577 0 False 263 648 27 {X=0,Y=0,Width=0,Height=0} +85 316 649 0.0340762174600229 0.0339807046097981 0.034027618829633 0.0340123598077363 0.00184048728791547 0.00201067235554532 3019266 1284936 1352 577 0 False 316 649 27 {X=0,Y=0,Width=0,Height=0} +86 370 649 0.0340926276803172 0.0340249213942197 0.0340581368734264 0.0341039139391165 0.00201616281251048 0.00194157226760956 3020720 1286608 1352 577 0 False 370 649 27 {X=0,Y=0,Width=0,Height=0} +87 423 649 0.033916483039236 0.0340939440062655 0.0339360646982528 0.0340733958953231 0.00191404171484409 0.00212303173265371 3005113 1289218 1352 577 0 False 423 649 27 {X=0,Y=0,Width=0,Height=0} +88 476 650 0.0340568502399233 0.034186238610112 0.0340123598077363 0.0341039139391165 0.00190405688418053 0.00193197345763017 3017550 1292708 1352 577 0 False 476 650 27 {X=0,Y=0,Width=0,Height=0} +89 530 650 0.0341780082281341 0.0339846978720276 0.0341649500267033 0.0339971007858396 0.00164940568082619 0.00150936640644827 3028285 1285087 1352 577 0 False 530 650 27 {X=0,Y=0,Width=0,Height=0} +90 583 650 0.0339930038738955 0.034018574487365 0.0340123598077363 0.0340886549172198 0.00168757581766895 0.00166422398188934 3011893 1286368 1352 577 0 False 583 650 27 {X=0,Y=0,Width=0,Height=0} +91 105 706 0.0334391081508007 0.0366424055307486 0.0333867399099718 0.0366674296177615 0.00243458217680203 0.00298156442836785 2962816 2067571 1352 861 0 True 103 700 32 {X=0,Y=0,Width=0,Height=0} +92 156 700 0.0336243720889917 0.0336242993444571 0.0336461432822156 0.0335698481727321 0.00227820138548044 0.00224735113928469 2979231 1271459 1352 577 0 False 156 700 27 {X=0,Y=0,Width=0,Height=0} +93 209 701 0.0338394768954482 0.0336721127094297 0.033829251544976 0.0334630350194553 0.00253270345682552 0.00261726721668795 2998290 1273267 1352 577 0 False 209 701 27 {X=0,Y=0,Width=0,Height=0} +94 263 701 0.0340324042033639 0.0338287490815166 0.0340733958953231 0.0337376974135958 0.00233746012260251 0.00246578030733017 3015384 1279190 1352 577 0 False 263 701 27 {X=0,Y=0,Width=0,Height=0} +95 316 701 0.0339810404395682 0.0340337806183712 0.0339360646982528 0.0340733958953231 0.00208553747292505 0.00212698615844171 3010833 1286943 1352 577 0 False 316 701 27 {X=0,Y=0,Width=0,Height=0} +96 369 702 0.0340930791306691 0.0339794881193176 0.0340886549172198 0.0340581368734264 0.00222245604811752 0.00222378072498782 3020760 1284890 1352 577 0 False 369 702 27 {X=0,Y=0,Width=0,Height=0} +97 423 702 0.0338578396385147 0.0339394497152421 0.0338750286106661 0.0338750286106661 0.00223784532538851 0.00213515392054409 2999917 1283376 1352 577 0 False 423 702 27 {X=0,Y=0,Width=0,Height=0} +98 476 702 0.0342693930656323 0.0341852072377481 0.0342717631799802 0.0342412451361868 0.00214600360912788 0.0020532368864921 3036382 1292669 1352 577 0 False 476 702 27 {X=0,Y=0,Width=0,Height=0} +99 529 703 0.0340563310720185 0.0340573170646243 0.0340123598077363 0.0340581368734264 0.0017926475174755 0.00165290437173833 3017504 1287833 1352 577 0 False 529 703 27 {X=0,Y=0,Width=0,Height=0} +100 583 708 0.0339936923356822 0.0371018941050365 0.0339818417639429 0.0370336461432822 0.00151506333938431 0.00193371825405358 3011954 1821173 1352 749 0 True 583 703 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv new file mode 100644 index 0000000..44f84fe --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 243 194 0.244063032344104 0.936971201121618 0.240390630960555 1 0.0178715869844055 0.153759225582194 23080310 52869195 1443 861 74 True 241 197 32 {X=0,Y=0,Width=0,Height=0} +2 294 197 0.236054118452837 0.235209862458562 0.235812924391546 0.235278858625162 0.00532826314116166 0.00473852499829321 22322931 8894154 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} +3 347 198 0.234059300069829 0.234171667169791 0.234256504158083 0.234302281223774 0.00439842328637859 0.00420182416898973 22134287 8854896 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} +4 400 198 0.234259010317605 0.234989333890803 0.23413443198291 0.234912642099641 0.00482054756961845 0.0050862016925346 22153173 8885815 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} +5 452 198 0.235596284348859 0.234712344297483 0.234424353398947 0.234637979705501 0.0103017541508817 0.00561943203235896 22279635 8875341 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} +6 505 198 0.234934393872366 0.234554808780258 0.234439612420844 0.234454871442741 0.00764554729187918 0.00605149358881356 22217042 8869384 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} +7 558 199 0.234186162499278 0.234570200029381 0.234256504158083 0.234668497749294 0.00525394300422528 0.00583553462905912 22146284 8869966 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} +8 611 199 0.234397472987539 0.235094031408462 0.23440909437705 0.235111009384298 0.00467361771658753 0.00494939654409916 22166267 8889774 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} +9 663 199 0.235356010270178 0.23524323661044 0.235431448844129 0.235263599603265 0.00404128989293787 0.00348125326870281 22256913 8895416 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} +10 716 198 0.239602015523279 0.960029833957562 0.239246204318303 1 0.00548750584398655 0.0968036341481207 22658445 54170293 1443 861 76 True 716 199 33 {X=0,Y=0,Width=0,Height=0} +11 241 249 0.234937164394706 0.234644485285027 0.234775310902571 0.234439612420844 0.0052196979542815 0.00464370387969955 22217304 8872775 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} +12 294 249 0.234956325411807 0.235461966887922 0.235004196231022 0.235492484931716 0.00397291790017794 0.00388106082685316 22219116 8903687 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} +13 347 250 0.234416760898793 0.234556897970431 0.23440909437705 0.234515907530327 0.00351402672044706 0.00345958331230322 22168091 8869463 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} +14 399 250 0.234683132874939 0.234374530180137 0.234699015793088 0.234439612420844 0.0036630476489971 0.0033553146381764 22193281 8862567 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} +15 452 250 0.234592593896782 0.234404889551259 0.234622720683604 0.234256504158083 0.00498501757780704 0.00440659345629358 22184719 8863715 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} +16 505 251 0.234796322459403 0.242187175836691 0.234653238727398 0.238712138551919 0.0057904875034629 0.0138657776948359 22203985 9157992 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} +17 558 251 0.235299722138816 0.235389691486114 0.235309376668956 0.235324635690852 0.00517579528685075 0.00473517678064104 22251590 8900954 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} +18 610 251 0.235598504996537 0.235351239808752 0.235553521019303 0.235294117647059 0.0041894639929763 0.00418926455906686 22279845 8899500 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} +19 663 251 0.235585255132062 0.235613472843635 0.235629816128786 0.235553521019303 0.00355453674606839 0.00327944844890845 22278592 8909416 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} +20 716 252 0.235849068076122 0.235475850746667 0.235828183413443 0.235477225909819 0.00388107517227748 0.00366005867255676 22303540 8904212 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} +21 241 301 0.234329510594102 0.234573003246575 0.234073395895323 0.23440909437705 0.00485464829894404 0.00479910601690695 22159840 8870072 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} +22 294 302 0.235184058118368 0.235020010607268 0.235187304493782 0.234836346990158 0.00371968373548061 0.00361495601538441 22240652 8886975 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} +23 346 302 0.235043681461626 0.23470449000025 0.235095750362402 0.234531166552224 0.00388723962572734 0.00405959941220269 22227377 8875044 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} +24 399 302 0.23470144793102 0.234469707337514 0.234653238727398 0.234561684596017 0.00383057398469928 0.00373834133434694 22195013 8866166 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} +25 452 302 0.235150198528546 0.234919729478963 0.235080491340505 0.234973678187228 0.00419854053305407 0.00385778398010064 22237450 8883183 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} +26 505 303 0.235622255352171 0.235666919088441 0.235614557106889 0.235553521019303 0.00480104899488303 0.00522381278786094 22282091 8911437 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} +27 557 303 0.235792949136964 0.236576483731622 0.235690852216373 0.236621652552071 0.00465909482128595 0.00451039346035424 22298233 8945831 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} +28 610 303 0.236147544272973 0.236044665828082 0.23611810482948 0.236133363851377 0.00419408218780256 0.00437767164993768 22331766 8925721 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} +29 663 303 0.235742128028692 0.23624779329288 0.235690852216373 0.236224917982757 0.00363138760701333 0.00350588466061443 22293427 8933402 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} +30 716 304 0.23577450718673 0.235858357666449 0.23584344243534 0.235873960479133 0.00352616183180111 0.00361014612441154 22296489 8918676 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} +31 241 353 0.234524071054169 0.234860147890863 0.234500648508431 0.234744792858778 0.00484792987678612 0.00502096212546939 22178239 8880930 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} +32 293 354 0.235199549779545 0.235469900521491 0.235202563515679 0.235507743953613 0.00390749134982057 0.00330776958332747 22242117 8903987 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} +33 346 354 0.23546853366034 0.235342195466484 0.235477225909819 0.235172045471885 0.00391076805473195 0.00383288253610792 22267554 8899158 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} +34 399 354 0.234882145204874 0.235457391825898 0.234851606012055 0.235355153734646 0.00399786954882024 0.00385805696097952 22212101 8903514 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} +35 452 355 0.236086233248055 0.23589852829775 0.236194399938964 0.235873960479133 0.0041759956720725 0.00417718507580709 22325968 8920195 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} +36 504 355 0.23678598048019 0.236500902649159 0.236743724727245 0.236591134508278 0.00468194663887821 0.00448143230594839 22392141 8942973 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} +37 557 355 0.237220889040527 0.236742640463991 0.237140459296559 0.236728465705348 0.00418170395151014 0.00424007037728504 22433269 8952114 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} +38 610 355 0.237105256743618 0.237404940194287 0.237186236362249 0.237399862668803 0.00399935464684137 0.00387438876803293 22422334 8977158 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} +39 663 356 0.239106028577303 0.237144584786015 0.237338826581216 0.237018387121386 0.00871503010773739 0.00381702814409755 22611541 8967313 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.236204604343767 0.236674543442528 0.236133363851377 0.236621652552071 0.0036930852759722 0.00363408168709691 22337162 8949539 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 240 406 0.234702780319626 0.234583845879119 0.234592202639811 0.234485389486534 0.00548543575510393 0.00563540663448949 22195139 8870482 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} +42 293 406 0.236002356212931 0.235165143210681 0.23566033417258 0.235263599603265 0.00665202611645494 0.00409121630286539 22318036 8892463 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} +43 346 406 0.235747933436192 0.235617386769529 0.235599298084993 0.235431448844129 0.00448726476483232 0.00455515729191212 22293976 8909564 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} +44 399 406 0.236087470466047 0.236373990957509 0.23611810482948 0.236301213092241 0.00450377314878849 0.00424724952993202 22326085 8938174 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} +45 451 407 0.236800509860707 0.237210143044736 0.236896314946212 0.236881055924315 0.00422302582709169 0.00427852247415564 22393515 8969792 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} +46 504 407 0.237498681490442 0.237474835506025 0.237521934843976 0.237323567559319 0.00462307241313706 0.00482948759176095 22459539 8979801 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} +47 557 407 0.237733974973618 0.237302252530465 0.23782711528191 0.237186236362249 0.00413019483740657 0.00387522346958884 22481790 8973275 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} +48 610 407 0.237804929954163 0.238019770350398 0.238010223544671 0.238147554741741 0.0041987301822723 0.00432531527166206 22488500 9000407 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.237554366874577 0.238101248767146 0.237628747997253 0.238223849851225 0.00390447499858489 0.00389156578495378 22464805 9003488 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 715 408 0.236847830805258 0.237028013263449 0.236774242771038 0.237109941252766 0.00414122677851682 0.00369962178978672 22397990 8962905 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} +51 240 458 0.234795159263001 0.234961724845985 0.234943160143435 0.235004196231022 0.00588157022043733 0.00608202980362807 22203875 8884771 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} +52 293 458 0.235408343533773 0.235406722352841 0.235187304493782 0.235538261997406 0.00490814644868656 0.00469961396722399 22261862 8901598 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} +53 346 458 0.235481878695429 0.235500921028744 0.235492484931716 0.235370412756542 0.00431010331847649 0.00408992605493333 22268816 8905160 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} +54 398 459 0.236443355692612 0.237262637253514 0.236270695048447 0.237064164187076 0.00485015418684728 0.00469082831112488 22359740 8971777 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} +55 451 459 0.237460454626854 0.237740189103445 0.237491416800183 0.237521934843976 0.00552632814406493 0.0060540199823639 22455924 8989835 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} +56 504 459 0.238332069414697 0.238326828414943 0.238376440070192 0.238574807354849 0.00547264500235485 0.00557224613173609 22538350 9012018 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} +57 557 459 0.238621758191454 0.238658401407215 0.238742656595712 0.238513771267262 0.00521866944191998 0.00480464801515095 22565745 9024556 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.238724849116243 0.238586443350749 0.238757915617609 0.238330663004501 0.00511196014396748 0.00509365087777816 22575494 9021835 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 662 460 0.237645751813754 0.237383492938207 0.237720302128634 0.237354085603113 0.00467859981971382 0.00437025187826847 22473447 8976347 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} +60 715 460 0.236335654280264 0.236254272426961 0.236423285267414 0.236133363851377 0.00488518162636706 0.00498923170790365 22349555 8933647 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} +61 240 510 0.235324540520237 0.234997241078927 0.235141527428092 0.235156786449989 0.00533364945924697 0.00511228377746972 22253937 8886114 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} +62 293 510 0.235418209554167 0.234827143975219 0.235431448844129 0.234744792858778 0.00401678037037983 0.00382767747623919 22262795 8879682 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} +63 345 510 0.236046906635142 0.236399219912257 0.236057068741894 0.236362249179828 0.00382129889061187 0.00401187479317049 22322249 8939128 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} +64 398 511 0.2373540750286 0.237021084556799 0.237216754406043 0.237003128099489 0.00392461204209065 0.00389068183209424 22445864 8962643 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} +65 451 511 0.238004671925478 0.238053832083852 0.238040741588464 0.238010223544671 0.00551145577454909 0.00612648221123265 22507389 9001695 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} +66 504 511 0.23860035537765 0.238584036815233 0.238544289311055 0.238742656595712 0.00578903988787275 0.00542649329710428 22563721 9021744 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} +67 556 511 0.240097093061158 0.238429727642326 0.239246204318303 0.238239108873121 0.00685316042106566 0.00474601093945347 22705263 9015909 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} +68 609 512 0.238502509411184 0.238584962405816 0.238361181048295 0.238605325398642 0.00478670821737547 0.00499787826064713 22554468 9021779 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} +69 662 512 0.237528015188807 0.237247880695076 0.237430380712596 0.237140459296559 0.00436904383502383 0.00408731728827779 22462313 8971219 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} +70 714 512 0.236596442913678 0.240477424911795 0.236514839398795 0.236636911573968 0.00425625286532074 0.0257713590627649 22374217 9093340 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} +71 240 562 0.235442668402156 0.235693866997129 0.235355153734646 0.235553521019303 0.0050967174366776 0.00481984648516619 22265108 8912456 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} +72 292 562 0.23553046858151 0.235666019943304 0.235553521019303 0.235568780041199 0.00408735659297474 0.00355808377996455 22273411 8911403 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} +73 345 563 0.236682730937709 0.235744642251967 0.236728465705348 0.235614557106889 0.00367279593638989 0.00354518278465218 22382377 8914376 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} +74 398 563 0.237207670899591 0.237113881624105 0.237216754406043 0.23736934462501 0.00365835917678755 0.00376237880251766 22432019 8966152 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} +75 451 563 0.238090325478744 0.238118147406647 0.238025482566567 0.237994964522774 0.00487503218974162 0.00476329535074882 22515489 9004127 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} +76 503 563 0.238981386795532 0.238678975963603 0.238941023880369 0.238544289311055 0.00593696773455382 0.00650481065937466 22599754 9025334 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} +77 556 564 0.239304829416983 0.239225867770923 0.238956282902266 0.239368276493477 0.00543544963088122 0.00445890907973087 22630341 9046014 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} +78 609 564 0.238125834692555 0.238605642743985 0.237933928435187 0.238742656595712 0.00411402114601187 0.00438144661524744 22518847 9022561 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} +79 661 564 0.236777510295478 0.237055252072034 0.236697947661555 0.237201495384146 0.00370933854279075 0.00366245207641505 22391340 8963935 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} +80 714 564 0.236592223683091 0.236956425443216 0.236636911573968 0.236972610055695 0.00394595017275067 0.00383010509840887 22373818 8960198 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} +81 241 616 0.24534876620022 0.934671058642052 0.243869687953002 1 0.00961432315807048 0.143771824580398 23201898 52739408 1443 861 73 True 239 614 32 {X=0,Y=0,Width=0,Height=0} +82 292 614 0.237782638881288 0.236659601765974 0.237094682230869 0.236636911573968 0.00507431247118531 0.00364409591128407 22486392 8948974 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} +83 345 615 0.23639730368959 0.236566804698668 0.236301213092241 0.236560616464485 0.00356201607000948 0.00331352281393276 22355385 8945465 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} +84 398 615 0.237468290340801 0.237500804933239 0.237476157778286 0.237201495384146 0.00425129623237894 0.00416117329817949 22456665 8980783 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} +85 450 615 0.238080544054451 0.237664766693654 0.238132295719844 0.237476157778286 0.00460363557650439 0.00471125352262127 22514564 8986983 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} +86 503 616 0.238458572310712 0.238728296718953 0.238620584420539 0.238895246814679 0.00509041182154061 0.00500177721881225 22550313 9027199 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} +87 556 616 0.238392428733468 0.237871649411675 0.238269626916915 0.23778133821622 0.00421389692898973 0.00416527685560705 22544058 8994806 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} +88 608 616 0.237469950539303 0.238242176544768 0.237338826581216 0.237994964522774 0.00387172569828452 0.00417673330424349 22456822 9008817 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} +89 661 616 0.236612473875005 0.236401018202532 0.236499580376898 0.236255436026551 0.00362395752824219 0.00349799082420489 22375733 8939196 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.237033825909999 0.239418813739308 0.237155718318456 0.237201495384146 0.00397961424235414 0.0149830010263483 22415579 9053310 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 670 0.24758213501633 0.93468504164818 0.243808651865415 1 0.0187359205405292 0.151246115259032 23413101 52740197 1443 861 74 True 239 666 32 {X=0,Y=0,Width=0,Height=0} +92 292 667 0.237444138153683 0.236545489669814 0.236896314946212 0.236408026245518 0.00487898841261875 0.00367081399518505 22454381 8944659 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} +93 345 667 0.236115609244472 0.236833797913692 0.236163881895171 0.236835278858625 0.0037210687412987 0.0035279401762037 22328746 8955561 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} +94 397 667 0.236493732671348 0.23652761254884 0.236469062333104 0.236377508201724 0.003984520146957 0.00397664271608808 22364504 8943983 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} +95 450 667 0.237563037975032 0.237216251942583 0.23750667582208 0.237247272449836 0.00465877789527334 0.00442178125158956 22465625 8970023 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} +96 503 668 0.237648564634145 0.238860814844992 0.23773556115053 0.237888151369497 0.00466099053966206 0.0105111726258006 22473713 9032210 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} +97 555 668 0.23714146387527 0.237444000116889 0.237094682230869 0.23755245288777 0.00400852897662918 0.00347124317730743 22425758 8978635 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} +98 608 668 0.236458138861435 0.236534911491723 0.236377508201724 0.236469062333104 0.00376498358883845 0.00350505792586989 22361138 8944259 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} +99 661 668 0.237022363138179 0.236187153886971 0.237018387121386 0.235996032654307 0.00370613662099995 0.00384025977593771 22414495 8931109 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} +100 714 672 0.240536136255981 0.932900710820534 0.240009155413138 1 0.00510503018700649 0.142664608888639 22746782 52639515 1443 861 74 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv new file mode 100644 index 0000000..603ca40 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 243 194 0.0245643710509813 0.14376828900552 0.0243228809033341 0.156237125200275 0.00291706816235857 0.0447224627674928 2322979 8112217 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} +2 294 197 0.0237926748341031 0.0237097432557173 0.023773556115053 0.0237582970931563 0.00184430916143761 0.001834910339656 2250002 896553 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} +3 347 198 0.0236394501443712 0.0236923685982023 0.0235294117647059 0.0237125200274662 0.00171691139124172 0.00153934361057465 2235512 895896 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} +4 400 198 0.0235320130948421 0.0237262981044302 0.0235141527428092 0.0237125200274662 0.0019017104755988 0.00193728968611838 2225352 897179 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} +5 452 198 0.0237136620748431 0.0237449950342065 0.0235599298084993 0.0237888151369497 0.00250007421371629 0.00217163980887153 2242530 897886 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} +6 505 198 0.023614187633414 0.0237559963394215 0.0236209658960861 0.0236667429617761 0.00235598379590826 0.00236539482558407 2233123 898302 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} +7 558 199 0.0235502224057958 0.0237836582751302 0.0235294117647059 0.0237582970931563 0.00214728018826435 0.0023037143730628 2227074 899348 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} +8 611 199 0.023673024222349 0.0237529022223298 0.023575188830396 0.0237582970931563 0.00197411574105141 0.00206220704793145 2238687 898185 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} +9 663 199 0.0237765592766737 0.0236974725691314 0.0237888151369497 0.0237582970931563 0.0016019583530062 0.00153909746330265 2248478 896089 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} +10 716 198 0.0239661708647747 0.152767319322149 0.0239414053559167 0.168505378805219 0.00183162858391976 0.0404495893394709 2266409 8619993 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} +11 241 249 0.023722428345912 0.0233443465389986 0.0237277790493629 0.0233463035019455 0.00193482772466079 0.00196172565464077 2243359 882736 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} +12 294 249 0.0236902395291043 0.0237964578706207 0.0236820019836728 0.0238040741588464 0.00152703052024379 0.00158438936217126 2240315 899832 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} +13 347 250 0.0236089955476543 0.023976895143413 0.0236057068741894 0.0239719233997101 0.00147423544706311 0.00150826972718729 2232632 906655 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} +14 399 250 0.0235606700243917 0.0236349555366118 0.0235599298084993 0.0236514839398795 0.0014340751538929 0.00143936700759648 2228062 893725 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} +15 452 250 0.0236837150547382 0.0236578308467342 0.0236209658960861 0.0237125200274662 0.00187358272320869 0.00181283048937734 2239698 894590 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} +16 505 251 0.0236977580076687 0.024299582466088 0.0236362249179828 0.0242160677500572 0.00221213787002112 0.00277730950431324 2241026 918857 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} +17 558 251 0.023609386804626 0.0236798863480546 0.0236362249179828 0.0236972610055695 0.00197006206488772 0.00180962968641433 2232669 895424 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} +18 610 251 0.0237539509684165 0.0235894693708192 0.0237430380712596 0.023575188830396 0.0017126844480609 0.00161940470418986 2246340 892005 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} +19 663 251 0.023719393460753 0.0237744288147456 0.0236820019836728 0.0237888151369497 0.00144278360619895 0.00136564890208894 2243072 898999 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} +20 716 252 0.0237375498991429 0.023645639496484 0.0237277790493629 0.0236057068741894 0.0015064827946481 0.00146482923688221 2244789 894129 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} +21 241 301 0.0235224537353171 0.0236294019931139 0.0234988937209125 0.023575188830396 0.00201328448094139 0.00198167283096212 2224448 893515 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} +22 294 302 0.0236927668376513 0.0237451272614327 0.0236972610055695 0.0236820019836728 0.00156771872122458 0.00139431075017163 2240554 897891 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} +23 346 302 0.0237895870763804 0.0236528062121409 0.0238040741588464 0.0236972610055695 0.00148716942699854 0.00161010219733999 2249710 894400 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} +24 399 302 0.0236440183338787 0.023581218391908 0.0236514839398795 0.0234836346990158 0.00153908907680929 0.0016013910021286 2235944 891693 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} +25 452 302 0.0235915158780803 0.0237806434943742 0.0236209658960861 0.0237430380712596 0.00167048870058819 0.00164578081283395 2230979 899234 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} +26 505 303 0.0237614165744173 0.0238709546898286 0.0237430380712596 0.0238498512245365 0.00202568761063386 0.00204340581959195 2247046 902649 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} +27 557 303 0.0238964848257593 0.0236739361228782 0.0238040741588464 0.0235904478522927 0.00181263011392997 0.00188806542443517 2259819 895199 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} +28 610 303 0.0238088644131217 0.0237532195676725 0.023773556115053 0.0237277790493629 0.00161545474341339 0.00176819029456967 2251533 898197 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} +29 663 303 0.0238341586476171 0.0239202754451793 0.0238040741588464 0.0238956282902266 0.00134677496741735 0.0014258780326157 2253925 904514 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} +30 716 304 0.0238211202733977 0.023794289344112 0.0238193331807431 0.0238040741588464 0.0014060812247486 0.00140879137249544 2252692 899750 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} +31 241 353 0.023631667302988 0.0234852214257295 0.023575188830396 0.0234988937209125 0.00203605955982777 0.00201968362892129 2234776 888063 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} +32 293 354 0.0237706692730726 0.0236117628811466 0.023773556115053 0.0235904478522927 0.00155250353134278 0.00139887368371927 2247921 892848 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} +33 346 354 0.0237540249900058 0.0237388068000231 0.0237277790493629 0.0237430380712596 0.00156526478129551 0.00156041816560021 2246347 897652 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} +34 399 354 0.0237538134997508 0.0237284930763841 0.0237430380712596 0.0236057068741894 0.00161838369011668 0.00161233397735218 2246327 897262 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} +35 452 355 0.02375877294623 0.0236263343214674 0.023773556115053 0.0235904478522927 0.00165925010674684 0.00160622611882685 2246796 893399 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} +36 504 355 0.0238926568521442 0.0237558641121953 0.0238193331807431 0.0238651102464332 0.00180567361988376 0.00195177722526399 2259457 898297 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} +37 557 355 0.0238026043015743 0.023847471134466 0.0237888151369497 0.0238651102464332 0.00166144176923119 0.00156900971625776 2250941 901761 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} +38 610 355 0.0238496080107433 0.0240162988568031 0.0238498512245365 0.0240329594872969 0.00168112851771519 0.00159708102021982 2255386 908145 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} +39 663 356 0.0241061139664939 0.0238536593686494 0.0240482185091936 0.0238498512245365 0.00170180913739767 0.00147921221045675 2279643 901995 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.0237713989144522 0.0240361593861695 0.023773556115053 0.0239871824216068 0.00146289875656915 0.00150638460752202 2247990 908896 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 240 406 0.0235832783326489 0.0235713806862831 0.023575188830396 0.0234836346990158 0.00224389499844129 0.00224272458038309 2230200 891321 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} +42 293 406 0.023766566362126 0.023968326819159 0.0236667429617761 0.0240329594872969 0.00192489410834261 0.00151903391664452 2247533 906331 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} +43 346 406 0.0236918362805293 0.0238774602693548 0.0237125200274662 0.0238803692683299 0.00176191844001734 0.00188208989719041 2240466 902895 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} +44 399 406 0.0237652339735196 0.0237353953375887 0.023773556115053 0.0237888151369497 0.00167620280013601 0.00168660313403511 2247407 897523 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} +45 451 407 0.0238540704551233 0.0239364336122138 0.0238345922026398 0.02392614633402 0.00178619999918983 0.00168829891230789 2255808 905125 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} +46 504 407 0.024055694689707 0.0236824515562417 0.0239871824216068 0.0236820019836728 0.00181255347452925 0.00181473384848793 2274875 895521 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} +47 557 407 0.0239813029925184 0.0238590806849212 0.0239566643778134 0.0238498512245365 0.00156213014443488 0.00154870235005164 2267840 902200 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} +48 610 407 0.023837531917184 0.0240263216805446 0.0238040741588464 0.0238803692683299 0.00161144183024476 0.00152542765984723 2254244 908524 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.0240307071160813 0.0238322121125693 0.0240329594872969 0.0237125200274662 0.00154549206702327 0.00149004233443926 2272512 901184 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 715 408 0.0239645318152986 0.0240148443573155 0.0238956282902266 0.0239414053559167 0.00164590155333539 0.00165292395741793 2266254 908090 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} +51 240 458 0.0234695494480342 0.0236959916241986 0.0235141527428092 0.0236820019836728 0.00236037199139689 0.00243067696333317 2219445 896033 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} +52 293 458 0.0238804327154064 0.0236282648389691 0.0238345922026398 0.0235904478522927 0.00194981262676691 0.00185885568910467 2258301 893472 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} +53 346 458 0.0237176169426112 0.0238090987934398 0.0236514839398795 0.0237430380712596 0.00165723536002269 0.00170433282141058 2242904 900310 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} +54 398 459 0.0239126955538034 0.0237922530448294 0.0238651102464332 0.0237430380712596 0.00191524324254599 0.00199759034258115 2261352 899673 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} +55 451 459 0.0238770277223012 0.024140962685609 0.023773556115053 0.0239414053559167 0.00219960006389597 0.0022769679457846 2257979 912859 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} +56 504 459 0.0240518349925537 0.0239405591016694 0.0240329594872969 0.0238345922026398 0.00215929964372954 0.00220265372898136 2274510 905281 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} +57 557 459 0.0241144361080273 0.0239764191253989 0.0240177004654002 0.0238651102464332 0.0019574693791809 0.00199517843219628 2280430 906637 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.0239405699694095 0.0240283315343819 0.0239566643778134 0.0239566643778134 0.00199623038097734 0.00205952880943919 2263988 908600 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 662 460 0.0240832307209052 0.024026374571435 0.024078736552987 0.0240482185091936 0.00181914154128862 0.001894398852367 2277479 908526 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} +60 715 460 0.0238234889642534 0.0239215448265503 0.0237125200274662 0.0238803692683299 0.00194423573666196 0.00205230022946885 2252916 904562 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} +61 240 510 0.0235668878378881 0.0235667262879229 0.0235446707866026 0.0235599298084993 0.00221056821267521 0.00195276371506467 2228650 891145 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} +62 293 510 0.02370280205025 0.0237268270133347 0.0237277790493629 0.0236972610055695 0.00157249844949866 0.00156335523652822 2241503 897199 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} +63 345 510 0.0237336373294258 0.0238655069281116 0.0237277790493629 0.0238345922026398 0.00154388871357042 0.00162832736334394 2244419 902443 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} +64 398 511 0.0239299743076351 0.0237670240900817 0.0239719233997101 0.0237430380712596 0.00165293540998333 0.00155867181707964 2262986 898719 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} +65 451 511 0.0238187938805929 0.0238840980761071 0.0237430380712596 0.0237430380712596 0.00223329310562115 0.00234327234730713 2252472 903146 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} +66 504 511 0.0240746336420404 0.0240529257984442 0.024078736552987 0.0239871824216068 0.00219876109519933 0.00221109335005113 2276666 909530 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} +67 556 511 0.024191693498171 0.0241562745983962 0.0241397726405737 0.0241397726405737 0.00192010657160403 0.00195360155280919 2287736 913438 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} +68 609 512 0.0240403404971956 0.0241523342270572 0.0239414053559167 0.0241550316624704 0.00189198091605445 0.00205254564491481 2273423 913289 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} +69 662 512 0.0239903230518932 0.0237395737179347 0.0239108873121233 0.0237430380712596 0.00173762607836572 0.00162976020249799 2268693 897681 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} +70 714 512 0.0237730379639283 0.0243231189123412 0.023773556115053 0.0241092545967803 0.00177039771283123 0.00289857556195625 2248145 919747 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} +71 240 562 0.023688357265835 0.0236329721282197 0.0236972610055695 0.0236972610055695 0.00196797110805597 0.00195141904292838 2240137 893650 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} +72 292 562 0.0238319274254271 0.0240646940215708 0.0238040741588464 0.024124513618677 0.00161313925074337 0.00146567609120965 2253714 909975 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} +73 345 563 0.0238559738674181 0.0236844878555243 0.0238040741588464 0.0236820019836728 0.00144648466343009 0.00147188332660825 2255988 895598 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} +74 398 563 0.0240163786513066 0.0238679663545179 0.0240177004654002 0.0239108873121233 0.00149814823837704 0.00154447025031049 2271157 902536 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} +75 451 563 0.023962744722644 0.0239375707663586 0.02392614633402 0.0239871824216068 0.00187430136247889 0.00181389935351711 2266085 905168 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} +76 503 563 0.0239733192353929 0.023907951867703 0.0238651102464332 0.0238345922026398 0.00230314222066323 0.00251712954447217 2267085 904048 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} +77 556 564 0.0241087787437066 0.0242166759952975 0.0241092545967803 0.024124513618677 0.00182932357591929 0.00167035103751248 2279895 915722 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} +78 609 564 0.0239274787226264 0.0241730410106709 0.0238803692683299 0.024124513618677 0.00156454631938861 0.0017204749711673 2262750 914072 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} +79 661 564 0.0239195055400137 0.0240426649656956 0.0239414053559167 0.0240482185091936 0.00150009945580791 0.00147385553061882 2261996 909142 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} +80 714 564 0.023862043637736 0.0240631866311927 0.0238651102464332 0.0240024414435035 0.00161225516040355 0.00151017987274069 2256562 909918 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} +81 241 616 0.024770457729945 0.143796325907542 0.0247043564507515 0.155886167696651 0.00209783183501408 0.0452352519247888 2342468 8113799 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} +82 292 614 0.0240180388498081 0.0238903920920714 0.0240024414435035 0.0239108873121233 0.00158924800645496 0.00144062917332762 2271314 903384 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} +83 345 615 0.0237084911381089 0.0237988644061365 0.0236667429617761 0.0237582970931563 0.00137218981511772 0.00146260102571381 2242041 899923 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} +84 398 615 0.0238475248317317 0.0238436629903531 0.0238193331807431 0.0237430380712596 0.00164891867531169 0.00162909796131425 2255189 901617 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} +85 450 615 0.0238522199153923 0.0241091752604447 0.0238193331807431 0.0240329594872969 0.00191663732436139 0.00182283167938577 2255633 911657 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} +86 503 616 0.0239291600701534 0.024099020209477 0.0238498512245365 0.0240634775310903 0.00202676322975411 0.00213244200596215 2262909 911273 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} +87 556 616 0.0238817862530383 0.0242560268177971 0.0238040741588464 0.0242160677500572 0.00165605597469705 0.00167547324381476 2258429 917210 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} +88 608 616 0.0238935239621896 0.0239158590558262 0.0238803692683299 0.0237888151369497 0.00154733965751632 0.00164567528187625 2259539 904347 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} +89 661 616 0.0237851140574876 0.0238998595614631 0.0237582970931563 0.0238345922026398 0.00136900533369473 0.00132678033158972 2249287 903742 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.0240072528468042 0.0240431145382645 0.0239719233997101 0.0238193331807431 0.00154307853556952 0.00207977299181553 2270294 909159 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 670 0.0248450714919014 0.140319820946632 0.0245517662317845 0.153200579842832 0.00274442641397386 0.0424232591843186 2349524 7917635 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} +92 292 667 0.0240481127640661 0.0238829080310718 0.0240634775310903 0.0238498512245365 0.00153102486951917 0.0015227916831842 2274158 903101 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} +93 345 667 0.0236312337479653 0.0236774004762031 0.0236209658960861 0.0236362249179828 0.0015052783778932 0.00141870403638931 2234735 895330 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} +94 397 667 0.0238378174290282 0.0236761575402774 0.0237888151369497 0.0236057068741894 0.00157490381923456 0.00154569939611998 2254271 895283 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} +95 450 667 0.0237705741024578 0.0239126327115084 0.023773556115053 0.0238956282902266 0.00179803060326716 0.00188623424541566 2247912 904225 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} +96 503 668 0.0238755684395419 0.023976551352625 0.0238345922026398 0.0239719233997101 0.00165083498823561 0.00205314636389725 2257841 906642 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} +97 555 668 0.023904204220066 0.0239099088306498 0.0238803692683299 0.02392614633402 0.00151658483735655 0.00142219931285891 2260549 904122 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} +98 608 668 0.0237582230715671 0.0235823819914981 0.0237582970931563 0.023575188830396 0.0014250735289324 0.00134774089788717 2246744 891737 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} +99 661 668 0.0239664775256444 0.0239068676044486 0.0240024414435035 0.0239414053559167 0.00148246341658029 0.00149515124029771 2266438 904007 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} +100 714 672 0.0241468046915518 0.149200465355862 0.0241397726405737 0.166659037155718 0.00148111539223295 0.0468817559634332 2283491 8418731 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv new file mode 100644 index 0000000..7881fe3 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 243 194 0.317255114508491 0.342804595818904 0.317448691538872 0.332219424734874 0.00653396493069323 0.0287231503632741 30001866 19342967 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} +2 294 197 0.317066666116792 0.31761474248946 0.316762035553521 0.317387655451286 0.00507276757442804 0.00542910980915898 29984045 12010187 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} +3 347 198 0.316712663153496 0.316974789160382 0.316762035553521 0.317143511100938 0.00451903276514087 0.00476282812131071 29950568 11985988 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} +4 400 198 0.317221381812822 0.317295969092679 0.317311360341802 0.317296101319905 0.00457124298088708 0.00427965916984109 29998676 11998133 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} +5 452 198 0.318596184789822 0.317344575821009 0.317769130998703 0.317418173495079 0.0105661726378316 0.00627106577651352 30128687 11999971 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} +6 505 198 0.31815641195362 0.317603397393458 0.317708094911116 0.317341878385595 0.00820989990369374 0.00643068278483229 30087099 12009758 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} +7 558 199 0.317200465426604 0.31760487833839 0.317021438925765 0.317647058823529 0.00654261184251943 0.0067372005925992 29996698 12009814 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} +8 611 199 0.317662328419939 0.317233769405502 0.317524986648356 0.317387655451286 0.0061453342150915 0.0068297286701427 30040375 11995781 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} +9 663 199 0.317502822469634 0.317156601596326 0.317616540779736 0.317250324254215 0.00512500325397431 0.00423706801484297 30025291 11992863 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} +10 716 198 0.317467133489106 0.338727300100389 0.317616540779736 0.330922407873655 0.00524246850801832 0.0226830467335381 30021916 19112903 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} +11 241 249 0.317475106671719 0.317877425096913 0.317326619363699 0.31783016708629 0.00541371723744002 0.00509930794822978 30022670 12020120 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} +12 294 249 0.317575776033089 0.318263740160807 0.317479209582666 0.318211642633707 0.00482458600265979 0.00432107183900343 30032190 12034728 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} +13 347 250 0.317363260050374 0.317505126118989 0.317265583276112 0.317402914473182 0.00397226984528298 0.00387470941344487 30012093 12006042 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} +14 399 250 0.317364349225187 0.31723699574982 0.317326619363699 0.316945143816281 0.00392125530217616 0.00401696972095121 30012196 11995903 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} +15 452 250 0.317616149522764 0.318355823201092 0.317524986648356 0.318043793392844 0.00477323801278755 0.00447405283436093 30036008 12038210 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} +16 505 251 0.317863772887806 0.320161782655728 0.31773861295491 0.3196307316701 0.00623310490707946 0.00698577780551504 30059425 12106500 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} +17 558 251 0.318204441390525 0.317915321419925 0.318211642633707 0.318089570458534 0.00606489128226303 0.00597093763076231 30091641 12021553 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} +18 610 251 0.318638778927174 0.318811055095251 0.318608377203021 0.318562600137331 0.00575750795392554 0.00571182741255689 30132715 12055424 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} +19 663 251 0.318127279170996 0.318381528173853 0.31805905241474 0.318394750896468 0.00432801038599513 0.00410925400730302 30084344 12039182 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} +20 716 252 0.31772703386345 0.317731261121136 0.317662317845426 0.317570763714046 0.0044854825619176 0.00452534189469418 30046494 12014593 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} +21 241 301 0.317686364287417 0.317663534335907 0.317723353933013 0.317570763714046 0.00531057371098409 0.00551532156079563 30042648 12012032 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} +22 294 302 0.317535286223773 0.31802485845406 0.317479209582666 0.318089570458534 0.00474610975904026 0.00423546995427139 30028361 12025695 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} +23 346 302 0.318125121970396 0.318231344490402 0.31815060654612 0.31810482948043 0.00449368697862277 0.00443210069242021 30084140 12033503 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} +24 399 302 0.317944107461159 0.317363219859895 0.31801327534905 0.317158770122835 0.00425499738399945 0.00426564005879891 30067022 12000676 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} +25 452 302 0.318965076667068 0.318067276948206 0.318715190356298 0.318043793392844 0.00442985033661867 0.00435777259733685 30163572 12027299 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} +26 505 303 0.318847847618733 0.319146251113519 0.318760967421988 0.319310292210269 0.00477500141031164 0.00559309337298324 30152486 12068099 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} +27 557 303 0.319105823431756 0.318689670501653 0.319157701991302 0.318654154268711 0.00550102821460244 0.0053982758697251 30176882 12050834 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} +28 610 303 0.318781164741339 0.319027299500882 0.318913557640955 0.318913557640955 0.0057658548725673 0.00555122791907753 30146180 12063601 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} +29 663 303 0.318744037627077 0.318994692266916 0.318638895246815 0.319081406881819 0.00434767250567103 0.00426827153600625 30142669 12062368 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} +30 716 304 0.318299548558189 0.31852364599651 0.318287937743191 0.318486305027848 0.00422457854774099 0.00411226363623754 30100635 12044556 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} +31 241 353 0.317785711834693 0.31737771196388 0.317723353933013 0.317494468604562 0.00634732579500197 0.00653667020536496 30052043 12001224 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} +32 293 354 0.318162640341629 0.317874516097938 0.31805905241474 0.317936980239567 0.00515193438389851 0.00457195966971561 30087688 12020010 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} +33 346 354 0.31843523013127 0.318121886792603 0.318532082093538 0.318410009918364 0.00535315066193878 0.00570732409725739 30113466 12029364 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} +34 399 354 0.318325540710526 0.318376847330048 0.318333714808881 0.318211642633707 0.00458673557578931 0.00452927980640217 30103093 12039005 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} +35 452 355 0.318600308849794 0.319435352720754 0.318532082093538 0.319233997100786 0.00414100430986737 0.00394612909008099 30129077 12079031 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} +36 504 355 0.319199820275581 0.31891813270298 0.319127183947509 0.318638895246815 0.00481218625239393 0.0048343016596482 30185771 12059473 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} +37 557 355 0.319336665045065 0.319518761655004 0.31958495460441 0.319356069275959 0.0053932480531058 0.00493144399441752 30198712 12082185 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} +38 610 355 0.319492565086523 0.319003842390964 0.319386587319753 0.318715190356298 0.00485069545203737 0.00465330550456983 30213455 12062714 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} +39 663 356 0.319653181360666 0.318560854737946 0.319752803845273 0.318455786984054 0.00478888222105942 0.00472417678449074 30228644 12045963 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.318478585633541 0.318410274372816 0.318440527962158 0.318455786984054 0.00398355990642782 0.00377091329158105 30117566 12040269 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 240 406 0.317539621774 0.31810300474471 0.317418173495079 0.318074311436637 0.00654090056188038 0.00705049551103259 30028771 12028650 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} +42 293 406 0.318311444885031 0.318855377661453 0.318165865568017 0.318654154268711 0.00569391659185288 0.0053503670021282 30101760 12057100 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} +43 346 406 0.318621045469294 0.319118932968598 0.318654154268711 0.318913557640955 0.00525433846290085 0.00518294738613186 30131038 12067066 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} +44 399 406 0.319346478192896 0.319306140275368 0.319325551232166 0.319554436560616 0.00493128565656974 0.00511847077286058 30199640 12074145 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} +45 451 407 0.318934981603785 0.319252482467 0.318928816662852 0.319218738078889 0.0049750353102806 0.00500652245254418 30160726 12072116 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} +46 504 407 0.319518916772293 0.319154184747087 0.31944762340734 0.318883039597162 0.00477170162174925 0.00460336389590836 30215947 12068399 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} +47 557 407 0.319146418986199 0.319970106068714 0.319035629816129 0.320012207217517 0.00529254910608572 0.00514728004683951 30180721 12099252 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} +48 610 407 0.319356798917339 0.319538278393582 0.319264515144579 0.319371328297856 0.00511251762165791 0.00557500636872068 30200616 12082923 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.319097533013761 0.320171117897894 0.319096665903716 0.320195315480278 0.00440521472850135 0.00429829027782233 30176098 12106853 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 715 408 0.318852637873009 0.319066703214272 0.318806744487678 0.319157701991302 0.00413804618032832 0.00397121146809041 30152939 12065091 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} +51 240 458 0.31825977781574 0.317532629382027 0.318287937743191 0.317692835889219 0.0058933171441855 0.00582655000632613 30096874 12007082 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} +52 293 458 0.318877361083816 0.317801315105546 0.318898298619059 0.317647058823529 0.00490072691621909 0.00436871306680202 30155277 12017242 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} +53 346 458 0.319239305506186 0.319309075719789 0.319188220035096 0.319111924925612 0.00454593771054582 0.00438832232114566 30189505 12074256 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} +54 398 459 0.319694591152591 0.31950731077722 0.319661249713893 0.319371328297856 0.00476010400870593 0.0042759388039164 30232560 12081752 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} +55 451 459 0.319570171435587 0.319325577677611 0.319600213626307 0.319401846341649 0.00611576249758898 0.00665702578244128 30220794 12074880 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} +56 504 459 0.319271991325093 0.319253566730255 0.319050888838025 0.319005111772335 0.00591471652733113 0.00609188682997314 30192596 12072157 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} +57 557 459 0.319369837291559 0.319432681730786 0.319523918516823 0.319371328297856 0.0055840691064637 0.00551237049483573 30201849 12078930 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.319861160877412 0.320233132466954 0.319829098954757 0.320180056458381 0.00568067591335441 0.00527274433783216 30248312 12109198 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 662 460 0.319364349119442 0.319360803010655 0.319188220035096 0.319340810254063 0.00518124333116155 0.00507812968979688 30201330 12076212 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} +60 715 460 0.318957283251172 0.31887357212777 0.318837262531472 0.318684672312505 0.00459554379979572 0.00459764997103158 30162835 12057788 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} +61 240 510 0.318055266739176 0.318257551926623 0.31801327534905 0.317936980239567 0.005255035574356 0.00500432166747273 30077534 12034494 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} +62 293 510 0.318227588998933 0.318354976946844 0.318226901655604 0.318593118181125 0.00442626783890373 0.0042066976103936 30093830 12038178 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} +63 345 510 0.318865961759072 0.318935507360495 0.318776226443885 0.318852521553368 0.00399764698378282 0.00380437463299869 30154199 12060130 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} +64 398 511 0.319300764574283 0.31944241365463 0.319157701991302 0.319417105363546 0.00441057010651982 0.00406239457390644 30195317 12079298 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} +65 451 511 0.319597210464686 0.319318199398393 0.31958495460441 0.319203479056992 0.00600745126244447 0.00524638971502144 30223351 12074601 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} +66 504 511 0.319100927432353 0.318958990915857 0.319081406881819 0.318944075684749 0.00675133027661981 0.00648432081870547 30176419 12061018 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} +67 556 511 0.319206979220712 0.319327217295215 0.318974593728542 0.318974593728542 0.00593334417839424 0.00554777036213113 30186448 12074942 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} +68 609 512 0.319797396565536 0.320232815121611 0.319844357976654 0.320378423743038 0.00568690123952614 0.00593700572920543 30242282 12109186 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} +69 662 512 0.319619099706076 0.319956777564319 0.319569695582513 0.319981689173724 0.00556672581582971 0.00540386744744282 30225421 12098748 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} +70 714 512 0.319599251345646 0.321733356129307 0.319508659494926 0.319523918516823 0.00559779622429261 0.0169964302080283 30223544 12165927 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} +71 240 562 0.318228445534465 0.319007729871413 0.318211642633707 0.319096665903716 0.00521267818492432 0.00582031079175622 30093911 12062861 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} +72 292 562 0.318399054723156 0.317934335695044 0.318287937743191 0.3177843900206 0.0040582288083724 0.00406016665539504 30110045 12022272 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} +73 345 563 0.318649501483102 0.317982783750702 0.318745708400092 0.317708094911116 0.00423665076454072 0.00453285402006271 30133729 12024104 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} +74 398 563 0.319132249139116 0.319098887321115 0.319127183947509 0.319035629816129 0.00436825549345337 0.00450691031202115 30179381 12066308 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} +75 451 563 0.319186422367928 0.31885960893269 0.318944075684749 0.318669413290608 0.005651421855291 0.00580541939699915 30184504 12057260 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} +76 503 563 0.319608863577735 0.318956346371335 0.319783321889067 0.318684672312505 0.00697834703043291 0.00758011291531943 30224453 12060918 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} +77 556 564 0.319479843947686 0.320103999357905 0.319615472648203 0.319890135042344 0.00583280975080031 0.00577886929873111 30212252 12104315 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} +78 609 564 0.319354969526634 0.320330372369058 0.319325551232166 0.319951171129931 0.00528271873270795 0.00552684819580325 30200443 12112875 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} +79 661 564 0.320099055690724 0.320199388078843 0.31990539406424 0.320164797436484 0.00487882311291175 0.00492879170905161 30270809 12107922 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} +80 714 564 0.319776934883367 0.320225859969516 0.31981383993286 0.320210574502174 0.00535079192464325 0.0052898412191024 30240347 12108923 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} +81 241 616 0.317790988516555 0.343295259326723 0.317799649042496 0.332234683756771 0.00531494137970291 0.0284236129964892 30052542 19370653 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} +82 292 614 0.31794295483927 0.318086767241339 0.31787594415198 0.317906462195773 0.00453368764281868 0.00414039310174086 30066913 12028036 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} +83 345 615 0.318028957351457 0.318423708658993 0.317906462195773 0.318455786984054 0.00488468683552884 0.00530873337842971 30075046 12040777 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} +84 398 615 0.318784315946138 0.318617183536282 0.318852521553368 0.318776226443885 0.00492699993366379 0.00496141661190548 30146478 12048093 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} +85 450 615 0.31962415432317 0.319812147424366 0.319600213626307 0.319615472648203 0.00536520944862913 0.00559469839828512 30225899 12093279 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} +86 503 616 0.319669487259325 0.319402851268568 0.319645990691997 0.319233997100786 0.00546929716031377 0.00511701786091945 30230186 12077802 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} +87 556 616 0.318941791589995 0.3190305258452 0.318898298619059 0.318684672312505 0.00482834782092653 0.00468490731910887 30161370 12063723 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} +88 608 616 0.32002091004151 0.319857184017589 0.31990539406424 0.319554436560616 0.00479985790636271 0.00488947868524116 30263419 12094982 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} +89 661 616 0.32011173453151 0.320072397050857 0.320073243305104 0.320241092545968 0.0041233883367821 0.00397058842179298 30272008 12103120 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.319730618517526 0.319957306473224 0.31967650873579 0.319203479056992 0.00479168831562258 0.00650808582690015 30235967 12098768 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 670 0.317087857440341 0.337029773789874 0.316990920881971 0.327840085450523 0.00642263789159728 0.0235350958660768 29986049 19017119 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} +92 292 667 0.317523305300829 0.317402914473182 0.317433432516976 0.317402914473182 0.00466915715679578 0.00422560607617782 30027228 12002177 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} +93 345 667 0.31753238880728 0.317568595187537 0.317418173495079 0.317586022735943 0.00532708547057885 0.00547851079645445 30028087 12008442 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} +94 397 667 0.318321860780089 0.318755546105716 0.31819638361181 0.318577859159228 0.00504534716237431 0.00461411949749213 30102745 12053325 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} +95 450 667 0.318769152094856 0.318407973619082 0.318760967421988 0.318394750896468 0.00517914712330601 0.00537678142273476 30145044 12040182 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} +96 503 668 0.319407493131457 0.320002369511892 0.319310292210269 0.319661249713893 0.00466705930718966 0.00558064535921 30205410 12100472 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} +97 555 668 0.31944020009939 0.319840338268979 0.319401846341649 0.319691767757687 0.00415465237269611 0.00379942895517011 30208503 12094345 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} +98 608 668 0.318921414503928 0.319238704390036 0.318760967421988 0.319310292210269 0.00399958738286201 0.0039922540273891 30159443 12071595 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} +99 661 668 0.31994093500159 0.318937332096215 0.31981383993286 0.318654154268711 0.00413016147813311 0.00392997951360022 30255856 12060199 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} +100 714 672 0.319405494548548 0.340796873619588 0.319478141451133 0.33186846723125 0.00454067507937388 0.0253669388422927 30205221 19229680 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv new file mode 100644 index 0000000..f575ed1 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 243 194 0.0332668037863735 0.0360909717719615 0.0332951857785916 0.0356908522163729 0.0024545430200893 0.00402203344119241 3145942 2036456 1443 861 0 True 241 197 32 {X=0,Y=0,Width=0,Height=0} +2 294 197 0.0334492564293434 0.033347600651034 0.0334477759975586 0.0332951857785916 0.00196806776247227 0.00209196283395614 3163196 1260996 1443 577 0 False 294 197 26 {X=0,Y=0,Width=0,Height=0} +3 347 198 0.033350173244886 0.0331436004865433 0.0333104448004883 0.033173113603418 0.00180489623478832 0.00178830747773127 3153826 1253282 1443 577 0 False 347 198 26 {X=0,Y=0,Width=0,Height=0} +4 400 198 0.0331426484321884 0.0332049539194728 0.0330815594720378 0.0332341496910048 0.00178905205727539 0.00161443943368451 3134201 1255602 1443 577 0 False 400 198 26 {X=0,Y=0,Width=0,Height=0} +5 452 198 0.0333910437366606 0.0332226194768853 0.0332799267566949 0.0331120775158312 0.00256926341298529 0.0024764744196212 3157691 1256270 1443 577 0 False 452 198 26 {X=0,Y=0,Width=0,Height=0} +6 505 198 0.0332735397509945 0.0332489855857779 0.033173113603418 0.0330815594720378 0.00263950955570923 0.00265405781718823 3146579 1257267 1443 577 0 False 505 198 26 {X=0,Y=0,Width=0,Height=0} +7 558 199 0.0332550555027094 0.0333541591214506 0.0332036316472114 0.0332951857785916 0.00253573840308123 0.00250110981424181 3144831 1261244 1443 577 0 False 558 199 26 {X=0,Y=0,Width=0,Height=0} +8 611 199 0.0332737512412495 0.0333567507750829 0.0331425955596246 0.0332494087129015 0.00242955602861054 0.00263027291496919 3146599 1261342 1443 577 0 False 611 199 26 {X=0,Y=0,Width=0,Height=0} +9 663 199 0.033327850448473 0.0333306226751974 0.0333714808880751 0.0333104448004883 0.00188462036182978 0.00171168195659794 3151715 1260354 1443 577 0 False 663 199 26 {X=0,Y=0,Width=0,Height=0} +10 716 198 0.0334722877181106 0.0356802719189602 0.0334325169756619 0.0354619668879225 0.00208364635483365 0.00296925722475922 3165374 2013282 1443 861 0 True 716 199 33 {X=0,Y=0,Width=0,Height=0} +11 241 249 0.0334126791897449 0.0332491971493397 0.0333562218661784 0.0333867399099718 0.00205297047250437 0.00200512553553757 3159737 1257275 1443 577 0 False 241 249 26 {X=0,Y=0,Width=0,Height=0} +12 294 249 0.0332813225923778 0.0332732889499426 0.0332951857785916 0.0332036316472114 0.001785259328332 0.00161851302187749 3147315 1258186 1443 577 0 False 294 249 26 {X=0,Y=0,Width=0,Height=0} +13 347 250 0.0331531171998098 0.0334296079766868 0.0331120775158312 0.0334172579537652 0.00160215690964452 0.00165756196943659 3135191 1264097 1443 577 0 False 347 250 26 {X=0,Y=0,Width=0,Height=0} +14 399 250 0.0333464192928601 0.0333005277585277 0.033325703822385 0.033325703822385 0.0015768326310633 0.00164444615485174 3153471 1259216 1443 577 0 False 399 250 26 {X=0,Y=0,Width=0,Height=0} +15 452 250 0.0332854889504008 0.0332339910183334 0.0332799267566949 0.0332646677347982 0.0017951238540349 0.00189576658299378 3147709 1256700 1443 577 0 False 452 250 26 {X=0,Y=0,Width=0,Height=0} +16 505 251 0.033313151875752 0.0334061508667693 0.0332036316472114 0.0333104448004883 0.00233309701172133 0.00258253529254032 3150325 1263210 1443 577 0 False 505 251 26 {X=0,Y=0,Width=0,Height=0} +17 558 251 0.0333756155225599 0.0331506614204192 0.0333562218661784 0.0330510414282445 0.00230642255647671 0.00232223382788836 3156232 1253549 1443 577 0 False 558 251 26 {X=0,Y=0,Width=0,Height=0} +18 610 251 0.0334602116245513 0.0333276343398866 0.0334935530632486 0.0333714808880751 0.00221583816726152 0.00219810538600016 3164232 1260241 1443 577 0 False 610 251 26 {X=0,Y=0,Width=0,Height=0} +19 663 251 0.0334591964713274 0.0332688990060347 0.0334477759975586 0.0332646677347982 0.00162895700023283 0.00166154373602111 3164136 1258020 1443 577 0 False 663 251 26 {X=0,Y=0,Width=0,Height=0} +20 716 252 0.0332718266799292 0.0332093174179355 0.0332799267566949 0.0331578545815213 0.00180097476445387 0.00157572122355695 3146417 1255767 1443 577 0 False 716 252 26 {X=0,Y=0,Width=0,Height=0} +21 241 301 0.0332236386253324 0.0334205900798639 0.0332036316472114 0.0334477759975586 0.00201784632633342 0.00198951889625079 3141860 1263756 1443 577 0 False 241 301 26 {X=0,Y=0,Width=0,Height=0} +22 294 302 0.0333655380119102 0.0332308969012417 0.0333104448004883 0.0331883726253147 0.00180481594598168 0.00155204238254943 3155279 1256583 1443 577 0 False 294 302 26 {X=0,Y=0,Width=0,Height=0} +23 346 302 0.033431544120489 0.0334285766043229 0.0334172579537652 0.0333562218661784 0.00174192429873356 0.00159979999201932 3161521 1264058 1443 577 0 False 346 302 26 {X=0,Y=0,Width=0,Height=0} +24 399 302 0.0331522923878154 0.0333485526870622 0.0330815594720378 0.0332799267566949 0.0015723896026759 0.00156723363089755 3135113 1261032 1443 577 0 False 399 302 26 {X=0,Y=0,Width=0,Height=0} +25 452 302 0.0333146746055879 0.0333007393220895 0.033325703822385 0.0332036316472114 0.00169689419990518 0.00165590185626234 3150469 1259224 1443 577 0 False 452 302 26 {X=0,Y=0,Width=0,Height=0} +26 505 303 0.0332599409275994 0.0334473528704349 0.0331883726253147 0.0334019989318685 0.00194034832906346 0.00198781634035104 3145293 1264768 1443 577 0 False 505 303 26 {X=0,Y=0,Width=0,Height=0} +27 557 303 0.0336252163214855 0.0335354690939354 0.0336461432822156 0.0335393301289387 0.00207717592919868 0.00215238730382279 3179836 1268100 1443 577 0 False 557 303 26 {X=0,Y=0,Width=0,Height=0} +28 610 303 0.0335134119981911 0.0333373927091759 0.0334935530632486 0.0333867399099718 0.00220712549924728 0.00233559086673408 3169263 1260610 1443 577 0 False 610 303 26 {X=0,Y=0,Width=0,Height=0} +29 663 303 0.0334339974074467 0.0334458719255021 0.0334935530632486 0.0333104448004883 0.00170730372439695 0.00163168166806994 3161753 1264712 1443 577 0 False 663 303 26 {X=0,Y=0,Width=0,Height=0} +30 716 304 0.033404209005033 0.0332869876905708 0.0334019989318685 0.0332951857785916 0.00160978010009889 0.00158862397186971 3158936 1258704 1443 577 0 False 716 304 26 {X=0,Y=0,Width=0,Height=0} +31 241 353 0.0334816778854316 0.0334540171226324 0.0333409628442817 0.0333714808880751 0.00243912496626176 0.00251514983348731 3166262 1265020 1443 577 0 False 241 353 26 {X=0,Y=0,Width=0,Height=0} +32 293 354 0.033382478381334 0.0335498289706943 0.0333104448004883 0.033524071107042 0.0021434151913524 0.00182353473028463 3156881 1268643 1443 577 0 False 293 354 26 {X=0,Y=0,Width=0,Height=0} +33 346 354 0.0333997571351657 0.0336891171307115 0.0333867399099718 0.0336614023041123 0.00202905654415475 0.00199951716854081 3158515 1273910 1443 577 0 False 346 354 26 {X=0,Y=0,Width=0,Height=0} +34 399 354 0.03338984881672 0.0333710842063967 0.0334019989318685 0.0334325169756619 0.00168735219808491 0.00170781226743297 3157578 1261884 1443 577 0 False 399 354 26 {X=0,Y=0,Width=0,Height=0} +35 452 355 0.0334531161264968 0.0333182197613854 0.0334477759975586 0.0332799267566949 0.001626440667445 0.00166753590581786 3163561 1259885 1443 577 0 False 452 355 26 {X=0,Y=0,Width=0,Height=0} +36 504 355 0.0333298596058953 0.0333976883242963 0.0332799267566949 0.033325703822385 0.00181165330153327 0.00178065912568317 3151905 1262890 1443 577 0 False 504 355 26 {X=0,Y=0,Width=0,Height=0} +37 557 355 0.0335625411844226 0.033496488507669 0.0335088120851453 0.0334630350194553 0.00204951500894798 0.00203356274846486 3173909 1266626 1443 577 0 False 557 355 26 {X=0,Y=0,Width=0,Height=0} +38 610 355 0.0335498200455857 0.033554774268952 0.033524071107042 0.0337224383916991 0.00196648893875153 0.00190452986057331 3172706 1268830 1443 577 0 False 610 355 26 {X=0,Y=0,Width=0,Height=0} +39 663 356 0.0335433061457323 0.033629614878948 0.0335088120851453 0.0337224383916991 0.00169851284418751 0.00164814527276277 3172090 1271660 1443 577 0 False 663 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.0333831022775861 0.0333467808422319 0.0332951857785916 0.0333714808880751 0.00156303814530793 0.00157351307806479 3156940 1260965 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 240 406 0.0333992707075792 0.0335650086562554 0.033325703822385 0.0335088120851453 0.00267606079946398 0.00264281728063848 3158469 1269217 1443 577 0 False 240 406 26 {X=0,Y=0,Width=0,Height=0} +42 293 406 0.0332127151536627 0.0333287979394767 0.0332341496910048 0.0332036316472114 0.0021723279984769 0.00206502089742629 3140827 1260285 1443 577 0 False 293 406 26 {X=0,Y=0,Width=0,Height=0} +43 346 406 0.0334668101205066 0.0334404241637851 0.033524071107042 0.0334019989318685 0.00191535739365807 0.00193954272171111 3164856 1264506 1443 577 0 False 346 406 26 {X=0,Y=0,Width=0,Height=0} +44 399 406 0.0335843881277619 0.0333031723030505 0.0336003662165255 0.0332036316472114 0.0019476793113939 0.00175085734050669 3175975 1259316 1443 577 0 False 399 406 26 {X=0,Y=0,Width=0,Height=0} +45 451 407 0.0333840539837335 0.0333824028569543 0.0334172579537652 0.0332799267566949 0.00188075739585618 0.00187980447927774 3157030 1262312 1443 577 0 False 451 407 26 {X=0,Y=0,Width=0,Height=0} +46 504 407 0.0333776246799822 0.0331006001926022 0.0333409628442817 0.0330357824063478 0.00190103772277447 0.00169626385708824 3156422 1251656 1443 577 0 False 504 407 26 {X=0,Y=0,Width=0,Height=0} +47 557 407 0.0335480329529311 0.0335201836265935 0.0334935530632486 0.0334782940413519 0.00199872854538186 0.00195065033706683 3172537 1267522 1443 577 0 False 557 407 26 {X=0,Y=0,Width=0,Height=0} +48 610 407 0.0335251602818552 0.0334686943447341 0.033524071107042 0.0333409628442817 0.00198772588817843 0.00208885826001011 3170374 1265575 1443 577 0 False 610 407 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.0334970003544048 0.0336696797284687 0.0334782940413519 0.0335545891508354 0.00170536507771991 0.00159734517285757 3167711 1273175 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 715 408 0.0334504302002585 0.0336960722828065 0.0334019989318685 0.0336461432822156 0.00150714099207048 0.00157174103901936 3163307 1274173 1443 577 0 False 715 408 26 {X=0,Y=0,Width=0,Height=0} +51 240 458 0.0333521718277955 0.033335091955441 0.0333409628442817 0.0332799267566949 0.00236348721452822 0.00223033376102829 3154015 1260523 1443 577 0 False 240 458 26 {X=0,Y=0,Width=0,Height=0} +52 293 458 0.0333310756748614 0.0331638048066977 0.0333714808880751 0.0331883726253147 0.00188468186507567 0.00184099150950318 3152020 1254046 1443 577 0 False 293 458 26 {X=0,Y=0,Width=0,Height=0} +53 346 458 0.0335582056341956 0.0333605589191958 0.0335393301289387 0.033325703822385 0.00174217923891893 0.00162603078160236 3173499 1261486 1443 577 0 False 346 458 26 {X=0,Y=0,Width=0,Height=0} +54 398 459 0.0335505285379398 0.0337094801235373 0.0335545891508354 0.0336614023041123 0.00180914577636029 0.00170051497456344 3172773 1274680 1443 577 0 False 398 459 26 {X=0,Y=0,Width=0,Height=0} +55 451 459 0.0335183820191831 0.033244833650877 0.0334630350194553 0.0332036316472114 0.0023313191615346 0.00259417614513938 3169733 1257110 1443 577 0 False 451 459 26 {X=0,Y=0,Width=0,Height=0} +56 504 459 0.0334177338068389 0.0333843069290108 0.0334019989318685 0.0334325169756619 0.00225719310446024 0.00227166242129414 3160215 1262384 1443 577 0 False 504 459 26 {X=0,Y=0,Width=0,Height=0} +57 557 459 0.0335228656125887 0.0335521561698744 0.0335851071946288 0.0336003662165255 0.0021255121350621 0.00200035097349576 3170157 1268731 1443 577 0 False 557 459 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.0335535316995605 0.0336834842508779 0.0334935530632486 0.0335545891508354 0.00212279479538357 0.00205933528755043 3173057 1273697 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 662 460 0.0334648009630843 0.0333121108635377 0.0334325169756619 0.0333562218661784 0.0018386323199981 0.00193788777656865 3164666 1259654 1443 577 0 False 662 460 26 {X=0,Y=0,Width=0,Height=0} +60 715 460 0.0335912827100742 0.0335109541662088 0.0336461432822156 0.0335088120851453 0.0017411678699857 0.00179394909600156 3176627 1267173 1443 577 0 False 715 460 26 {X=0,Y=0,Width=0,Height=0} +61 240 510 0.0334735037870767 0.0332875165994754 0.0334019989318685 0.0332494087129015 0.00208072221174177 0.00191442261922061 3165489 1258724 1443 577 0 False 240 510 26 {X=0,Y=0,Width=0,Height=0} +62 293 510 0.0334317133126929 0.0334847202845424 0.0334172579537652 0.0334477759975586 0.00160454820194201 0.00165646555517496 3161537 1266181 1443 577 0 False 293 510 26 {X=0,Y=0,Width=0,Height=0} +63 345 510 0.0333698101150607 0.033450023860403 0.0333409628442817 0.0335698481727321 0.00157348510952905 0.00151176994836183 3155683 1264869 1443 577 0 False 345 510 26 {X=0,Y=0,Width=0,Height=0} +64 398 511 0.0334019037612537 0.0335088120851453 0.0334630350194553 0.0334935530632486 0.00163954031458709 0.00143724204038909 3158718 1267092 1443 577 0 False 398 511 26 {X=0,Y=0,Width=0,Height=0} +65 451 511 0.0333185766007922 0.0336018207160131 0.0332646677347982 0.0334782940413519 0.00217184541622269 0.00194423323689811 3150838 1270609 1443 577 0 False 451 511 26 {X=0,Y=0,Width=0,Height=0} +66 504 511 0.0333634442583859 0.0335758512887989 0.0333867399099718 0.0336308842603189 0.00255600115813175 0.00257326179380241 3155081 1269627 1443 577 0 False 504 511 26 {X=0,Y=0,Width=0,Height=0} +67 556 511 0.0336712788990198 0.0334398952548805 0.0336003662165255 0.0334782940413519 0.00228358836386945 0.00218694248215683 3184192 1264486 1443 577 0 False 556 511 26 {X=0,Y=0,Width=0,Height=0} +68 609 512 0.0336254278117405 0.0338149710045527 0.0335851071946288 0.0337529564354925 0.00221589947653253 0.00224822426111317 3179856 1278669 1443 577 0 False 609 512 26 {X=0,Y=0,Width=0,Height=0} +69 662 512 0.0334347270488264 0.0335813783868516 0.033524071107042 0.0335393301289387 0.00201289159784935 0.00214172354510325 3161822 1269836 1443 577 0 False 662 512 26 {X=0,Y=0,Width=0,Height=0} +70 714 512 0.0335044976839438 0.0335129375746009 0.033524071107042 0.0333409628442817 0.00208780528769756 0.00256055080101923 3168420 1267248 1443 577 0 False 714 512 26 {X=0,Y=0,Width=0,Height=0} +71 240 562 0.0332189435416719 0.0336154136748604 0.0331578545815213 0.0335698481727321 0.00206682886660299 0.00224716891054352 3141416 1271123 1443 577 0 False 240 562 26 {X=0,Y=0,Width=0,Height=0} +72 292 562 0.0332750096082666 0.0333694445887925 0.0332341496910048 0.0334172579537652 0.00165449237020582 0.0016021348016093 3146718 1261822 1443 577 0 False 292 562 26 {X=0,Y=0,Width=0,Height=0} +73 345 563 0.0334259925012958 0.0333214725511485 0.0334019989318685 0.0332341496910048 0.00162785699178922 0.00159564110984465 3160996 1260008 1443 577 0 False 345 563 26 {X=0,Y=0,Width=0,Height=0} +74 398 563 0.033519354874356 0.0335261867426603 0.0335088120851453 0.0335851071946288 0.00170294399008324 0.00176775694777146 3169825 1267749 1443 577 0 False 398 563 26 {X=0,Y=0,Width=0,Height=0} +75 451 563 0.0334784315100177 0.0334480140065656 0.0334325169756619 0.0333409628442817 0.00216548567502124 0.00214323506726624 3165955 1264793 1443 577 0 False 451 563 26 {X=0,Y=0,Width=0,Height=0} +76 503 563 0.0333821082733877 0.0333396670174655 0.0333714808880751 0.0333104448004883 0.00259192203628832 0.00267048068783965 3156846 1260696 1443 577 0 False 503 563 26 {X=0,Y=0,Width=0,Height=0} +77 556 564 0.0334823546542475 0.0336245902443546 0.0334019989318685 0.0335698481727321 0.00237350328937416 0.0021271901846953 3166326 1271470 1443 577 0 False 556 564 26 {X=0,Y=0,Width=0,Height=0} +78 609 564 0.033703911845363 0.0335683936732446 0.0336308842603189 0.0334477759975586 0.00201885816904565 0.00208049748901504 3187278 1269345 1443 577 0 False 609 564 26 {X=0,Y=0,Width=0,Height=0} +79 661 564 0.033497497356504 0.033702842316785 0.0334630350194553 0.0337071793698024 0.00189392432937351 0.00180136375214177 3167758 1274429 1443 577 0 False 661 564 26 {X=0,Y=0,Width=0,Height=0} +80 714 564 0.0336139438908951 0.0332248937851749 0.0336156252384222 0.0331425955596246 0.00197725518412554 0.00202258761723932 3178770 1256356 1443 577 0 False 714 564 26 {X=0,Y=0,Width=0,Height=0} +81 241 616 0.0333966059303665 0.0360214289125856 0.0333714808880751 0.0352635996032654 0.00205870993926471 0.00373240548998521 3158217 2032532 1443 861 0 True 239 614 32 {X=0,Y=0,Width=0,Height=0} +82 292 614 0.0333541069636286 0.0334077640389282 0.0333562218661784 0.0334172579537652 0.00172515092382523 0.00154671713002955 3154198 1263271 1443 577 0 False 292 614 26 {X=0,Y=0,Width=0,Height=0} +83 345 615 0.0333049249048333 0.0333775633404776 0.0332799267566949 0.0333562218661784 0.00189165445283172 0.0018502541967076 3149547 1262129 1443 577 0 False 345 615 26 {X=0,Y=0,Width=0,Height=0} +84 398 615 0.033393972876692 0.0334971760892449 0.0333714808880751 0.0334019989318685 0.00194065803880214 0.00191627770635317 3157968 1266652 1443 577 0 False 398 615 26 {X=0,Y=0,Width=0,Height=0} +85 450 615 0.0335946982776921 0.0333804194485622 0.0334782940413519 0.0333104448004883 0.00210057197998104 0.00219173562818549 3176950 1262237 1443 577 0 False 450 615 26 {X=0,Y=0,Width=0,Height=0} +86 503 616 0.0334906239232172 0.0334561063128055 0.0334325169756619 0.0335088120851453 0.00202271552827104 0.00196343681734253 3167108 1265099 1443 577 0 False 503 616 26 {X=0,Y=0,Width=0,Height=0} +87 556 616 0.0334949066008805 0.0333083027194248 0.033524071107042 0.0333714808880751 0.00186872788574938 0.00186575897690625 3167513 1259510 1443 577 0 False 556 616 26 {X=0,Y=0,Width=0,Height=0} +88 608 616 0.0335898551508531 0.0335340145944479 0.0334935530632486 0.0335393301289387 0.00188924142365308 0.00182423975218969 3176492 1268045 1443 577 0 False 608 616 26 {X=0,Y=0,Width=0,Height=0} +89 661 616 0.0335833095274615 0.033563580602213 0.0336461432822156 0.0335088120851453 0.0016461786553392 0.00164275508039556 3175873 1269163 1443 577 0 False 661 616 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.0335559215394418 0.0337162766029609 0.0335545891508354 0.0336919203479057 0.00185915535605561 0.00183886122135141 3173283 1274937 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 670 0.0333275755111415 0.035390350502923 0.0332951857785916 0.0350652323186084 0.00236661146388578 0.00339620836398973 3151689 1996923 1443 861 0 True 239 666 32 {X=0,Y=0,Width=0,Height=0} +92 292 667 0.0333583684922664 0.0332683436516849 0.0333562218661784 0.033173113603418 0.00171166648311574 0.00176913228488217 3154601 1257999 1443 577 0 False 292 667 26 {X=0,Y=0,Width=0,Height=0} +93 345 667 0.0333379808316865 0.0332663337978476 0.033325703822385 0.0332188906691081 0.00191457815869065 0.00191360711588266 3152673 1257923 1443 577 0 False 345 667 26 {X=0,Y=0,Width=0,Height=0} +94 397 667 0.0332857110151686 0.0332065670916318 0.0332799267566949 0.033173113603418 0.00193822467227273 0.00192140367487563 3147730 1255663 1443 577 0 False 397 667 26 {X=0,Y=0,Width=0,Height=0} +95 450 667 0.0333286118133909 0.0333796525306506 0.0333104448004883 0.0333867399099718 0.0020027744560397 0.00210057160244902 3151787 1262208 1443 577 0 False 450 667 26 {X=0,Y=0,Width=0,Height=0} +96 503 668 0.0334008357354661 0.0335671507373188 0.0333867399099718 0.033676661326009 0.00180385945564541 0.00182981125877178 3158617 1269298 1443 577 0 False 503 668 26 {X=0,Y=0,Width=0,Height=0} +97 555 668 0.0333861583117706 0.0336400343843679 0.0333867399099718 0.0336919203479057 0.00156730959823203 0.00163314280355455 3157229 1272054 1443 577 0 False 555 668 26 {X=0,Y=0,Width=0,Height=0} +98 608 668 0.0335627526746776 0.0334260642870262 0.033524071107042 0.0334172579537652 0.00159186511293502 0.00162073532842149 3173929 1263963 1443 577 0 False 608 668 26 {X=0,Y=0,Width=0,Height=0} +99 661 668 0.0334275575291826 0.0335807172507209 0.0334172579537652 0.0336003662165255 0.00167089610890298 0.00153170917016667 3161144 1269811 1443 577 0 False 661 668 26 {X=0,Y=0,Width=0,Height=0} +100 714 672 0.0335290517025468 0.0356813175429926 0.0335851071946288 0.0352483405813687 0.00170499219411887 0.00312886305251534 3170742 2013341 1443 861 0 True 714 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv new file mode 100644 index 0000000..158387b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 229 232 0.237023177375661 0.940666985847833 0.235828183413443 1 0.00888696825950806 0.162457865790493 22414572 53077732 1443 861 80 True 228 234 32 {X=0,Y=0,Width=0,Height=0} +2 281 234 0.231968708324854 0.244696213898166 0.231769283588922 0.233157854581521 0.00508516653128746 0.0349779934324558 21936586 9252868 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} +3 334 234 0.230401153129466 0.230464862003039 0.230365453574426 0.230289158464942 0.00383246772641037 0.00384215232490161 21788347 8714728 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} +4 387 234 0.230578540580829 0.230788818707085 0.23057907988098 0.230701152056153 0.00380075584633658 0.00354451659704764 21805122 8726978 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} +5 440 234 0.230931242879057 0.230708979907941 0.230869001297017 0.23076218814374 0.00461557897273654 0.00489786357149815 21838476 8723959 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.230870788389671 0.23117008269094 0.231052109559777 0.231403067063401 0.00581791794270854 0.00565528706323524 21832759 8741395 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} +7 546 235 0.230594476371542 0.230842185615555 0.230655374990463 0.231143663691157 0.00548578165127618 0.00527410635008516 21806629 8728996 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} +8 599 235 0.23110851401078 0.231413989032281 0.231158922713054 0.231387808041505 0.00449881870353299 0.00438621294863495 21855240 8750618 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} +9 652 235 0.232570281780627 0.231046767579841 0.232227054245823 0.231219958800641 0.0049426254035586 0.00378725587427508 21993475 8736732 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} +10 703 234 0.234928556741329 0.930466728464819 0.234729533836881 1 0.00477057735541999 0.175746725538948 22216490 52502176 1443 861 79 True 705 235 32 {X=0,Y=0,Width=0,Height=0} +11 228 286 0.230707190102933 0.231214749047931 0.230685893034257 0.231189440756847 0.00512306165673354 0.00493638070522819 21817288 8743084 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} +12 281 286 0.231043036627839 0.231028916904312 0.231052109559777 0.231113145647364 0.00400827861495283 0.00389685579999554 21849048 8736057 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} +13 334 287 0.286606972484748 0.231050179042276 0.231891355764096 0.230884260318914 0.139876450822765 0.00339090949930705 27103563 8736861 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} +14 387 287 0.233955923633195 0.23080912880902 0.231265735866331 0.230960555428397 0.0169002027089624 0.00356796054626891 22124511 8727746 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} +15 440 287 0.231622826587349 0.231139062183688 0.231509880216678 0.231219958800641 0.00398855133317693 0.00374946030334313 21903877 8740222 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} +16 493 287 0.23196207810536 0.231798426469563 0.232120241092546 0.231921873807889 0.00513663218524227 0.00553574540951862 21935959 8765155 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.23177812388158 0.231460982588451 0.231799801632715 0.231403067063401 0.00483668508511665 0.00475996858148897 21918563 8752395 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.231389531687083 0.232140762758043 0.231235217822538 0.232211795223926 0.00424030377606047 0.00449475202432267 21881815 8778100 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.231391784058298 0.231770526524848 0.231280994888228 0.231662470435645 0.00368684456759468 0.00325587045206721 21882028 8764100 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.231642791267419 0.230774432384881 0.231509880216678 0.230731670099947 0.00367069096575156 0.0032716304266637 21905765 8726434 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} +21 228 339 0.230242968993255 0.2302483795884 0.230197604333562 0.230365453574426 0.00509501163723867 0.00491362182846114 21773388 8706542 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} +22 281 339 0.231283321281032 0.230996362561236 0.231189440756847 0.231158922713054 0.00393366629056303 0.00382582917600323 21871771 8734826 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} +23 334 339 0.252449572660147 0.231703460875749 0.232547493705653 0.231586175326162 0.0633721569043612 0.00367817615188697 23873400 8761564 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} +24 387 339 0.233404399346262 0.231120127244904 0.232211795223926 0.231265735866331 0.00955680033360269 0.00402911783896385 22072355 8739506 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} +25 440 339 0.232409337696589 0.232822341217911 0.232455939574273 0.232730601968414 0.00416703707564174 0.00392221046428255 21978255 8803873 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} +26 493 339 0.232433944587756 0.23261945176212 0.232440680552377 0.232486457618067 0.00445869256176884 0.00473952634597108 21980582 8796201 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} +27 546 339 0.232349337911251 0.232254954190539 0.232410162508583 0.232211795223926 0.00427861704668112 0.0042851392751355 21972581 8782418 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} +28 599 340 0.231925987293348 0.231980080232836 0.231876096742199 0.232166018158236 0.00413983760460924 0.00417462535049625 21932546 8772024 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.232004513625022 0.231712954790586 0.231815060654612 0.231784542610819 0.00395758648063118 0.00362561636966093 21939972 8761923 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.231395294796531 0.232387604543804 0.231403067063401 0.231921873807889 0.00352396193343577 0.00608536633670333 21882360 8787434 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} +31 227 391 0.230596897934962 0.230452961552686 0.230640115968566 0.230487525749599 0.00523777586515266 0.00556170453227779 21806858 8714278 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} +32 280 391 0.231214639820728 0.231507076999484 0.231311512932021 0.231677729457542 0.00443090487490399 0.00419778320364926 21865276 8754138 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} +33 333 391 0.231762357283071 0.231773435523823 0.231616693369955 0.231937132829786 0.00415386387906354 0.00448596085161301 21917072 8764210 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} +34 387 392 0.232555435164728 0.234432736605084 0.232486457618067 0.234164950026703 0.00425616534394694 0.00498880901641911 21992071 8864768 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} +35 440 392 0.23359142017874 0.233860113379557 0.233615625238422 0.233600366216526 0.00408932123680821 0.00544592852958948 22090041 8843115 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} +36 493 392 0.232838356253325 0.232641745272447 0.233020523384451 0.232486457618067 0.00448790979164591 0.00475946956739956 22018826 8797044 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} +37 546 392 0.232744930433189 0.232838896066623 0.232776379034104 0.232913710231174 0.00390592648029428 0.00375391313021758 22009991 8804499 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} +38 599 392 0.232462738985971 0.232464322780411 0.232394903486687 0.232486457618067 0.00403322717021419 0.0038688153907266 21983305 8790335 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.232271075942397 0.232478523984498 0.232181277180133 0.23260852979324 0.00385242030156097 0.00366602425814606 21965180 8790872 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.231495329687136 0.231168469518782 0.231418326085298 0.231128404669261 0.00353479492836003 0.00377988545944731 21891820 8741334 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} +41 227 444 0.231269669585074 0.231085430820765 0.231387808041505 0.231296253910124 0.00603762228001122 0.0061933973244588 21870480 8738194 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} +42 280 444 0.231480990647848 0.231363769131792 0.231479362172885 0.231280994888228 0.00503069520442491 0.00526807096812296 21890464 8748719 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} +43 333 444 0.232239193786459 0.232562567609434 0.232272831311513 0.23247119859617 0.00431645337604405 0.00432287340679896 21962165 8794050 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} +44 386 444 0.233498184699833 0.23331126460929 0.233493553063249 0.232913710231174 0.00466130287131014 0.00499676451758899 22081224 8822361 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.233436376672815 0.233688932012595 0.233417257953765 0.233371480888075 0.00508330501053987 0.00514017783582427 22075379 8836642 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.233634046039631 0.248054362315029 0.233447775997559 0.234607461661707 0.00517912513097115 0.0608396761293599 22094072 9379852 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.236156892142243 0.24118484057165 0.233752956435492 0.234607461661707 0.0160320198393582 0.0237705077225505 22332650 9120090 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} +48 599 444 0.233185157973439 0.233007036207385 0.233157854581521 0.233234149691005 0.00458202915062017 0.00466173354950737 22051622 8810857 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} +49 652 445 0.232746389715948 0.232387921889146 0.232669565880827 0.232272831311513 0.00436319927719673 0.0042658679874188 22010129 8787446 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.231599160827817 0.231355015689422 0.231555657282368 0.231174181734951 0.0047965065919258 0.00508858757845404 21901639 8748388 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} +51 227 496 0.231146592831189 0.23080685450073 0.230930037384604 0.230914778362707 0.0055685946359915 0.00577702608544779 21858841 8727660 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} +52 280 496 0.231515347239769 0.232007081032414 0.231525139238575 0.232120241092546 0.00445789567513797 0.00423738180553705 21893713 8773045 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} +53 333 496 0.232682509084432 0.233097717639072 0.232745860990311 0.232959487296864 0.00384649811513261 0.00400261917082173 22004088 8814286 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} +54 386 496 0.233896632340212 0.234554650107587 0.233966582742046 0.234546425574121 0.00414255233744059 0.00464169766253441 22118904 8869378 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} +55 439 497 0.233723157458566 0.233564532638241 0.233798733501183 0.233524071107042 0.00537110443127672 0.0052286151826212 22102499 8831938 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.233906984788193 0.234380982868773 0.233875028610666 0.234515907530327 0.00596492836332403 0.00621080538013071 22119883 8862811 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.233916216337823 0.234158259329061 0.233768215457389 0.23408865491722 0.0049212179271914 0.00487138216633817 22120756 8854389 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.23331276061878 0.233407658257147 0.233218890669108 0.233371480888075 0.00564633116353238 0.00516526166103613 22063689 8826006 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.232234625596951 0.23234894130288 0.23228809033341 0.232318608377203 0.00449102666737085 0.00460308480255753 21961733 8785972 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} +60 704 497 0.231328485024983 0.231195205863907 0.231235217822538 0.231311512932021 0.00440706654489665 0.00415857000478581 21876042 8742345 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} +61 227 548 0.231606256325872 0.231016672663171 0.231631952391852 0.230930037384604 0.0051497682909089 0.00534542093493354 21902310 8735594 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} +62 280 549 0.232193596487485 0.232022551617873 0.232089723048753 0.232059205004959 0.00406384025229967 0.00398432976577302 21957853 8773630 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} +63 333 549 0.233141527533837 0.232940658139862 0.233173113603418 0.232959487296864 0.00380297932631004 0.00386898991664995 22047496 8808347 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} +64 386 549 0.233867531281127 0.23363270899604 0.233875028610666 0.233508812085145 0.00351181525916145 0.00336398872426378 22116152 8834516 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} +65 439 549 0.23376433461121 0.233706253779219 0.233707179369802 0.233783474479286 0.00463630155693842 0.00429274301346544 22106393 8837297 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} +66 492 549 0.233848687499408 0.23415643459334 0.233737697413596 0.233813992523079 0.00591131254838382 0.00632142924615788 22114370 8854320 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.233735148956023 0.23382679211857 0.233661402304112 0.233661402304112 0.00478568907196811 0.00522634764058267 22103633 8841855 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} +68 598 549 0.232824937196647 0.232770534590708 0.232745860990311 0.232883192187381 0.0042142123892585 0.0045274001427031 22017557 8801914 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} +69 651 549 0.231865818315807 0.232327150256012 0.231891355764096 0.232135500114443 0.00385358489930697 0.00377711606184018 21926856 8785148 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.231726298194598 0.231271315855274 0.231662470435645 0.231448844129091 0.00374163307064042 0.00388912481857191 21913662 8745223 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} +71 227 601 0.232183867935756 0.231717609188946 0.232303349355306 0.231601434348058 0.00504168402668869 0.00500670866239736 21956933 8762099 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} +72 280 601 0.232473239477131 0.232372186849235 0.232532234683757 0.2323338673991 0.00386857033553054 0.0038240429253031 21984298 8786851 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} +73 333 601 0.232865860560985 0.232534852782834 0.232867933165484 0.232623788815137 0.00369880116626001 0.00340168521780603 22021427 8793002 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} +74 386 601 0.233456499970576 0.233571672908453 0.233569848172732 0.233737697413596 0.00391491874573059 0.00383178812955558 22077282 8832208 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} +75 439 601 0.234070033200269 0.233429634422132 0.23399710078584 0.233417257953765 0.0044685780250449 0.00417178110119421 22135302 8826837 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} +76 492 602 0.23381753498485 0.234098360395619 0.233890287632563 0.233798733501183 0.00542073713038535 0.00549834190970762 22111424 8852124 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} +77 545 602 0.23340504439154 0.233111865952269 0.233310444800488 0.232837415121691 0.00456775024538956 0.00418360981926113 22072416 8814821 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.23223169645692 0.232146131183424 0.232120241092546 0.232059205004959 0.00409179079189194 0.00400474845846709 21961456 8778303 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.231689964168792 0.232054286152147 0.231708247501335 0.232013427939269 0.00340218455842259 0.00370579390616967 21910226 8774830 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} +80 704 602 0.2312097226723 0.231618068533107 0.231280994888228 0.231586175326162 0.00346996370428749 0.00344417112275337 21864811 8758335 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} +81 228 656 0.240274829471442 0.922103862898486 0.239154650186923 1 0.00835027179205036 0.187447649100312 22722071 52030296 1443 861 78 True 227 653 32 {X=0,Y=0,Width=0,Height=0} +82 280 653 0.234051707569675 0.233603645451734 0.233401998931868 0.233401998931868 0.00509379629806353 0.0038139067640339 22133569 8833417 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} +83 333 654 0.232571667041798 0.232497908495851 0.232501716639963 0.232410162508583 0.00355035391315398 0.00333696506561159 21993606 8791605 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} +84 386 654 0.232770161220608 0.232134786087421 0.23270008392462 0.231921873807889 0.00399594376773004 0.00385877549016591 22012377 8777874 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} +85 439 654 0.23319008569638 0.232822790790479 0.233218890669108 0.232761120012207 0.00434648718680467 0.00446604016350643 22052088 8803890 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} +86 492 654 0.233006395835419 0.233566568937524 0.232913710231174 0.233432516975662 0.00453334648130566 0.00462982062829649 22034717 8832015 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} +87 545 654 0.23272801121279 0.232463688089725 0.23270008392462 0.23237964446479 0.00378133833634873 0.00378243306974758 22008391 8790311 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} +88 598 654 0.23154785329196 0.231339968231087 0.231494621194781 0.231311512932021 0.00358755716126289 0.00348055544539695 21896787 8747819 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} +89 651 654 0.232460973042342 0.232119394838299 0.232120241092546 0.232074464026856 0.00433927224923662 0.00375526538636448 21983138 8777292 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} +90 704 654 0.231639914999952 0.231169606672926 0.231525139238575 0.23099107347219 0.00374384773772327 0.00345104550648125 21905493 8741377 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} +91 229 711 0.239303222091045 0.977852008471304 0.238559548332952 1 0.00801812889203738 0.0917107352218146 22630189 47998565 1443 749 91 True 227 706 31 {X=0,Y=0,Width=0,Height=0} +92 280 706 0.233739019227689 0.23257949269438 0.233173113603418 0.232623788815137 0.00509047419256219 0.00375916301650357 22103999 8794690 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} +93 333 706 0.231870587421057 0.231664903416606 0.231921873807889 0.231631952391852 0.0041351603987349 0.00442974048853074 21927307 8760106 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} +94 386 706 0.231876942703219 0.231800489214291 0.232059205004959 0.231891355764096 0.00447003370395203 0.00449072978918462 21927908 8765233 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} +95 439 706 0.232448283627043 0.232302159310271 0.23247119859617 0.232364385442893 0.00446354346076099 0.00458684455286169 21981938 8784203 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} +96 492 706 0.232143980873667 0.232288883696766 0.232043945983062 0.232043945983062 0.00477516400854864 0.00467141811747411 21953161 8783701 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} +97 545 706 0.231840524081311 0.232016231156463 0.231845578698405 0.232120241092546 0.00412873343673616 0.00406849456973808 21924464 8773391 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} +98 598 707 0.231752723901957 0.231347346510305 0.231708247501335 0.231296253910124 0.00373513787657557 0.00376664320432668 21916161 8748098 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} +99 651 707 0.231824397949369 0.231444110394395 0.231738765545129 0.231280994888228 0.00425965907564065 0.00373491210211166 21922939 8751757 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} +100 705 710 0.235139761484463 0.985116871578625 0.235004196231022 1 0.00567522785335099 0.0513385375574648 22236463 48355166 1443 749 87 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv new file mode 100644 index 0000000..a1b3c3d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 229 232 0.0238141728185216 0.159902391882697 0.0237888151369497 0.176958876935988 0.00220995918235332 0.0429990933943107 2252035 9022594 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} +2 281 234 0.0233888447667344 0.0247428345735586 0.0234073395895323 0.0239719233997101 0.00168065999110218 0.00394616115408048 2211813 935618 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} +3 334 234 0.0233336035121341 0.023589786716162 0.0233157854581521 0.0235904478522927 0.00148436077386058 0.0014953962779194 2206589 892017 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} +4 387 234 0.0231460539540192 0.0233554536259945 0.0231326771953918 0.0233615625238422 0.00154454579109003 0.00142305507693066 2188853 883156 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} +5 440 234 0.0232749466899158 0.0230629934472154 0.0231937132829786 0.0229037918669413 0.00189081930371216 0.00190293021221039 2201042 872097 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.0232826237861715 0.0231809665783785 0.023270008392462 0.0231631952391852 0.00236098730209202 0.00237586339251919 2201768 876558 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} +7 546 235 0.0232005549927271 0.0232914027576517 0.0231631952391852 0.0232547493705653 0.00215241638174653 0.00219658544337458 2194007 880734 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} +8 599 235 0.0232675974035553 0.0231328094226179 0.0232547493705653 0.0231021591515984 0.00187417894416529 0.00172882774077842 2200347 874737 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} +9 652 235 0.0234559294756136 0.0233513545819841 0.0233615625238422 0.0233768215457389 0.00154449297723115 0.00140734168432036 2218157 883001 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} +10 703 234 0.0237214554907391 0.154132106798621 0.0237430380712596 0.171908140688182 0.00154940024824856 0.0424893773836577 2243267 8697002 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} +11 228 286 0.0233362894383723 0.0232308955789695 0.0233768215457389 0.023224231326772 0.00206446327046951 0.00202253556834223 2206843 878446 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} +12 281 286 0.0233370085052392 0.0231263038430918 0.0232852674143587 0.0231021591515984 0.00160385294412105 0.00155284993644816 2206911 874491 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} +13 334 287 0.0290161774712015 0.0235524193020545 0.0236667429617761 0.0236209658960861 0.014583256433458 0.00137959429329807 2743973 890604 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} +14 387 287 0.0235461089203364 0.023232693869245 0.0233157854581521 0.0233005264362554 0.00227457549986305 0.00146091468946665 2226685 878514 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} +15 440 287 0.0232865257813759 0.0234417715592195 0.0233310444800488 0.0234531166552224 0.00163006047339698 0.00147500945510494 2202137 886420 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} +16 493 287 0.0233648829208454 0.0232634499220454 0.0233157854581521 0.0232089723048753 0.001981825093371 0.00202681164688661 2209547 879677 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.0232524969993498 0.0233294841987804 0.0232547493705653 0.0232852674143587 0.00190981080014623 0.00193958879579861 2198919 882174 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.0232526238935028 0.0234074982622037 0.0232394903486687 0.0233615625238422 0.00175911093798429 0.00182951417483827 2198931 885124 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.0232473472116411 0.0232533477619683 0.023270008392462 0.023270008392462 0.00140536388484328 0.00132927295526361 2198432 879295 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.0232995430065698 0.0232040534520628 0.023270008392462 0.0232089723048753 0.00143092813270972 0.00137553658764415 2203368 877431 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} +21 228 339 0.0232460782701112 0.0231180793096258 0.023270008392462 0.0230563820859083 0.00194577654578061 0.00201060794363407 2198312 874180 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} +22 281 339 0.0232237343246728 0.0231432553734831 0.0231937132829786 0.0230563820859083 0.00166546991893851 0.00152189344099799 2196199 875132 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} +23 334 339 0.0253587495977059 0.0234625576791689 0.0235141527428092 0.0234836346990158 0.0067825091868474 0.00148322732047556 2398101 887206 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} +24 387 339 0.0234494367247858 0.0233641541774746 0.0233615625238422 0.0233768215457389 0.00189332757891346 0.001585888421549 2217543 883485 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} +25 440 339 0.023454142382959 0.0232949464473123 0.0234073395895323 0.0233157854581521 0.00172584040640952 0.00162694111787611 2217988 880868 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} +26 493 339 0.0233256832020851 0.0233552156169874 0.0233005264362554 0.0232089723048753 0.00181832057804605 0.00189501123265224 2205840 883147 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} +27 546 339 0.0233040265999753 0.0232667291572537 0.023270008392462 0.023270008392462 0.00170981784641402 0.00162419874893169 2203792 879801 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} +28 599 340 0.0234262996908911 0.0234668153958506 0.0233615625238422 0.0233768215457389 0.00172235967536597 0.00169541738509489 2215355 887367 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.023408238423116 0.023208020268847 0.0233615625238422 0.023224231326772 0.00146102659737706 0.00151456732368956 2213647 877581 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.0233989962989734 0.0235904742977379 0.0233920805676356 0.0235904478522927 0.00141904597544321 0.00146942044808492 2212773 892043 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} +31 227 391 0.0232357469711555 0.0232537973345371 0.0232089723048753 0.023270008392462 0.00210663459311409 0.00210906511684201 2197335 879312 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} +32 280 391 0.0232864200362484 0.0232638994946143 0.0232852674143587 0.023224231326772 0.00186822857308888 0.00160627497463141 2202127 879694 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} +33 333 391 0.0233993981304579 0.0235000044296121 0.0233615625238422 0.0233768215457389 0.00174808625807489 0.00170469190250832 2212811 888622 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} +34 387 392 0.0234311639667556 0.0237418480262244 0.0234531166552224 0.0237430380712596 0.00166944060328499 0.00172554452644876 2215815 897767 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} +35 440 392 0.0235198947032319 0.0235405981880374 0.0234988937209125 0.0234378576333257 0.00162322016763373 0.00157888898779964 2224206 890157 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} +36 493 392 0.0235569900939551 0.0234276761369128 0.0235446707866026 0.0234531166552224 0.00177509698036671 0.00183302623004644 2227714 885887 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} +37 546 392 0.0233382034251799 0.0235389056795428 0.0233310444800488 0.0234378576333257 0.00158024643332205 0.00148125511764819 2207024 890093 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} +38 599 392 0.0233409105004436 0.023432912335068 0.0233920805676356 0.0234073395895323 0.00155934153909344 0.00143924790683558 2207280 886085 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.0232393423054902 0.0233221852558974 0.0232089723048753 0.0233157854581521 0.00153395184127729 0.00157704103854512 2197675 881898 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.023317096697733 0.0230102612294302 0.0233157854581521 0.0229495689326314 0.00142909027670969 0.00146249631337166 2205028 870103 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} +41 227 444 0.0233469062491722 0.0230822457313415 0.0233005264362554 0.0231174181734951 0.00244745718332752 0.00242095156465157 2207847 872825 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} +42 280 444 0.0232588628560247 0.0233278445811762 0.0232852674143587 0.0232394903486687 0.00211331426796915 0.00201905494857875 2199521 882112 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} +43 333 444 0.0235290416567597 0.0234289455182838 0.0235141527428092 0.0234378576333257 0.00170885523377238 0.00174231141319692 2225071 885935 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} +44 386 444 0.0236084773965296 0.0235079380631806 0.023575188830396 0.0236209658960861 0.00192437776206326 0.00196496595670591 2232583 888922 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.0235093413395084 0.0236352993273998 0.0235141527428092 0.0236209658960861 0.00200953502809613 0.00193975147477366 2223208 893738 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.0235787418666796 0.0248035797612479 0.023575188830396 0.0234988937209125 0.00204367267562551 0.0066707358465973 2229771 937915 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.0238357553990422 0.0242832127354917 0.0236514839398795 0.0238040741588464 0.00247435348106068 0.00307137042680766 2254076 918238 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} +48 599 444 0.0234674556945099 0.0235195476136357 0.0234531166552224 0.0235294117647059 0.00180372009213309 0.00189705393827254 2219247 889361 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} +49 652 445 0.0235568103272383 0.0234063082171684 0.0235294117647059 0.0233920805676356 0.00177309187280138 0.00161830314747354 2227697 885079 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.0233529019979009 0.0233226612739115 0.0233920805676356 0.0232089723048753 0.0018734629386951 0.00183528053040559 2208414 881916 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} +51 227 496 0.023310106944806 0.0232899218127189 0.0233157854581521 0.023224231326772 0.0021446325295881 0.00236238462200609 2204367 880678 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} +52 280 496 0.0233582527013518 0.0234273323461249 0.0233920805676356 0.0233463035019455 0.0017983085188394 0.00167115090115992 2208920 885874 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} +53 333 496 0.0234970114576432 0.0237699066436115 0.0234836346990158 0.0238651102464332 0.00159792438484721 0.00152140393205604 2222042 898828 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} +54 386 496 0.0235035782300603 0.0235429253872175 0.0235294117647059 0.0235446707866026 0.00163897708519069 0.00153152845892681 2222663 890245 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} +55 439 497 0.0236623333899599 0.0234802232365814 0.0236362249179828 0.0234378576333257 0.00221148542216312 0.00216104361939066 2237676 887874 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.023484427787472 0.0236050986289491 0.023422598611429 0.0237125200274662 0.00230735849954769 0.00230729329134399 2220852 892596 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.0235214914546569 0.0235860050174943 0.023422598611429 0.0235599298084993 0.00197660968399125 0.00176127559399484 2224357 891874 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.0234521015019985 0.023431748735478 0.0234836346990158 0.0234073395895323 0.00200073762412589 0.00205039120243358 2217795 886041 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.0234692745107028 0.0235309456005291 0.0234073395895323 0.0235141527428092 0.00176804016501263 0.0018341345518723 2219419 889792 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} +60 704 497 0.0233295111757002 0.0233424689123874 0.0233005264362554 0.0232852674143587 0.00178902533554713 0.00172957608959286 2206202 882665 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} +61 227 548 0.0233820559295496 0.0232837600239807 0.0233463035019455 0.0232394903486687 0.00196630452186444 0.00207457695688701 2211171 880445 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} +62 280 549 0.0232443757735587 0.0233910491952717 0.0232394903486687 0.0233310444800488 0.00158587976544157 0.00140757142336592 2198151 884502 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} +63 333 549 0.0233661518623753 0.0235805308103321 0.0233463035019455 0.0236362249179828 0.00141419280373334 0.00136820869672852 2209667 891667 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} +64 386 549 0.0234723411193999 0.0237710437977563 0.0234836346990158 0.0238345922026398 0.00143812614522109 0.00156225392025131 2219709 898871 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} +65 439 549 0.0236118506660965 0.0234648319874585 0.0236362249179828 0.023422598611429 0.00184287064889222 0.0016594753290783 2232902 887292 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} +66 492 549 0.0235294011901931 0.0237446512434186 0.0234531166552224 0.0235599298084993 0.00230997342617792 0.00254531742306059 2225105 897873 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.0235084213568993 0.0235204203133283 0.0234683756771191 0.0233920805676356 0.0018717790890964 0.00198822129888144 2223121 889394 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} +68 598 549 0.0234163596489071 0.0232172497292317 0.0233768215457389 0.0231174181734951 0.00168815196173366 0.00172661195706673 2214415 877930 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} +69 651 549 0.0233404663709081 0.0234391799055871 0.0234073395895323 0.0233768215457389 0.00151012759044786 0.001576555454517 2207238 886322 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.0233280201694026 0.023393746630685 0.0233310444800488 0.0234378576333257 0.00153585489036494 0.00162317341758518 2206061 884604 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} +71 227 601 0.0234301065154807 0.0233327105430982 0.023422598611429 0.0232089723048753 0.00194613171439323 0.00186801544208025 2215715 882296 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} +72 280 601 0.0234444455547683 0.023298622364199 0.0233920805676356 0.0233920805676356 0.00160317303089753 0.00147977584143657 2217071 881007 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} +73 333 601 0.0234268284165286 0.0234315636173614 0.0234073395895323 0.0234683756771191 0.00139877059746137 0.00140885511670226 2215405 886034 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} +74 386 601 0.0233943963859276 0.023456660344883 0.0234683756771191 0.023422598611429 0.00162895571642703 0.00163515168160438 2212338 886983 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} +75 439 601 0.0234832328675313 0.0236578572921795 0.0234988937209125 0.0235904478522927 0.00181691129952142 0.00169317398034239 2220739 894591 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} +76 492 602 0.0236210293431626 0.0234603627072149 0.0236209658960861 0.0233310444800488 0.00216388794125222 0.00219494607453383 2233770 887123 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} +77 545 602 0.0235363697940947 0.0236740154592139 0.0235294117647059 0.0237430380712596 0.00179786740515307 0.001664747479838 2225764 895202 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.0234835078048628 0.023554455601337 0.0234836346990158 0.0235446707866026 0.00152050460646026 0.00163180849901812 2220765 890681 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.0232944566659376 0.0234966194126229 0.0232547493705653 0.0235446707866026 0.00148550674335217 0.00148651279890561 2202887 888494 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} +80 704 602 0.0233556936692666 0.0231477775446171 0.0233615625238422 0.0231937132829786 0.00149658352348063 0.00138906536723108 2208678 875303 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} +81 228 656 0.0243507764679658 0.160512522366828 0.0243533989471275 0.180422674906538 0.00195189526040961 0.0493589839855304 2302780 9057021 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} +82 280 653 0.0235232891218243 0.0232720182462994 0.0234988937209125 0.0233310444800488 0.001614883904585 0.0016175219330643 2224527 880001 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} +83 333 654 0.0235673319674235 0.0235589777724711 0.0235599298084993 0.0235446707866026 0.0014591618560153 0.00131379250692973 2228692 890852 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} +84 386 654 0.023447194928083 0.023545067468281 0.0233615625238422 0.0235141527428092 0.00158153744153714 0.00154419521090506 2217331 890326 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} +85 439 654 0.0234605716867104 0.02338041812629 0.0233768215457389 0.0234073395895323 0.00168894968090525 0.00173964424275718 2218596 884100 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} +86 492 654 0.0234147100249183 0.0234085031891224 0.0233920805676356 0.0233463035019455 0.00186985598446697 0.00180543031873596 2214259 885162 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} +87 545 654 0.0232893280272543 0.0235167443964416 0.0232852674143587 0.0235294117647059 0.0014588921986067 0.00149338555250168 2202402 889255 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} +88 598 654 0.0234822071397947 0.0233471233107476 0.0234683756771191 0.0233463035019455 0.00143186316606726 0.0014000491652734 2220642 882841 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} +89 651 654 0.0233808081370453 0.0235243342392221 0.0233615625238422 0.0235141527428092 0.00147281181478856 0.00146860090749171 2211053 889542 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} +90 704 654 0.0233820453550369 0.0233368095871086 0.0233463035019455 0.0233005264362554 0.00142083343442451 0.00135493901348606 2211170 882451 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} +91 229 711 0.0240266147796475 0.17606635657645 0.0239566643778134 0.18304722667277 0.00216736771133182 0.0323183347474052 2272125 8642343 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} +92 280 706 0.0234887950612373 0.0232892606765882 0.0234378576333257 0.0233005264362554 0.00170510460602687 0.00156458826589566 2221265 880653 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} +93 333 706 0.0233766206299967 0.0233990621651759 0.0233920805676356 0.0233920805676356 0.00158538706930401 0.00175540464741064 2210657 884805 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} +94 386 706 0.0232575833399821 0.0234771555649349 0.0232089723048753 0.023422598611429 0.00170626341393957 0.00176781356575253 2199400 887758 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} +95 439 706 0.0235091827218172 0.0235080702904067 0.0235599298084993 0.0235294117647059 0.00175657103394593 0.0017213164435345 2223193 888927 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} +96 492 706 0.0233985838929762 0.0233171341758588 0.0233157854581521 0.023270008392462 0.00189154576657286 0.00179640408737606 2212734 881707 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} +97 545 706 0.0233031489154172 0.0233008966724886 0.0233157854581521 0.0233157854581521 0.00164737255429896 0.00172122938987139 2203709 881093 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} +98 598 707 0.0233281787870939 0.023244276974255 0.0233463035019455 0.0232089723048753 0.00151429812076153 0.00156561736358522 2206076 878952 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} +99 651 707 0.0233110692254661 0.0232820939609313 0.0233005264362554 0.0232547493705653 0.00165270310922317 0.00164458353850388 2204458 880382 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} +100 705 710 0.0237638169888113 0.168703460874513 0.0237430380712596 0.173708705271992 0.00171963967780093 0.0235043679465381 2247273 8280930 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv new file mode 100644 index 0000000..4678e81 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 229 232 0.326318476513029 0.394902742343972 0.32628366521706 0.407644769970245 0.00632961709947196 0.0355972493063294 30858961 22282638 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} +2 281 234 0.326222110978348 0.330032703759842 0.326222629129473 0.327748531319142 0.00508330876664428 0.0100911829070593 30849848 12479756 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} +3 334 234 0.325088428041049 0.325368599921272 0.325123979552911 0.325062943465324 0.00441759207584162 0.00449216849523229 30742639 12303389 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} +4 387 234 0.324941072205893 0.325805134885655 0.324879835202564 0.325841153582055 0.00400792207125807 0.00371376695444855 30728704 12319896 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} +5 440 234 0.325373781267578 0.32576287506418 0.325185015640497 0.325703822384985 0.00484884651564224 0.00409077905188053 30769624 12318298 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.325299463591979 0.324896442942167 0.325261310749981 0.32466620889601 0.00627539300198203 0.00610147465110893 30762596 12285535 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} +7 546 235 0.325311804048357 0.325305183743615 0.325398641947051 0.325398641947051 0.00665810112041126 0.00650807560536535 30763763 12300991 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} +8 599 235 0.325095058260542 0.324316362101085 0.324971389333944 0.324147402151522 0.00590362955891243 0.00620697251808928 30743266 12263600 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} +9 652 235 0.325595772013717 0.325053872677611 0.325413900968948 0.324910353246357 0.00476552184908546 0.00447279392945002 30790617 12291488 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} +10 703 234 0.324480086897116 0.384183713661353 0.324391546501869 0.393102922102693 0.00453770558958953 0.0283535571842337 30685110 21677810 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} +11 228 286 0.325458123581264 0.326066310102729 0.325093461509117 0.326024261844816 0.00514775623927425 0.00478698030886405 30777600 12329772 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} +12 281 286 0.326142728111142 0.326328781146619 0.326222629129473 0.326131074998093 0.0046938255471587 0.00506409617525793 30842341 12339697 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} +13 334 287 0.344026798776169 0.325603567702125 0.327183947508965 0.325383382925155 0.0448626530440372 0.00405179426592223 32533584 12312274 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} +14 387 287 0.326755880658376 0.325553030456294 0.325841153582055 0.325398641947051 0.00783404247722717 0.00416026906879481 30900325 12310363 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} +15 440 287 0.325623699301887 0.325426224546424 0.325581750209812 0.325551232166018 0.0043418912346313 0.00418785313867418 30793258 12305568 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} +16 493 287 0.325754231087259 0.325789108945846 0.325871671625849 0.325505455100328 0.00529540850593983 0.00546969708212036 30805602 12319290 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.325998946461295 0.325374655928229 0.326009002822919 0.325337605859464 0.00552086103131343 0.0053022640281498 30828744 12303618 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.325747199036281 0.32549236460494 0.325688563363088 0.325169756618601 0.00584910016833802 0.00642494746863369 30804937 12308069 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.325419071905682 0.325794371589447 0.325352864881361 0.325673304341192 0.00459041973517184 0.00448472890250169 30773907 12319489 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.324759306906251 0.325598622403867 0.3247119859617 0.325337605859464 0.00451375589173635 0.00432411147386714 30711515 12312087 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} +21 228 339 0.325988953546747 0.326095029856247 0.325795376516365 0.326176852063783 0.00610683557468153 0.00630673290089813 30827799 12330858 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} +22 281 339 0.326453248678014 0.326777084334128 0.326359960326543 0.327061875333791 0.00546957466500392 0.00528967750195145 30871706 12356649 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} +23 334 339 0.333728672066965 0.32715160472945 0.327763790341039 0.327260242618448 0.0217939281770675 0.00573698438026503 31559721 12370811 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} +24 387 339 0.32714603788076 0.32588862315624 0.32669565880827 0.325871671625849 0.0058069405717288 0.00437016803444539 30937221 12323053 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} +25 440 339 0.326639550443625 0.325746452442693 0.326497291523613 0.326009002822919 0.00419132589731892 0.00375705843732538 30889324 12317677 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} +26 493 339 0.326441637863016 0.325882011794933 0.32642099641413 0.325703822384985 0.00480441843527763 0.00485125014366466 30870608 12322803 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} +27 546 339 0.326606896348256 0.325863605765054 0.326588845654994 0.325856412603952 0.00518746615102216 0.00547623761178471 30886236 12322107 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} +28 599 340 0.325797681760145 0.326480974683908 0.325795376516365 0.32664988174258 0.00514098459157799 0.00514946105011474 30809711 12345452 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.325820543856708 0.325931544113846 0.325749599450675 0.325764858472572 0.00478813980006012 0.00459153580511378 30811873 12324676 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.325291099152395 0.324884859837157 0.325261310749981 0.32480354009308 0.00420233458850952 0.00471437343515581 30761805 12285097 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} +31 227 391 0.326201131145054 0.326474521995272 0.326207370107576 0.326192111085679 0.00701734199753463 0.00666814461634131 30847864 12345208 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} +32 280 391 0.326186231656591 0.326895639265086 0.326253147173266 0.326863508049134 0.00633530677679299 0.0060736440689601 30846455 12361132 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} +33 333 391 0.327021924824626 0.327100194783927 0.327016098268101 0.327000839246204 0.00542253478305987 0.00560006698727434 30925484 12368867 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} +34 387 392 0.327136700586003 0.327881155226962 0.327214465552758 0.328007934691386 0.00509523074882676 0.00504937544586764 30936338 12398398 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} +35 440 392 0.326948918388607 0.327179557565057 0.326863508049134 0.327168688487068 0.00451513825810655 0.00476420212922107 30918580 12371868 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} +36 493 392 0.326907349978991 0.327128094728643 0.326909285114824 0.326939803158618 0.00485450500666273 0.00444940156242689 30914649 12369922 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} +37 546 392 0.326622726393841 0.326269992921877 0.32651255054551 0.326207370107576 0.00532675220331061 0.00530708169781377 30887733 12337474 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} +38 599 392 0.325814727874696 0.32637000959573 0.325856412603952 0.32651255054551 0.00513266132186072 0.00554865934900084 30811323 12341256 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.325524415201687 0.326143134121117 0.325520714122225 0.326176852063783 0.00450064680546435 0.00458761401917859 30783869 12332677 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.325466424573772 0.325259115778027 0.325352864881361 0.325200274662394 0.00413387538557224 0.00406665400972473 30778385 12299249 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} +41 227 444 0.326468412529296 0.326875514281268 0.326268406195163 0.326314183260853 0.00626778624824883 0.00720036512984605 30873140 12360371 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} +42 280 444 0.327323816589095 0.327140100960776 0.327382314793622 0.327183947508965 0.00558669586110279 0.00481509153639834 30954033 12370376 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} +43 333 444 0.327335173615787 0.327353251249316 0.327321278706035 0.327199206530861 0.00480124470655154 0.00493468270350286 30955107 12378436 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} +44 386 444 0.327185269323058 0.327592265183289 0.327138170443275 0.327397573815518 0.0047713841225974 0.00492146272412084 30940931 12387474 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.326785637337251 0.327169032277856 0.326832990005341 0.327016098268101 0.00586362537327538 0.00593791166817094 30903139 12371470 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.32652105245376 0.332499640672513 0.32646677347982 0.327580682078279 0.00610058930610289 0.0242972883357595 30878118 12573040 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.327505497292634 0.32914038154695 0.327061875333791 0.327779049362936 0.0070738868662817 0.00834543692874493 30971214 12446014 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} +48 599 444 0.326226023548065 0.326095294310699 0.32628366521706 0.325993743801022 0.00580940906625942 0.00581030228996367 30850218 12330868 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} +49 652 445 0.325694347621562 0.325236452031466 0.325886930647745 0.325383382925155 0.00484282102058431 0.00535940505376413 30799939 12298392 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.325550608269766 0.324710028998753 0.325459678034638 0.324696726939803 0.00443809580829416 0.00427065369065926 30786346 12278486 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} +51 227 496 0.326109756780391 0.326641948109012 0.326009002822919 0.326756694895857 0.00581521542907064 0.00552869718976205 30839223 12351539 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} +52 280 496 0.326591013430107 0.326791417765442 0.3265583276112 0.326848249027237 0.00490446035995827 0.00460466296079895 30884734 12357191 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} +53 333 496 0.327336918410391 0.326871838364381 0.327534905012589 0.326787212939651 0.00421554148750956 0.00437334533667585 30955272 12360232 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} +54 386 496 0.326981699378129 0.327303269357834 0.326955062180514 0.327214465552758 0.00419707175841443 0.00449728714003015 30921680 12376546 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} +55 439 497 0.326651711133286 0.326898230918719 0.326634622720684 0.327122911421378 0.00556452469339068 0.00535062001198981 30890474 12361230 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.326291543229058 0.325471314030538 0.326359960326543 0.325261310749981 0.0069037074381645 0.00686749009634848 30856414 12307273 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.326465768901109 0.326216282222618 0.326359960326543 0.32646677347982 0.00571535939521846 0.00531631325311287 30872890 12335443 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.326535677004892 0.327327387603883 0.3265583276112 0.326985580224308 0.00563105470365675 0.0056952844961979 30879501 12377458 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.32561278640473 0.326289562551346 0.325520714122225 0.326253147173266 0.00533159936731006 0.00526004357579855 30792226 12338214 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} +60 704 497 0.325632148337573 0.325789346954853 0.325673304341192 0.325566491187915 0.00528517367858906 0.00526056963575629 30794057 12319299 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} +61 227 548 0.326392001100172 0.32593844637505 0.326314183260853 0.325749599450675 0.0057885269041742 0.00555490312946742 30865914 12324937 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} +62 280 549 0.326055414359374 0.326458892737142 0.326192111085679 0.326482032501717 0.00470242090019293 0.00420604537815149 30834084 12344617 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} +63 333 549 0.326809186777143 0.326697060416867 0.326802471961547 0.326665140764477 0.00419037747536099 0.00461350000478057 30905366 12353623 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} +64 386 549 0.326706730323119 0.326813843502995 0.326771953917754 0.326756694895857 0.00428780465229882 0.00433537212219795 30895677 12358039 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} +65 439 549 0.326663205628644 0.326883130569493 0.326543068589303 0.326817730983444 0.00525174981031461 0.0054397302403363 30891561 12360659 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} +66 492 549 0.326435049941573 0.326190127677287 0.32623788815137 0.326024261844816 0.00685436364687235 0.00704079028689624 30869985 12334454 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.326271652570577 0.325890527228296 0.32628366521706 0.325917448691539 0.00627480457909639 0.00655033708239558 30854533 12323125 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} +68 598 549 0.326227556852414 0.32706814290431 0.32623788815137 0.327351796749828 0.00559055902895425 0.00533543635427308 30850363 12367655 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} +69 651 549 0.326021967175549 0.326795225909555 0.325917448691539 0.326832990005341 0.00549526651490036 0.0053636132178164 30830921 12357335 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.3257565046075 0.325825630105706 0.325963225757229 0.325856412603952 0.00498955441896441 0.00528736738393846 30805817 12320671 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} +71 227 601 0.325321025023474 0.325727094376786 0.325307087815671 0.325566491187915 0.00527625842389792 0.00530124139920834 30764635 12316945 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} +72 280 601 0.325782866867783 0.325646329987059 0.325780117494469 0.325505455100328 0.00479056126386255 0.00439357934430166 30808310 12313891 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} +73 333 601 0.325870296939191 0.326335551180597 0.325871671625849 0.32660410467689 0.00452840000305871 0.00465470834771455 30816578 12339953 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} +74 386 601 0.326564471403107 0.327096016403581 0.326543068589303 0.326787212939651 0.00498014319406406 0.00539313704488077 30882224 12368709 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} +75 439 601 0.326450710794954 0.326131498125216 0.32660410467689 0.325963225757229 0.00540650790835376 0.00545490434369061 30871466 12332237 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} +76 492 602 0.326606283026517 0.32696439742268 0.326710917830167 0.326909285114824 0.00613100069276542 0.0058380110399202 30886178 12363732 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} +77 545 602 0.326460354750581 0.325788897382284 0.326543068589303 0.325810635538262 0.00535968375374457 0.00518414639700624 30872378 12319282 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.326319132132819 0.326121395965139 0.326314183260853 0.326131074998093 0.00498071973755345 0.00556617009849239 30859023 12331855 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.326437725293299 0.325972190763161 0.32642099641413 0.325886930647745 0.00447664233772476 0.00394812884038876 30870238 12326213 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} +80 704 602 0.3262530097046 0.325758088438594 0.326176852063783 0.325444419012741 0.00485522800919255 0.0046053410002852 30852770 12318117 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} +81 228 656 0.32491282768234 0.383676089777279 0.324925612268254 0.390051117723354 0.00589685519122499 0.0349917160328415 30726033 21649167 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} +82 280 653 0.325672151719302 0.325927735969733 0.325658045319295 0.325841153582055 0.00504193338963001 0.00459284793551208 30797840 12324532 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} +83 333 654 0.325254817999153 0.325222647509057 0.325215533684291 0.32503242542153 0.00508751127703267 0.00529212782592815 30758374 12297870 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} +84 386 654 0.325925210383897 0.325661853463408 0.325658045319295 0.325627527275502 0.00520572306760529 0.00497761569047086 30821771 12314478 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} +85 439 654 0.326680272892221 0.326502659948995 0.32664988174258 0.326436255436027 0.00524758202535516 0.0056795354472753 30893175 12346272 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} +86 492 654 0.326616656623523 0.326331425691142 0.326756694895857 0.326131074998093 0.00473137585504356 0.00498027215592177 30887159 12339797 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} +87 545 654 0.325975904598015 0.326872790400409 0.326024261844816 0.32674143587396 0.00419925585206803 0.00417001625183617 30826565 12360268 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} +88 598 654 0.326093091348299 0.326124066955107 0.326054779888609 0.325963225757229 0.00419669607411092 0.00420522515726037 30837647 12331956 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} +89 651 654 0.326002457199527 0.326403277965827 0.325810635538262 0.32632944228275 0.0040746068814955 0.0039414968071777 30829076 12342514 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} +90 704 654 0.32519510372566 0.326106903861154 0.325169756618601 0.325947966735332 0.00463001358875511 0.00451690080882448 30752727 12331307 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} +91 229 711 0.324002763966142 0.394330835356071 0.324040588998245 0.399069199664302 0.00709161348014819 0.029090675003019 30639971 19356011 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} +92 280 706 0.325165463366425 0.324495186201719 0.325139238574807 0.324116884107729 0.00584969535289297 0.00527100996349279 30749924 12270362 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} +93 333 706 0.325047864210144 0.324876899758143 0.324956130312047 0.32480354009308 0.00585843234963593 0.006247201173447 30738803 12284796 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} +94 386 706 0.325397933454697 0.325795429407256 0.325337605859464 0.325627527275502 0.00612173133845785 0.00596478767162896 30771908 12319529 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} +95 439 706 0.326143669242777 0.326333647108541 0.326009002822919 0.32623788815137 0.00605394844339157 0.00574007171216688 30842430 12339881 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} +96 492 706 0.326567612033394 0.326220936620978 0.326405737392233 0.326176852063783 0.0052431656248223 0.00524943458598811 30882521 12335619 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} +97 545 706 0.325885915494522 0.326393255142085 0.325825894560159 0.32637521934844 0.00439274865526381 0.00395271359771842 30818055 12342135 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} +98 598 707 0.325673928237444 0.326174630646384 0.325703822384985 0.32623788815137 0.00423003649072924 0.00397882237392719 30798008 12333868 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} +99 651 707 0.325644224431132 0.325595686959447 0.325627527275502 0.325688563363088 0.00429848855783029 0.0045871390943846 30795199 12311976 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} +100 705 710 0.325591531634104 0.392355637480273 0.325474937056535 0.394567788204776 0.00460052343488168 0.025365503709258 30790216 19259057 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv new file mode 100644 index 0000000..13f49e5 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 229 232 0.0342661375391977 0.0414038229255196 0.0343480582894636 0.0421911955443656 0.00232826961219453 0.00441671014557933 3240446 2336237 1443 861 0 True 228 234 32 {X=0,Y=0,Width=0,Height=0} +2 281 234 0.0341262261610167 0.0344707651553227 0.0340428778515297 0.034332799267567 0.00194068360234761 0.00192519491342876 3227215 1303467 1443 577 0 False 281 234 26 {X=0,Y=0,Width=0,Height=0} +3 334 234 0.0341198603043419 0.0340901358621526 0.0340733958953231 0.0341649500267033 0.00170862463139671 0.00165802050719139 3226613 1289074 1443 577 0 False 334 234 26 {X=0,Y=0,Width=0,Height=0} +4 387 234 0.0340447812638245 0.0340807477290966 0.0339971007858396 0.0340581368734264 0.00158467124892748 0.00155485346732338 3219513 1288719 1443 577 0 False 387 234 26 {X=0,Y=0,Width=0,Height=0} +5 440 234 0.0342087708075348 0.0341151003624481 0.0342107270923934 0.0341191729610132 0.00185378944973692 0.00175791264484062 3235021 1290018 1443 577 0 False 440 234 26 {X=0,Y=0,Width=0,Height=0} +6 493 234 0.0340167270815016 0.0341439787886373 0.0339360646982528 0.0340886549172198 0.00258662810838998 0.00251242212451938 3216860 1291110 1443 577 0 False 493 234 26 {X=0,Y=0,Width=0,Height=0} +7 546 235 0.034204678471101 0.0340808270654322 0.0341191729610132 0.0340428778515297 0.00257552967042982 0.00257319110416353 3234634 1288722 1443 577 0 False 546 235 26 {X=0,Y=0,Width=0,Height=0} +8 599 235 0.0341535189784217 0.0342009422776589 0.0341039139391165 0.0342107270923934 0.00229468957265848 0.00240613145153288 3229796 1293264 1443 577 0 False 599 235 26 {X=0,Y=0,Width=0,Height=0} +9 652 235 0.0342865886468542 0.0340683183698393 0.0343022812237736 0.0339208056763561 0.00182116551120558 0.00172807331864643 3242380 1288249 1443 577 0 False 652 235 26 {X=0,Y=0,Width=0,Height=0} +10 703 234 0.0340480170647257 0.0402332734048983 0.0340123598077363 0.0406500343327993 0.00187558822836996 0.00355811519500477 3219819 2270188 1443 861 0 True 705 235 32 {X=0,Y=0,Width=0,Height=0} +11 228 286 0.0342057993694524 0.0341669863259859 0.0341649500267033 0.0342107270923934 0.00194732754670361 0.00197281726528771 3234740 1291980 1443 577 0 False 228 286 26 {X=0,Y=0,Width=0,Height=0} +12 281 286 0.034084012706123 0.0341444548066514 0.0340581368734264 0.0341649500267033 0.00190955393349488 0.00176152175563656 3223223 1291128 1443 577 0 False 281 286 26 {X=0,Y=0,Width=0,Height=0} +13 334 287 0.036036120632138 0.0340701166601148 0.0346379797055009 0.0338750286106661 0.00491548150891754 0.00167861085021946 3407828 1288317 1443 577 0 False 334 287 26 {X=0,Y=0,Width=0,Height=0} +14 387 287 0.0342400925142971 0.0342530133593133 0.0341039139391165 0.0342717631799802 0.00180241250694472 0.00169093071233689 3237983 1295233 1443 577 0 False 387 287 26 {X=0,Y=0,Width=0,Height=0} +15 440 287 0.0341853271127705 0.03440904148616 0.0341954680704967 0.0344090943770504 0.00163941407747737 0.00163928395536712 3232804 1301133 1443 577 0 False 440 287 26 {X=0,Y=0,Width=0,Height=0} +16 493 287 0.0342235328273323 0.0341306767296875 0.0342259861142901 0.0341344319829099 0.00199796522517638 0.00203983964658091 3236417 1290607 1443 577 0 False 493 287 26 {X=0,Y=0,Width=0,Height=0} +17 546 287 0.0343764508561945 0.03425552567661 0.0343022812237736 0.0342259861142901 0.00215318629216737 0.00199624732956799 3250878 1295328 1443 577 0 False 546 287 26 {X=0,Y=0,Width=0,Height=0} +18 599 287 0.0340031388326193 0.0340838418461883 0.0340581368734264 0.0340733958953231 0.00225439748351006 0.00239838251230449 3215575 1288836 1443 577 0 False 599 287 26 {X=0,Y=0,Width=0,Height=0} +19 652 287 0.0342497787679752 0.0341990646510477 0.0342412451361868 0.0340886549172198 0.00169848831805296 0.00172033596028464 3238899 1293193 1443 577 0 False 652 287 26 {X=0,Y=0,Width=0,Height=0} +20 705 287 0.0340097584776001 0.0342039306129697 0.0339818417639429 0.0341802090486 0.00165891867928128 0.00159296637416182 3216201 1293377 1443 577 0 False 705 287 26 {X=0,Y=0,Width=0,Height=0} +21 228 339 0.0341496169832173 0.0341236951321472 0.0341802090486 0.0341344319829099 0.00242792632206288 0.00236638702360701 3229427 1290343 1443 577 0 False 228 339 26 {X=0,Y=0,Width=0,Height=0} +22 281 339 0.0342279529736614 0.0344911545935937 0.0342565041580835 0.0345616845960174 0.00217869413503839 0.00199452360242865 3236835 1304238 1443 577 0 False 281 339 26 {X=0,Y=0,Width=0,Height=0} +23 334 339 0.0349755498759848 0.0342448417167378 0.0345616845960174 0.0343633173113603 0.00297959571703094 0.00192802177395443 3307533 1294924 1443 577 0 False 334 339 26 {X=0,Y=0,Width=0,Height=0} +24 387 339 0.0343361090900574 0.0343561505957035 0.0343022812237736 0.0344396124208438 0.00176195399489875 0.00172894990068735 3247063 1299133 1443 577 0 False 387 339 26 {X=0,Y=0,Width=0,Height=0} +25 440 339 0.0342880162060753 0.0343036299414802 0.0342717631799802 0.034332799267567 0.00162969935867434 0.00155262151797185 3242515 1297147 1443 577 0 False 440 339 26 {X=0,Y=0,Width=0,Height=0} +26 493 339 0.0343762922385033 0.0343519986608027 0.0343633173113603 0.0344701304646372 0.00184439660426361 0.00178200468691174 3250863 1298976 1443 577 0 False 493 339 26 {X=0,Y=0,Width=0,Height=0} +27 546 339 0.0342643187230049 0.0341915541446029 0.0342107270923934 0.0341649500267033 0.00200773620512646 0.00202593529539689 3240274 1292909 1443 577 0 False 546 339 26 {X=0,Y=0,Width=0,Height=0} +28 599 340 0.0341851684950792 0.0344531524888007 0.0341802090486 0.0345159075303273 0.00207254595098527 0.00213590448031724 3232789 1302801 1443 577 0 False 599 340 26 {X=0,Y=0,Width=0,Height=0} +29 652 340 0.0341954997940349 0.0340345475362828 0.0341649500267033 0.0339971007858396 0.00183657731551037 0.00193861342662332 3233766 1286972 1443 577 0 False 652 340 26 {X=0,Y=0,Width=0,Height=0} +30 705 340 0.0341720455247578 0.03416862594359 0.0341344319829099 0.0342107270923934 0.0015781043570268 0.00157502227029085 3231548 1292042 1443 577 0 False 705 340 26 {X=0,Y=0,Width=0,Height=0} +31 227 391 0.034280317960794 0.0341119004635754 0.0341039139391165 0.0340123598077363 0.00259749554337077 0.00274636490590848 3241787 1289897 1443 577 0 False 227 391 26 {X=0,Y=0,Width=0,Height=0} +32 280 391 0.0341413582887604 0.0341703713429751 0.0341496910048066 0.0340581368734264 0.00236007170549748 0.00232606386765315 3228646 1292108 1443 577 0 False 280 391 26 {X=0,Y=0,Width=0,Height=0} +33 333 391 0.0343086259314229 0.0341818222207589 0.0343175402456703 0.0342107270923934 0.00189006309523415 0.00203773444201196 3244464 1292541 1443 577 0 False 333 391 26 {X=0,Y=0,Width=0,Height=0} +34 387 392 0.0342989502522576 0.034527569971673 0.0342565041580835 0.034531166552224 0.00194654836558092 0.0019882923635517 3243549 1305615 1443 577 0 False 387 392 26 {X=0,Y=0,Width=0,Height=0} +35 440 392 0.0342688551889742 0.0343168791095395 0.0342259861142901 0.034332799267567 0.00184650968011771 0.00180113642246513 3240703 1297648 1443 577 0 False 440 392 26 {X=0,Y=0,Width=0,Height=0} +36 493 392 0.0343241598906511 0.0340859574818065 0.0343022812237736 0.0341191729610132 0.00183074379017142 0.00170954564909129 3245933 1288916 1443 577 0 False 493 392 26 {X=0,Y=0,Width=0,Height=0} +37 546 392 0.0344564576196529 0.0341839907472676 0.0343633173113603 0.0342259861142901 0.0019455896359485 0.00210863379185982 3258444 1292623 1443 577 0 False 546 392 26 {X=0,Y=0,Width=0,Height=0} +38 599 392 0.0343084250156807 0.034372546771745 0.0342412451361868 0.034378576333257 0.00200449182165871 0.00187244077943791 3244445 1299753 1443 577 0 False 599 392 26 {X=0,Y=0,Width=0,Height=0} +39 652 392 0.0340118628056371 0.0341053155477136 0.0339971007858396 0.0340733958953231 0.00172466370273548 0.00184681401528628 3216400 1289648 1443 577 0 False 652 392 26 {X=0,Y=0,Width=0,Height=0} +40 705 392 0.0341969485022815 0.0341721696332506 0.0341954680704967 0.0341496910048066 0.00155456435834522 0.00152535888150064 3233903 1292176 1443 577 0 False 705 392 26 {X=0,Y=0,Width=0,Height=0} +41 227 444 0.0341781681676394 0.0342607089838748 0.0340886549172198 0.034332799267567 0.002511709888953 0.00262335708159619 3232127 1295524 1443 577 0 False 227 444 26 {X=0,Y=0,Width=0,Height=0} +42 280 444 0.034195246005729 0.0345860937419631 0.0341954680704967 0.034531166552224 0.00203915461215183 0.00195536861450298 3233742 1307828 1443 577 0 False 280 444 26 {X=0,Y=0,Width=0,Height=0} +43 333 444 0.0343665213887233 0.0343916403831998 0.0343480582894636 0.0344090943770504 0.00179230609969805 0.00177908956107346 3249939 1300475 1443 577 0 False 333 444 26 {X=0,Y=0,Width=0,Height=0} +44 386 444 0.0343604516184054 0.0344897529849966 0.034378576333257 0.034378576333257 0.00186700265494831 0.00183861706047052 3249365 1304185 1443 577 0 False 386 444 26 {X=0,Y=0,Width=0,Height=0} +45 439 444 0.0342552775146046 0.0341400384172983 0.0342717631799802 0.034027618829633 0.00229936498053145 0.00223175970464252 3239419 1290961 1443 577 0 False 439 444 26 {X=0,Y=0,Width=0,Height=0} +46 492 444 0.0342946887236198 0.0351119349748815 0.0343022812237736 0.0348058289463645 0.00229978234274226 0.00327250810172913 3243146 1327712 1443 577 0 False 492 444 26 {X=0,Y=0,Width=0,Height=0} +47 545 444 0.034496545597484 0.0343043175230561 0.0343938353551537 0.0342107270923934 0.00211053785488877 0.0021979415296868 3262235 1297173 1443 577 0 False 545 444 26 {X=0,Y=0,Width=0,Height=0} +48 599 444 0.0343120837970918 0.0343754557707201 0.0342717631799802 0.0342259861142901 0.00220750612153201 0.00217828412977319 3244791 1299863 1443 577 0 False 599 444 26 {X=0,Y=0,Width=0,Height=0} +49 652 445 0.0341684290413977 0.0343502532614176 0.0341649500267033 0.034332799267567 0.00196493103163249 0.00186711819047528 3231206 1298910 1443 577 0 False 652 445 26 {X=0,Y=0,Width=0,Height=0} +50 705 445 0.0340757963097171 0.0340367425082368 0.0340123598077363 0.0339818417639429 0.00169541939550963 0.00163517609307864 3222446 1287055 1443 577 0 False 705 445 26 {X=0,Y=0,Width=0,Height=0} +51 227 496 0.0342503392171508 0.0339171562049147 0.0342412451361868 0.0338902876325628 0.00229313891001459 0.00201604672551216 3238952 1282533 1443 577 0 False 227 496 26 {X=0,Y=0,Width=0,Height=0} +52 280 496 0.0342483723577795 0.0342335230661801 0.0341802090486 0.0341496910048066 0.00181818623586183 0.00180978146135918 3238766 1294496 1443 577 0 False 280 496 26 {X=0,Y=0,Width=0,Height=0} +53 333 496 0.0343101592357715 0.0341793892397979 0.0343022812237736 0.0341039139391165 0.00169586859983041 0.00162144657418138 3244609 1292449 1443 577 0 False 333 496 26 {X=0,Y=0,Width=0,Height=0} +54 386 496 0.0343624607758277 0.034233628847961 0.034332799267567 0.0342565041580835 0.00160610145905243 0.00143589572364629 3249555 1294500 1443 577 0 False 386 496 26 {X=0,Y=0,Width=0,Height=0} +55 439 497 0.0342672690120619 0.0344175304740782 0.0342870222018769 0.0344090943770504 0.00215688690734092 0.00212555421371461 3240553 1301454 1443 577 0 False 439 497 26 {X=0,Y=0,Width=0,Height=0} +56 492 497 0.0343431728645736 0.0339104655072719 0.0343633173113603 0.0339513237201495 0.0026049388154814 0.00265313889752224 3247731 1282280 1443 577 0 False 492 497 26 {X=0,Y=0,Width=0,Height=0} +57 545 497 0.0342319818630187 0.0344277648613816 0.0342107270923934 0.034378576333257 0.00220525727121598 0.00215929455879618 3237216 1301841 1443 577 0 False 545 497 26 {X=0,Y=0,Width=0,Height=0} +58 598 497 0.0342453163235951 0.0344146479205484 0.0342565041580835 0.0343938353551537 0.00219306645649075 0.00226827948874859 3238477 1301345 1443 577 0 False 598 497 26 {X=0,Y=0,Width=0,Height=0} +59 651 497 0.0341736951487466 0.0341706886883178 0.0340123598077363 0.0342565041580835 0.00213508840656506 0.00216141902892511 3231704 1292120 1443 577 0 False 651 497 26 {X=0,Y=0,Width=0,Height=0} +60 704 497 0.0340705513513936 0.0340985984046256 0.0340428778515297 0.0339971007858396 0.00200516763712937 0.0020861922143614 3221950 1289394 1443 577 0 False 704 497 26 {X=0,Y=0,Width=0,Height=0} +61 227 548 0.0342418055853625 0.034434878686148 0.0342107270923934 0.0343938353551537 0.00216352898149616 0.00211786903256569 3238145 1302110 1443 577 0 False 227 548 26 {X=0,Y=0,Width=0,Height=0} +62 280 549 0.0341033852134791 0.0341905756631295 0.0340886549172198 0.0342412451361868 0.00187370451535691 0.0016994800096479 3225055 1292872 1443 577 0 False 280 549 26 {X=0,Y=0,Width=0,Height=0} +63 333 549 0.0343073464153803 0.0342164393085627 0.0343175402456703 0.0340886549172198 0.00156227393313904 0.00149843401941116 3244343 1293850 1443 577 0 False 333 549 26 {X=0,Y=0,Width=0,Height=0} +64 386 549 0.0343208183446224 0.0341468613421672 0.0343022812237736 0.0340581368734264 0.00165012416134395 0.0017552356718336 3245617 1291219 1443 577 0 False 386 549 26 {X=0,Y=0,Width=0,Height=0} +65 439 549 0.0341837092123199 0.0340276981659687 0.0341954680704967 0.0339360646982528 0.00195904843337442 0.00199370012722523 3232651 1286713 1443 577 0 False 439 549 26 {X=0,Y=0,Width=0,Height=0} +66 492 549 0.0342839767422052 0.034026111439255 0.0341802090486 0.0340428778515297 0.00265726683537011 0.00263605350067088 3242133 1286653 1443 577 0 False 492 549 26 {X=0,Y=0,Width=0,Height=0} +67 545 549 0.0343232610570674 0.0342155401634249 0.0342717631799802 0.0342412451361868 0.00244995957862668 0.00240160673723189 3245848 1293816 1443 577 0 False 545 549 26 {X=0,Y=0,Width=0,Height=0} +68 598 549 0.0341981116986839 0.0345602300965298 0.0341802090486 0.0344701304646372 0.00215264920353441 0.00205280079580129 3234013 1306850 1443 577 0 False 598 549 26 {X=0,Y=0,Width=0,Height=0} +69 651 549 0.0342065818833958 0.0345021294533634 0.0342412451361868 0.0345006485084306 0.00202002627807955 0.002214525895783 3234814 1304653 1443 577 0 False 651 549 26 {X=0,Y=0,Width=0,Height=0} +70 704 550 0.0340784399379043 0.0342395261822469 0.0340581368734264 0.0341649500267033 0.00200852384430111 0.00193305737473869 3222696 1294723 1443 577 0 False 704 550 26 {X=0,Y=0,Width=0,Height=0} +71 227 601 0.0341220280794554 0.0342573504123308 0.0340886549172198 0.0342870222018769 0.00216056000529009 0.00210797275604859 3226818 1295397 1443 577 0 False 227 601 26 {X=0,Y=0,Width=0,Height=0} +72 280 601 0.0340771815708872 0.0342383890281021 0.0340733958953231 0.0342107270923934 0.00175884868123305 0.00174902453610733 3222577 1294680 1443 577 0 False 280 601 26 {X=0,Y=0,Width=0,Height=0} +73 333 601 0.0341555598593822 0.0342046975308813 0.0341191729610132 0.0340733958953231 0.00182120705136743 0.00179027230751129 3229989 1293406 1443 577 0 False 333 601 26 {X=0,Y=0,Width=0,Height=0} +74 386 601 0.034211668224028 0.0345054615794622 0.0342107270923934 0.0344548714427405 0.00187887861922546 0.00194960671199432 3235295 1304779 1443 577 0 False 386 601 26 {X=0,Y=0,Width=0,Height=0} +75 439 601 0.034411135258011 0.0341247000590659 0.0343175402456703 0.0340886549172198 0.00201501590135811 0.00198382167761711 3254158 1290381 1443 577 0 False 439 601 26 {X=0,Y=0,Width=0,Height=0} +76 492 602 0.0343199406600643 0.0343256854428005 0.0342717631799802 0.0343633173113603 0.00235185408111856 0.00240848267076282 3245534 1297981 1443 577 0 False 492 602 26 {X=0,Y=0,Width=0,Height=0} +77 545 602 0.0343987313545565 0.0345583524699186 0.0344090943770504 0.0345159075303273 0.00205755827745993 0.00199788765524209 3252985 1306779 1443 577 0 False 545 602 26 {X=0,Y=0,Width=0,Height=0} +78 598 602 0.034258164356585 0.0342506861601333 0.0343022812237736 0.0342412451361868 0.00198061347375135 0.00199614984174681 3239692 1295145 1443 577 0 False 598 602 26 {X=0,Y=0,Width=0,Height=0} +79 651 602 0.0343337826972526 0.0344924504204099 0.0343022812237736 0.0345006485084306 0.00172369236524697 0.00161218201547905 3246843 1304287 1443 577 0 False 651 602 26 {X=0,Y=0,Width=0,Height=0} +80 704 602 0.0343570043272492 0.0342629568467192 0.0344090943770504 0.0343633173113603 0.00178590572317629 0.00173035847250104 3249039 1295609 1443 577 0 False 704 602 26 {X=0,Y=0,Width=0,Height=0} +81 228 656 0.0342055984537102 0.0403274504575801 0.0341954680704967 0.040512703135729 0.00229195001494774 0.00432158301371473 3234721 2275502 1443 861 0 True 227 653 32 {X=0,Y=0,Width=0,Height=0} +82 280 653 0.0340672415289032 0.033852655764003 0.0339971007858396 0.0338139925230793 0.0018204845500491 0.00176274548763852 3221637 1280094 1443 577 0 False 280 653 26 {X=0,Y=0,Width=0,Height=0} +83 333 654 0.0341439173208457 0.0340988364136327 0.0342412451361868 0.0340581368734264 0.00194809418338977 0.00194907526936587 3228888 1289403 1443 577 0 False 333 654 26 {X=0,Y=0,Width=0,Height=0} +84 386 654 0.0341446152386871 0.0342254307599403 0.0341649500267033 0.0342565041580835 0.00191613512719962 0.00179283401304375 3228954 1294190 1443 577 0 False 386 654 26 {X=0,Y=0,Width=0,Height=0} +85 439 654 0.0342428313130991 0.0340857988091352 0.0341954680704967 0.0339513237201495 0.00205870087319007 0.0020587013964866 3238242 1288910 1443 577 0 False 439 654 26 {X=0,Y=0,Width=0,Height=0} +86 492 654 0.0343806912358068 0.0345039806345294 0.034378576333257 0.0344701304646372 0.00188672075470468 0.00186012981952982 3251279 1304723 1443 577 0 False 492 654 26 {X=0,Y=0,Width=0,Height=0} +87 545 654 0.0342771773305076 0.0343283035418781 0.0342870222018769 0.034332799267567 0.00164591919643113 0.00158164824284597 3241490 1298080 1443 577 0 False 545 654 26 {X=0,Y=0,Width=0,Height=0} +88 598 654 0.0342891371044266 0.0345770229542498 0.0343175402456703 0.0345616845960174 0.00164234401525303 0.001691752307425 3242621 1307485 1443 577 0 False 598 654 26 {X=0,Y=0,Width=0,Height=0} +89 651 654 0.0342082209328719 0.0343541142964209 0.0342107270923934 0.0342717631799802 0.00158592972145545 0.0016349788281372 3234969 1299056 1443 577 0 False 651 654 26 {X=0,Y=0,Width=0,Height=0} +90 704 654 0.0341783796578944 0.0344839878779368 0.0341954680704967 0.0344701304646372 0.00170305039796281 0.00176693808161058 3232147 1303967 1443 577 0 False 704 654 26 {X=0,Y=0,Width=0,Height=0} +91 229 711 0.0338840486700409 0.0414683986980734 0.0339055466544594 0.0416876478217746 0.00260056542367393 0.00414798988259963 3204313 2035506 1443 749 0 True 227 706 31 {X=0,Y=0,Width=0,Height=0} +92 280 706 0.0339345525429298 0.0338543747179428 0.033829251544976 0.0338139925230793 0.00217271804240645 0.00197653314107559 3209089 1280159 1443 577 0 False 280 706 26 {X=0,Y=0,Width=0,Height=0} +93 333 706 0.0341572094833711 0.0341398004082912 0.0341649500267033 0.0341496910048066 0.0021832278387283 0.00236893717385299 3230145 1290952 1443 577 0 False 333 706 26 {X=0,Y=0,Width=0,Height=0} +94 386 706 0.0341185173412228 0.0339931604145006 0.0341649500267033 0.0339818417639429 0.00231139170069106 0.00222818056785802 3226486 1285407 1443 577 0 False 386 706 26 {X=0,Y=0,Width=0,Height=0} +95 439 706 0.0341792679169653 0.0342243464966859 0.0341344319829099 0.0341802090486 0.00224370774163061 0.00218138762064366 3232231 1294149 1443 577 0 False 439 706 26 {X=0,Y=0,Width=0,Height=0} +96 492 706 0.0341097299211284 0.0342113617830789 0.0340886549172198 0.0342412451361868 0.00202066987092569 0.00207613574409338 3225655 1293658 1443 577 0 False 492 706 26 {X=0,Y=0,Width=0,Height=0} +97 545 706 0.0342198951949467 0.0343393048470931 0.0341496910048066 0.0343938353551537 0.00170074584617014 0.00169354820767893 3236073 1298496 1443 577 0 False 545 706 26 {X=0,Y=0,Width=0,Height=0} +98 598 707 0.0341686722551909 0.0342853561388275 0.0341496910048066 0.034378576333257 0.00158632006306853 0.00146112647719735 3231229 1296456 1443 577 0 False 598 707 26 {X=0,Y=0,Width=0,Height=0} +99 651 707 0.0340566458671288 0.0341650822539294 0.0340123598077363 0.0341496910048066 0.00167462128861343 0.00161157986624482 3220635 1291908 1443 577 0 False 651 707 26 {X=0,Y=0,Width=0,Height=0} +100 705 710 0.0341290812794589 0.0411500168633583 0.0341039139391165 0.0414587624933242 0.00176522476636816 0.00334150388153267 3227485 2019878 1443 749 0 True 704 707 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv new file mode 100644 index 0000000..f83d6d0 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 255 216 0.239151044278076 0.944861037009154 0.23750667582208 1 0.00976279047501302 0.142954657980535 22615798 53314384 1443 861 77 True 253 219 32 {X=0,Y=0,Width=0,Height=0} +2 306 219 0.233298611920722 0.232279892245389 0.232822156099794 0.232166018158236 0.00521674630089494 0.00430967206868509 22062351 8783361 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} +3 359 219 0.231309842159007 0.231323334046038 0.231219958800641 0.231433585107195 0.00396370583589128 0.00382077292254087 21874279 8747190 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} +4 412 219 0.231346387675067 0.231024976532973 0.231311512932021 0.231143663691157 0.00428030469326025 0.0043163721823318 21877735 8735908 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} +5 465 219 0.230974947340248 0.231304240434583 0.23099107347219 0.231555657282368 0.00579178588346739 0.00611074161930845 21842609 8746468 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} +6 518 219 0.231083716778384 0.231017518917419 0.231174181734951 0.230960555428397 0.00611266803654388 0.00573438401003625 21852895 8735626 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} +7 571 219 0.231163078496564 0.231410974251524 0.231158922713054 0.231311512932021 0.00521332947283633 0.00479756069130571 21860400 8750504 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} +8 623 219 0.231422661635525 0.231787610282465 0.231448844129091 0.231570916304265 0.00436589362736763 0.00472619958145119 21884948 8764746 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} +9 676 219 0.232362048475576 0.231618147869443 0.2323338673991 0.231479362172885 0.0038566147670869 0.00333277505191581 21973783 8758338 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.236606287785047 0.93668310422453 0.236163881895171 1 0.00630933788915726 0.143792769862209 22375148 59728118 1443 973 75 True 729 219 34 {X=0,Y=0,Width=0,Height=0} +11 253 271 0.232196546776542 0.231612991007623 0.23224231326772 0.231403067063401 0.00473227808788332 0.00447857950160897 21958132 8758143 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} +12 306 271 0.235424332197049 0.23230377248243 0.232166018158236 0.232196536202029 0.0189247747998943 0.0037639716773712 22263374 8784264 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} +13 359 271 0.231508262316228 0.231223634717528 0.231403067063401 0.231052109559777 0.00357448744320154 0.00342365996590052 21893043 8743420 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} +14 412 271 0.232003445599234 0.231216547338206 0.232059205004959 0.231143663691157 0.00365465247468658 0.00357202692662456 21939871 8743152 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} +15 465 271 0.231682858096225 0.231431919044145 0.231647211413748 0.231494621194781 0.00471053325017143 0.00447272270173075 21909554 8751296 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} +16 518 271 0.23179555067859 0.231839284682441 0.231860837720302 0.231952391851682 0.00562135471854968 0.00535186390720744 21920211 8766700 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} +17 571 271 0.232217315119581 0.233010156769922 0.232211795223926 0.23270008392462 0.00463284962577184 0.00519550998722431 21960096 8810975 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} +18 623 271 0.231691825283036 0.231529000273578 0.231692988479438 0.231586175326162 0.00387170293083083 0.00392761174909241 21910402 8754967 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} +19 676 272 0.231404388877495 0.231736914363963 0.231311512932021 0.231631952391852 0.00347609696071867 0.00348137898063843 21883220 8762829 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} +20 729 272 0.231801059999732 0.231855813085709 0.231738765545129 0.231647211413748 0.00376889261666584 0.00389488082160159 21920732 8767325 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} +21 253 323 0.231942198021392 0.231577765674579 0.232043945983062 0.231738765545129 0.00461561464847268 0.00453473477916266 21934079 8756811 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} +22 306 323 0.23214730127067 0.232055687760744 0.232135500114443 0.231998168917372 0.00346547546230798 0.00355770697240682 21953475 8774883 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} +23 359 323 0.231727820924433 0.232046035173236 0.231677729457542 0.231921873807889 0.00384794178889318 0.00437645980091515 21913806 8774518 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} +24 412 323 0.231590331109672 0.231542699014206 0.231647211413748 0.231692988479438 0.00377175584832264 0.00401732633241971 21900804 8755485 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} +25 465 323 0.23253397947836 0.232467258224831 0.23242542153048 0.232349126420996 0.00441396540821587 0.00458250524750071 21990042 8790446 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} +26 518 324 0.232542914941633 0.233119773140393 0.232623788815137 0.233463035019455 0.00474226926370313 0.00470465918299382 21990887 8815120 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} +27 570 324 0.244106697098744 0.233170416168005 0.233585107194629 0.233203631647211 0.0683643492421273 0.00445620392932758 22716496 8817035 1420 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} +28 623 324 0.233543380167322 0.232389429279524 0.232593270771344 0.2323338673991 0.00826750528703 0.00407491191429185 22085498 8787503 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} +29 676 324 0.232357765797912 0.232272434629835 0.232303349355306 0.232013427939269 0.00343123640332385 0.00343999353877546 21973378 8783079 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} +30 729 324 0.231823530839324 0.231297999309509 0.231891355764096 0.231128404669261 0.00363799162832347 0.00349928915315672 21922857 8746232 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} +31 253 375 0.232357712925349 0.231664189389585 0.23237964446479 0.231464103150988 0.00514832404014218 0.00528006141133158 21973373 8760079 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} +32 306 375 0.232201030369948 0.23301232529643 0.232303349355306 0.232913710231174 0.00407999272790577 0.00344685442158611 21958556 8811057 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} +33 359 376 0.231945031990809 0.232395167941139 0.231937132829786 0.23247119859617 0.00426495706938988 0.00413404751219887 21934347 8787720 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} +34 412 376 0.232603866433118 0.232773602262355 0.232501716639963 0.23260852979324 0.00379907780643308 0.00408025945719502 21996651 8802030 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} +35 465 376 0.233082764966491 0.233330622675197 0.233127336537728 0.233279926756695 0.00419564749851248 0.00388052563500644 22041939 8823093 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} +36 527 379 0.233774147759041 0.233991441460561 0.233813992523079 0.233844510566873 0.0042951167669013 0.00387978488194324 22107321 8848081 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} +37 570 376 0.242762040558225 0.233955131864262 0.23436331731136 0.233829251544976 0.0540478512375953 0.00382862986689003 22798185 8846708 1433 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} +38 623 376 0.233682096625562 0.233207730691222 0.233737697413596 0.233310444800488 0.00383860341716027 0.00399522575921742 22098616 8818446 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} +39 676 376 0.23261752870359 0.23253665107311 0.232410162508583 0.23242542153048 0.00368804908503578 0.00360510458485771 21997943 8793070 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} +40 729 376 0.231969099581826 0.231742097671227 0.232013427939269 0.231616693369955 0.00365477052275792 0.00363071919579894 21936623 8763025 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} +41 253 428 0.232295037788286 0.231707930155992 0.232532234683757 0.231967650873579 0.00566479845912828 0.00607833108907761 21967446 8761733 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} +42 306 428 0.23265492018067 0.23302269191096 0.23256275272755 0.233020523384451 0.00439341486018561 0.00482045950183237 22001479 8811449 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} +43 359 428 0.232912071181698 0.232370600122522 0.232944228274968 0.232394903486687 0.00461939446924782 0.00437327549903336 22025797 8786791 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} +44 412 428 0.233649823212652 0.23387666822827 0.233447775997559 0.233936064698253 0.00463287085226451 0.00416801330651448 22095564 8843741 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} +45 465 428 0.234024679115089 0.233992710841932 0.23399710078584 0.234073395895323 0.00496391781358579 0.00502440581960722 22131013 8848129 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} +46 517 428 0.23442640485442 0.234456987078359 0.234378576333257 0.234348058289464 0.00476943136148823 0.00461209483319125 22169003 8865685 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} +47 570 428 0.234251280348785 0.234419408100689 0.234027618829633 0.234210727092393 0.00426472780543212 0.00428632256428534 22152442 8864264 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} +48 623 428 0.233871845682329 0.234462064603843 0.233875028610666 0.23436331731136 0.00426160770880194 0.00411353181179875 22116560 8865877 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} +49 676 428 0.233459080151687 0.232850241162626 0.233234149691005 0.232745860990311 0.00435686016251007 0.00426264996709436 22077526 8804928 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} +50 729 428 0.232188975425414 0.232076632553365 0.232043945983062 0.232104982070649 0.00455155662350271 0.00484458652833924 21957416 8775675 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} +51 253 480 0.232048270958777 0.232293511649681 0.231860837720302 0.232104982070649 0.00524164564788279 0.00542663697464938 21944110 8783876 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} +52 306 480 0.232847598377468 0.232916301884807 0.232852674143587 0.232959487296864 0.0042143663695676 0.00372221933700681 22019700 8807426 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} +53 359 480 0.233573284889376 0.233187764380074 0.233356221866178 0.233112077515831 0.0043812460913309 0.00437588578229563 22088326 8817691 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} +54 412 480 0.233976300719262 0.234076093330736 0.233890287632563 0.234058136873426 0.00489748352406134 0.00476586636664046 22126438 8851282 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} +55 464 480 0.234566485424805 0.234553645180668 0.234485389486534 0.234637979705501 0.00623612051443825 0.00616844552925072 22182250 8869340 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} +56 517 480 0.234392037687986 0.235306626342652 0.234454871442741 0.235202563515679 0.00528717859441459 0.00545222485802938 22165753 8897813 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} +57 570 480 0.234701056674048 0.234928800266676 0.234805828946365 0.235202563515679 0.00495999681061316 0.00547991428856867 22194976 8883526 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} +58 623 481 0.234223786615638 0.234430568078576 0.23413443198291 0.234210727092393 0.00504130560078561 0.00542899450024159 22149842 8864686 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} +59 676 481 0.232727884318637 0.232823610599282 0.232837415121691 0.232776379034104 0.00460304185429536 0.0046506775889996 22008379 8803921 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.231871993831252 0.231834921183978 0.232074464026856 0.231830319676509 0.00508768886792317 0.00524301899612361 21927440 8766535 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 253 532 0.233709125080148 0.232265638150411 0.232730601968414 0.232257572289616 0.00883590774307624 0.00423148285958004 22101172 8782822 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} +62 306 532 0.2329652398318 0.233309307646343 0.232761120012207 0.233234149691005 0.00425444698568822 0.00393473522758815 22030825 8822287 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} +63 359 532 0.234031943805347 0.233793232848575 0.234103913939117 0.233752956435492 0.00369897770199464 0.00376796520933873 22131700 8840586 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} +64 411 533 0.234415692873006 0.23411470368077 0.234348058289464 0.233890287632563 0.00414236991873986 0.00352860472453951 22167990 8852742 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} +65 464 533 0.234612600874903 0.235047751879313 0.234485389486534 0.234973678187228 0.0059689472494158 0.00598534067681105 22186611 8888024 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} +66 517 533 0.23494167971165 0.234971430324384 0.234988937209125 0.234836346990158 0.00592355610158015 0.00529332860525858 22217731 8885138 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} +67 570 533 0.234702759170601 0.234980501112097 0.234515907530327 0.234897383077745 0.00450885360278215 0.00422455178653514 22195137 8885481 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} +68 623 533 0.234044717816748 0.23369062452109 0.234012359807736 0.233768215457389 0.00429903856408512 0.00462336684729354 22132908 8836706 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.232891260540608 0.232705663913564 0.232730601968414 0.232852674143587 0.00373392906310105 0.00393545633925979 22023829 8799461 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.232055778862829 0.232211874560262 0.232089723048753 0.232196536202029 0.0042681696514458 0.00426190069141602 21944820 8780789 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 585 0.233196314084389 0.2327364993027 0.233112077515831 0.233157854581521 0.00457990406237317 0.00489769543929184 22052677 8800627 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} +72 306 585 0.23311565170114 0.233405225276186 0.232913710231174 0.233295185778592 0.00367938486211423 0.0033500549805991 22045049 8825914 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} +73 358 585 0.234098859322023 0.233751792835902 0.234103913939117 0.233600366216526 0.00373820999199399 0.00357742137469827 22138028 8839019 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} +74 411 585 0.234777150867789 0.234602172572662 0.234439612420844 0.234760051880674 0.0056929573772427 0.00400210792995518 22202172 8871175 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} +75 464 585 0.235452819934395 0.234779409946582 0.234958419165332 0.234805828946365 0.00829513411001125 0.00504387312092818 22266068 8877877 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} +76 517 585 0.235179955207421 0.234972593923974 0.235095750362402 0.234699015793088 0.00545653193683518 0.00570099879423659 22240264 8885182 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} +77 570 585 0.235278668283933 0.234468702410595 0.234729533836881 0.234439612420844 0.00548741323083135 0.00425313914194653 22249599 8866128 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} +78 623 585 0.233220487420533 0.233319436251866 0.233035782406348 0.233264667734798 0.00385941340609455 0.00405157626254314 22054963 8822670 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.232538029516743 0.232493280542936 0.232486457618067 0.232440680552377 0.0034481889867939 0.00315680081093848 21990425 8791430 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.231859579353285 0.231800621441517 0.231738765545129 0.231570916304265 0.00423487024236706 0.00401695663996687 21926266 8765238 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 254 636 0.243050871707315 0.918916322341787 0.240527962157626 1 0.0131565513846877 0.188207380928327 22984593 51850437 1443 861 75 True 253 637 32 {X=0,Y=0,Width=0,Height=0} +82 306 637 0.235496757034866 0.234598919782899 0.234821087968261 0.234500648508431 0.00516652534124839 0.00340054621843643 22270223 8871052 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} +83 358 637 0.234150071687266 0.234482877169237 0.233813992523079 0.234195468070497 0.00423274377168866 0.00372925856562599 22142871 8866664 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} +84 411 637 0.235517377334727 0.234016432406301 0.234393835355154 0.233768215457389 0.00884086791481015 0.0042285983096038 22272173 8849026 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} +85 464 637 0.235452396953885 0.233956507027414 0.234882124055848 0.233966582742046 0.00718085525724224 0.00476129631037208 22266028 8846760 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} +86 517 637 0.234915116535625 0.234620763720657 0.234790569924468 0.234699015793088 0.00456224742367775 0.00415270415031429 22215219 8871878 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} +87 570 637 0.234397726775845 0.233469857944324 0.23399710078584 0.233447775997559 0.00515383650688131 0.00424592746256032 22166291 8828358 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.232498650031266 0.233037131124054 0.23247119859617 0.233096818493935 0.00372420084069905 0.00361750215742476 21986701 8811995 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 638 0.232351685453082 0.232688738828618 0.232349126420996 0.23256275272755 0.00364711971751713 0.00340578297388399 21972803 8798821 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} +90 729 638 0.232476803087927 0.23224408511255 0.232394903486687 0.232349126420996 0.00389894270173921 0.00381666822845959 21984635 8782007 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} +91 255 692 0.241468512194079 0.93556532689806 0.239581902800031 1 0.0102587634312756 0.171120633778487 22834954 45922893 1443 749 79 True 253 689 31 {X=0,Y=0,Width=0,Height=0} +92 305 689 0.235855708870129 0.234379713487402 0.234897383077745 0.23427176317998 0.00607173369783603 0.0036741825018501 22304168 8862763 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} +93 358 689 0.23350167428904 0.232910272323295 0.233569848172732 0.232822156099794 0.00427294722616106 0.00378892628396925 22081554 8807198 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} +94 411 689 0.236841708162376 0.233142701341406 0.23399710078584 0.233081559472038 0.0132949337206976 0.00394208534563403 22397411 8815987 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} +95 464 689 0.236560923125354 0.234465052939153 0.234302281223774 0.23431754024567 0.0111194000129932 0.00443939365169648 22370858 8865990 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} +96 517 690 0.234120092943622 0.237549332325233 0.234012359807736 0.233737697413596 0.00581549009741817 0.0180713961032166 22140036 8982618 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} +97 570 690 0.234005750737268 0.235749957786458 0.233127336537728 0.233508812085145 0.00653895140131191 0.0086169721558925 22129223 8914577 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} +98 623 690 0.232237174054524 0.231932346204199 0.232364385442893 0.231738765545129 0.00368840129168598 0.00363954981383145 21961974 8770219 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} +99 676 690 0.232819078916584 0.232236442378879 0.232928969253071 0.232410162508583 0.003803531168831 0.0037292818964303 22017003 8781718 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.235857432515707 0.943997085721765 0.23566033417258 1 0.00584327261541056 0.138997439018845 22304331 53265635 1443 861 78 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv new file mode 100644 index 0000000..27ef01e --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 255 216 0.0242331878861977 0.160017694085321 0.024124513618677 0.179873350118257 0.00222612008481225 0.0472373652185702 2291660 9029100 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} +2 306 219 0.0234966307751842 0.0237441752254044 0.0234988937209125 0.0237582970931563 0.0016749391809497 0.00160683049066023 2222006 897855 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} +3 359 219 0.023417840080692 0.0231944802008902 0.0234378576333257 0.0231784542610819 0.00158366227058237 0.00148422320344991 2214555 877069 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} +4 412 219 0.0233559791811108 0.0235838100455404 0.0233920805676356 0.0235599298084993 0.00181587015973548 0.00174268514516639 2208705 891791 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} +5 465 219 0.0233270473142297 0.0232173290655674 0.0233157854581521 0.0231784542610819 0.00223287407738773 0.00232611944847177 2205969 877933 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} +6 518 219 0.0232906709903734 0.0234464788484701 0.0232394903486687 0.0234073395895323 0.00229692727870975 0.00220502159294847 2202529 886598 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} +7 571 219 0.023457050373965 0.0233862625696854 0.0234683756771191 0.0233310444800488 0.00206536567827749 0.00200561554257239 2218263 884321 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} +8 623 219 0.0234779984837206 0.0233979250110311 0.0234836346990158 0.023422598611429 0.00185254437407469 0.00188574533006858 2220244 884762 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} +9 676 219 0.0234837721676815 0.0235035481192727 0.0234988937209125 0.0234683756771191 0.0015763418532685 0.00141049630602983 2220790 888756 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.0239309577373207 0.175432880651631 0.0239108873121233 0.198443579766537 0.00188782090306632 0.0609363145130837 2263079 11186575 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} +11 253 271 0.0234739695943633 0.0235007184566332 0.023422598611429 0.0236057068741894 0.00182166104277281 0.00170000290761213 2219863 888649 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} +12 306 271 0.0238659562074531 0.0235552225192486 0.0235904478522927 0.0235599298084993 0.00251398245395334 0.00141939811421477 2256932 890710 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} +13 359 271 0.0234026233568463 0.0232663324755753 0.0233920805676356 0.023270008392462 0.00149774084492464 0.00141948005019338 2213116 879786 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} +14 412 271 0.02338355751036 0.023549589639415 0.0233920805676356 0.0235904478522927 0.0014419423792807 0.00140470560905998 2211313 890497 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} +15 465 271 0.0232954295211105 0.0233347997332712 0.0233615625238422 0.0233005264362554 0.00193720506713791 0.00178593698259922 2202979 882375 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} +16 518 271 0.0234600429610729 0.0232975381009446 0.0234683756771191 0.0233157854581521 0.00216312339917306 0.00209225226016075 2218546 880966 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} +17 571 271 0.0235340116777517 0.0235588190997997 0.0235446707866026 0.0234988937209125 0.00179798425051551 0.00183203694300206 2225541 890846 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} +18 623 271 0.0235316429868959 0.0234412955412054 0.0234988937209125 0.023422598611429 0.00155366760428952 0.00156796244767592 2225317 886402 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} +19 676 272 0.0233892148746807 0.0230934850455635 0.0233920805676356 0.0231174181734951 0.00137926252275621 0.00150072381717 2211848 873250 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} +20 729 272 0.023464082424943 0.0235395668156735 0.0235141527428092 0.0235599298084993 0.00155683226190933 0.00144553760000401 2218928 890118 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} +21 253 323 0.0235425770330783 0.023267337402494 0.0235294117647059 0.0232089723048753 0.0018468906486499 0.0018801994176489 2226351 879824 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} +22 306 323 0.0234659964117506 0.0234471928754913 0.0234378576333257 0.0234683756771191 0.00142531439611579 0.00144698466600353 2219109 886625 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} +23 359 323 0.0233630112320888 0.0234105923792954 0.0233463035019455 0.0233920805676356 0.00157361632841686 0.00180577070739879 2209370 885241 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} +24 412 323 0.0234013015427527 0.0233311238163845 0.0233615625238422 0.0232089723048753 0.00158567936276614 0.00161757943543012 2212991 882236 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} +25 465 323 0.0234601698552259 0.0230610364842685 0.0234073395895323 0.023071641107805 0.00173486299301118 0.00170685169737511 2218558 872023 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} +26 518 324 0.0236586111614722 0.023379148744919 0.0236667429617761 0.023270008392462 0.00189526343449755 0.00203262303039328 2237324 884052 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} +27 570 324 0.0331055953395161 0.023772736306251 0.0237277790493629 0.02392614633402 0.0662640132633871 0.00171435532958934 3130697 898935 1443 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} +28 623 324 0.0236041101227643 0.0233817932894418 0.0235599298084993 0.0233768215457389 0.00189130273259254 0.00156244213104996 2232170 884152 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} +29 676 324 0.0234353303247787 0.0233894095776676 0.0233768215457389 0.0233310444800488 0.00139877199876149 0.00129888510299093 2216209 884440 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} +30 729 324 0.0234361022642094 0.0233713473385767 0.0234073395895323 0.0233920805676356 0.00144291152518723 0.00152047502199549 2216282 883757 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} +31 253 375 0.023461978096906 0.0234704913127374 0.0234683756771191 0.0234836346990158 0.00199913972934979 0.00204701045575119 2218729 887506 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} +32 306 375 0.0234969797341049 0.0233920805676356 0.0234683756771191 0.023422598611429 0.00149850901042153 0.00150585228430696 2222039 884541 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} +33 359 376 0.0235852557665329 0.023403134763741 0.0235904478522927 0.0233768215457389 0.00167725174870632 0.00161503140014849 2230387 884959 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} +34 412 376 0.0234927182054671 0.0233899649320174 0.0234683756771191 0.0233615625238422 0.00161031310900672 0.00145445434688204 2221636 884461 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} +35 465 376 0.0233853234539891 0.0236336597097956 0.0233310444800488 0.0236057068741894 0.0016793893699149 0.00162664653627461 2211480 893676 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} +36 527 379 0.0236228798828936 0.0236099910363163 0.0236057068741894 0.0235599298084993 0.00163674071777863 0.00158017474707733 2233945 892781 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} +37 570 376 0.0267710392224011 0.023546574858659 0.0237430380712596 0.023575188830396 0.0278269882332183 0.00146122988776418 2531657 890383 1443 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} +38 623 376 0.0235620552855618 0.0235061662183503 0.0236209658960861 0.0234531166552224 0.00156678961245623 0.00161920999249788 2228193 888855 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} +39 676 376 0.0234703213874649 0.0234134220419348 0.0234683756771191 0.0233463035019455 0.00147515742485162 0.0015272014723089 2219518 885348 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} +40 729 376 0.023398256083081 0.0233616683056231 0.0234073395895323 0.0233157854581521 0.00156496955445486 0.00139008525442929 2212703 883391 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} +41 253 428 0.0235276775446151 0.0232582401693355 0.0234531166552224 0.023270008392462 0.00230548442621941 0.00239560502312632 2224942 879480 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} +42 306 428 0.0236704123177 0.0234748548112 0.0236362249179828 0.0234378576333257 0.00171898246699731 0.00171464902069445 2238440 887671 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} +43 359 428 0.0235975750738854 0.023444733449085 0.0235904478522927 0.0234073395895323 0.0018158440520083 0.00172070007284549 2231552 886532 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} +44 412 428 0.0235440574648631 0.023532664554469 0.023422598611429 0.0235904478522927 0.00190837007330093 0.00176892302485939 2226491 889857 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} +45 465 428 0.0236109941305638 0.023711911782226 0.0235599298084993 0.0237277790493629 0.00196831741184972 0.0020860311877736 2232821 896635 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} +46 517 428 0.0235765212190023 0.0236765542219558 0.0235904478522927 0.0235904478522927 0.00187435246082142 0.00179654290092038 2229561 895298 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} +47 570 428 0.0236401480622126 0.0237561550120928 0.0236514839398795 0.0237888151369497 0.00163364754204016 0.00160338522000229 2235578 898308 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} +48 623 428 0.0236320691344724 0.023626175648796 0.0236057068741894 0.0236362249179828 0.00172349057288115 0.00161892608738891 2234814 893393 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} +49 676 428 0.0235480123326312 0.0235180137778125 0.0234988937209125 0.0234378576333257 0.00161458622613377 0.00146148835537176 2226865 889303 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} +50 729 428 0.0235242514024844 0.02332017540206 0.0234836346990158 0.023270008392462 0.00174403875293661 0.00186255660683823 2224618 881822 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} +51 253 480 0.0234752068123549 0.0235114817528411 0.0233920805676356 0.0234683756771191 0.00213391804343065 0.00217429862516798 2219980 889056 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} +52 306 480 0.0235744486145035 0.0234979416848843 0.023575188830396 0.0234531166552224 0.00169087164813308 0.00160054483498762 2229365 888544 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} +53 359 480 0.0236070392627957 0.0233862096787949 0.023575188830396 0.0234683756771191 0.00170978915388095 0.00161434981338879 2232447 884319 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} +54 412 480 0.0236711102355415 0.0236633843902322 0.0235904478522927 0.0235446707866026 0.00194026584489226 0.00175869411138521 2238506 894800 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} +55 464 480 0.0236569826865089 0.0237387539091327 0.0236209658960861 0.0237430380712596 0.0023505758122046 0.00246832674946578 2237170 897650 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} +56 517 480 0.0236895627602883 0.0238996744433465 0.0237125200274662 0.02392614633402 0.0020964401455751 0.00210324659415418 2240251 903735 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} +57 570 480 0.0237076346025762 0.023696732096665 0.0236972610055695 0.0237430380712596 0.00202377025251587 0.00211486021173675 2241960 896061 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} +58 623 481 0.0237411558079903 0.0236500823312824 0.0236667429617761 0.0236667429617761 0.00204221032483766 0.00190202731476127 2245130 894297 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} +59 676 481 0.0234707655170004 0.0235088107628731 0.0234378576333257 0.0234531166552224 0.00180995957156601 0.00186093001576102 2219560 888955 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0234096025352606 0.0233859716697879 0.023422598611429 0.0233768215457389 0.00194762055090887 0.00196400659751767 2213776 884310 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 253 532 0.023694754846048 0.0232617309681056 0.0236057068741894 0.023224231326772 0.00199055297885382 0.00179054359289524 2240742 879612 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} +62 306 532 0.0235509731962009 0.0235365784803627 0.0235294117647059 0.0234988937209125 0.00148129607888693 0.00159820494623993 2227145 890005 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} +63 359 532 0.0235821891578358 0.0236763955492845 0.023575188830396 0.0236667429617761 0.00149997842016278 0.00149148133257993 2230097 895292 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} +64 411 533 0.0237737887543335 0.0237286253036102 0.0238193331807431 0.0238345922026398 0.00158991737484948 0.00138936575959721 2248216 897267 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} +65 464 533 0.0235978500112169 0.0236059977740869 0.0235294117647059 0.0235294117647059 0.00227311422236515 0.00240996375753436 2231578 892630 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} +66 517 533 0.0237558120826603 0.0238044972859701 0.0237125200274662 0.0237277790493629 0.00209260753404056 0.0020081112387374 2246516 900136 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} +67 570 533 0.0236588649497782 0.0236791723210334 0.0236362249179828 0.0236057068741894 0.00181478769074614 0.00172821657983245 2237348 895397 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} +68 623 533 0.0236135108645981 0.0234698301766067 0.0236057068741894 0.0234531166552224 0.00173734917851943 0.00172362328368676 2233059 887481 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0234566591169933 0.0236554243112185 0.0234531166552224 0.0236209658960861 0.00148817877392259 0.00151198508191627 2218226 894499 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.0233070191870833 0.0234226779477647 0.0232547493705653 0.0233463035019455 0.00172872176017566 0.0017837785302385 2204075 885698 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 585 0.0235419848603644 0.0235658800336756 0.0234836346990158 0.0236057068741894 0.00170359438980661 0.00178014012693096 2226295 891113 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} +72 306 585 0.0236569826865089 0.0235772251296785 0.0236209658960861 0.0235904478522927 0.00149043586008213 0.00136219318317711 2237170 891542 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} +73 358 585 0.0237234540736486 0.0235241491211055 0.0236972610055695 0.0234683756771191 0.00152172636778609 0.00143304099690984 2243456 889535 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} +74 411 585 0.023623577800735 0.0235589777724711 0.0235904478522927 0.0234836346990158 0.00170542801444634 0.00150397847219065 2234011 890852 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} +75 464 585 0.0238867879975685 0.0236349290911666 0.0238498512245365 0.0235446707866026 0.00223880172125465 0.00202064334503037 2258902 893724 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} +76 517 585 0.023746432489852 0.0237381456638924 0.0236667429617761 0.0238345922026398 0.0021675032428322 0.00233958755646502 2245629 897627 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} +77 570 585 0.0237946839915254 0.0235861372447205 0.0238040741588464 0.0235904478522927 0.00174051264645598 0.00163235099196571 2250192 891879 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} +78 623 585 0.0236072613275635 0.0236842762919625 0.0236057068741894 0.0236362249179828 0.00154526906668726 0.00161698986366044 2232468 895590 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0234274100147298 0.0235032043284847 0.0233310444800488 0.0233920805676356 0.00134028491453478 0.00144948207875824 2215460 888743 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0233334025963918 0.0236059448831964 0.0233157854581521 0.0237125200274662 0.00167221771064687 0.00156637555095278 2206570 892628 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 254 636 0.0245539763049491 0.158490622214531 0.024429694056611 0.176546883344778 0.00218311941590989 0.0535170430202685 2321996 8942934 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} +82 306 637 0.0238632385576766 0.0234937104136478 0.0238193331807431 0.0235294117647059 0.00139401168616452 0.00127769413433061 2256675 888384 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} +83 358 637 0.0237790971597335 0.0235603264901777 0.023773556115053 0.0235904478522927 0.00153311892176035 0.00143393424132525 2248718 890903 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} +84 411 637 0.0238070350224161 0.0238003717965145 0.0236667429617761 0.0238040741588464 0.00189944994705061 0.00159728893993628 2251360 899980 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} +85 464 637 0.0238198301828423 0.0236926594980998 0.0237888151369497 0.0236972610055695 0.00204661561897442 0.00195982270661806 2252570 895907 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} +86 517 637 0.0236787133102079 0.023678431848567 0.0236820019836728 0.0236514839398795 0.00178696015708093 0.00161035001454096 2239225 895369 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} +87 570 637 0.0235398170852508 0.0237064111296185 0.0234836346990158 0.0236972610055695 0.00164376586699975 0.00162866856418081 2226090 896427 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.0236260099386673 0.023638340553601 0.0235294117647059 0.0236057068741894 0.00151868978713613 0.00145762597365074 2234241 893853 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 638 0.0233528174017989 0.0233235604190492 0.0233157854581521 0.0232547493705653 0.00136268157116024 0.00136592295141967 2208406 881950 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} +90 729 638 0.0234212979463609 0.0234224399387576 0.023422598611429 0.0233768215457389 0.00148747727298674 0.00146533762803936 2214882 885689 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} +91 255 692 0.0243632120949585 0.158000183963909 0.0242465857938506 0.16928358892195 0.00212372604039191 0.0506497881675485 2303956 7755552 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} +92 305 689 0.0237786213066598 0.0238848121031282 0.0237888151369497 0.0238193331807431 0.00152044433396491 0.00135755545821872 2248673 903173 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} +93 358 689 0.0235680193107522 0.023384596506636 0.023575188830396 0.023270008392462 0.00166637989029138 0.0016207656265294 2228757 884258 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} +94 411 689 0.0239769039952148 0.0236479402502189 0.0238651102464332 0.0236209658960861 0.00208916153797582 0.00157799266950996 2267424 894216 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} +95 464 689 0.0239892867496438 0.0237171479803812 0.0238498512245365 0.0237277790493629 0.00208489791133653 0.00172194971594541 2268595 896833 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} +96 517 690 0.0235495033389288 0.0239268603610412 0.0235141527428092 0.0237582970931563 0.0017266917351453 0.0023731382062591 2227006 904763 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} +97 570 690 0.0236096617419575 0.0236049135108325 0.0235446707866026 0.0235294117647059 0.00162281545782229 0.00155113050913863 2232695 892589 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} +98 623 690 0.0234785906564346 0.0235732054220039 0.0233920805676356 0.023575188830396 0.00157115528418552 0.00144017101141355 2220300 891390 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} +99 676 690 0.0234289115955401 0.0233321551887484 0.0233768215457389 0.0232852674143587 0.00149811010182956 0.00147629757354323 2215602 882275 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0238108629960312 0.164012686786777 0.0238193331807431 0.18295567254139 0.00169582920866831 0.0458372829418296 2251722 9254520 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv new file mode 100644 index 0000000..81c6c41 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 255 216 0.316156211143622 0.343313194437245 0.31607537956817 0.33667505912871 0.00563943156313752 0.0242139289702235 29897946 19371665 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} +2 306 219 0.316436943308081 0.316282288731635 0.316365300984207 0.31635004196231 0.00493191106182275 0.00486594286097362 29924494 11959802 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} +3 359 219 0.315826043132063 0.315717228903444 0.315831235217823 0.315510795757992 0.00433209062086779 0.00416657342072699 29866723 11938435 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} +4 412 219 0.316309055150895 0.315999692703926 0.31621271076524 0.315800717174029 0.00458817300816052 0.00411794164283755 29912400 11949116 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} +5 465 219 0.315988552243988 0.315855670809213 0.315953307392996 0.315800717174029 0.00609035577475635 0.00601621285373469 29882091 11943670 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} +6 518 219 0.316109408350196 0.316236300102384 0.31607537956817 0.31602960250248 0.00670891178588849 0.00736542256124888 29893520 11958063 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} +7 571 219 0.316107060808365 0.316011619599724 0.316044861524376 0.315587090867475 0.0062777904358497 0.00611175422666218 29893298 11949567 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} +8 623 219 0.316254067684601 0.316695419476991 0.31621271076524 0.316670481422141 0.00590466569400949 0.00619390555644201 29907200 11975424 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} +9 676 219 0.316051290828128 0.315928184220029 0.31616693369955 0.315831235217823 0.0044314791604672 0.00421044847558085 29888024 11946412 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.315545776246165 0.341969171286912 0.315648126955062 0.331364919508659 0.00536409856751946 0.0323072984518795 29840219 21805854 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} +11 253 271 0.316708665987677 0.316453073416919 0.316731517509728 0.316517891203174 0.0050750797838547 0.00470610188788211 29950190 11966260 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} +12 306 271 0.317023543253802 0.317191483138582 0.316777294575418 0.317158770122835 0.00483076949361648 0.00411581036793795 29979967 11994182 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} +13 359 271 0.316480119043635 0.316878580630642 0.316548409246967 0.316807812619211 0.00378455324286288 0.00415822704840465 29928577 11982350 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} +14 412 271 0.315988668563629 0.316462408659085 0.315892271305409 0.316472114137484 0.00414526668842702 0.00359381459185212 29882102 11966613 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} +15 465 271 0.316489921616953 0.316655248845689 0.316472114137484 0.316502632181277 0.00480649816523648 0.00479654034576226 29929504 11973905 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} +16 518 271 0.31639643234974 0.317190160866321 0.316578927290761 0.316990920881971 0.00572852049653571 0.00580441425833751 29920663 11994132 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} +17 571 271 0.316910258498723 0.317127908288254 0.316945143816281 0.316746776531624 0.00600437626170843 0.00574330490273726 29969254 11991778 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} +18 623 271 0.317169217741431 0.317121931617632 0.317174029144732 0.316945143816281 0.00524731843456326 0.00492623274366907 29993743 11991552 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} +19 676 272 0.316204589539449 0.315931595682464 0.31616693369955 0.316014343480583 0.00414912915556623 0.00392967282179878 29902521 11946541 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} +20 729 272 0.315803445398318 0.316212234747226 0.316105897611963 0.316426337071794 0.0048076766339792 0.00455859631563143 29864586 11957153 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} +21 253 323 0.317097205309611 0.316424829681416 0.317128252079042 0.31635004196231 0.00579970135605514 0.00657572672336685 29986933 11965192 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} +22 306 323 0.317078594167173 0.317302342444979 0.317021438925765 0.317112993057145 0.00459292158281235 0.00434617758468427 29985173 11998374 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} +23 359 323 0.316965119070864 0.316122346678895 0.316975661860075 0.315815976195926 0.00470896023152746 0.0049806076020341 29974442 11953754 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} +24 412 323 0.3167022155349 0.317076842133518 0.316624704356451 0.317051956969558 0.00427665502855121 0.00408694804402656 29949580 11989847 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} +25 465 323 0.317186961773824 0.317523664376094 0.317158770122835 0.317387655451286 0.00452777779001783 0.004545912560555 29995421 12006743 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} +26 518 324 0.317671189861622 0.317529693937606 0.317601281757839 0.317814908064393 0.00527372967843012 0.00494800009647388 30041213 12006971 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} +27 570 324 0.326284371950705 0.31747280978492 0.31815060654612 0.317662317845426 0.0604895243206656 0.00551521898793059 30470841 12004820 1425 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} +28 623 324 0.318650326295096 0.317350949173309 0.317357137407492 0.317494468604562 0.0121839001062215 0.00535167190740323 30133807 12000212 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} +29 676 324 0.317329707121422 0.317117092101155 0.317219806210422 0.317296101319905 0.00437119179758358 0.00444206948215433 30008920 11991369 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} +30 729 324 0.316435822409729 0.316733844708908 0.316578927290761 0.316670481422141 0.00419638564513997 0.00421545999934274 29924388 11976877 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} +31 253 375 0.316852289019833 0.316439136667284 0.316655222400244 0.316517891203174 0.00682440180653252 0.00727327483297276 29963772 11965733 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} +32 306 375 0.317208956760342 0.317513985343141 0.317067215991455 0.317326619363699 0.00528819107851439 0.00526042972368231 29997501 12006377 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} +33 359 376 0.317068823317393 0.317795920234719 0.316792553597314 0.3177843900206 0.00528123828158004 0.00548872269244643 29984249 12017038 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} +34 412 376 0.317747432098542 0.318697286789879 0.3177843900206 0.318547341115434 0.00448050417787376 0.00452495365242945 30048423 12051122 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} +35 465 376 0.317421113209623 0.317922038563013 0.317448691538872 0.31787594415198 0.00427988502569556 0.00373446479189702 30017564 12021807 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} +36 527 379 0.317793981103663 0.317895936908572 0.317799649042496 0.317998016327153 0.00478249158031947 0.00486907507650559 30052825 12020820 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} +37 570 376 0.323027026785955 0.317662450072652 0.31787594415198 0.317555504692149 0.0412563935389177 0.00555836810692145 30420681 12011991 1437 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} +38 623 376 0.317924872422469 0.317408838252913 0.317982757305257 0.317387655451286 0.00484049772709167 0.00462941286584 30065203 12002401 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} +39 676 376 0.317150278789098 0.317528556783462 0.317204547188525 0.317448691538872 0.00420920801522324 0.00413087008212498 29991952 12006928 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} +40 729 376 0.31678388249686 0.316408618623491 0.316792553597314 0.316594186312657 0.00410042796335484 0.00387007721592507 29957303 11964579 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} +41 253 428 0.317597083676278 0.317274363163928 0.317296101319905 0.317082475013352 0.00668438229766277 0.00660186906232462 30034205 11997316 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} +42 306 428 0.318298427659838 0.317623707495393 0.318318455786984 0.317616540779736 0.00514269255646949 0.00463337276369986 30100529 12010526 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} +43 359 428 0.318484137252734 0.318591161218178 0.318562600137331 0.318608377203021 0.00493171135464979 0.00496503390962345 30118091 12047109 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} +44 412 428 0.31824235101873 0.318637837429006 0.318226901655604 0.318547341115434 0.00529443569989042 0.00564100449367101 30095226 12048874 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} +45 465 428 0.318052982644422 0.318490324735522 0.31805905241474 0.318348973830777 0.00574167193198004 0.00619755580449587 30077318 12043296 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} +46 517 428 0.317933374330719 0.318016237238916 0.317845426108186 0.31805905241474 0.00497970365786874 0.00496834888176091 30066007 12025369 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} +47 570 428 0.317609974007319 0.317975987271278 0.317540245670253 0.318043793392844 0.00547041561435085 0.00558755853962417 30035424 12023847 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} +48 623 428 0.318118565772491 0.317944543636902 0.31796749828336 0.317982757305257 0.0051108045753309 0.00513990703886393 30083520 12022658 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} +49 676 428 0.317655729923984 0.317208064432741 0.317448691538872 0.317082475013352 0.00463503825488038 0.00433133353967415 30039751 11994809 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} +50 729 428 0.316905774905317 0.317121614272289 0.316731517509728 0.317082475013352 0.00419267849077825 0.00436678720594411 29968830 11991540 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} +51 253 480 0.317770262471567 0.317790922045571 0.317692835889219 0.317601281757839 0.00520016226890708 0.00520171344264215 30050582 12016849 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} +52 306 480 0.318206450547947 0.317858728167136 0.318379491874571 0.31787594415198 0.00460957994576299 0.00477701344097768 30091831 12019413 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} +53 359 480 0.318319597834361 0.31862273707978 0.318394750896468 0.318791485465782 0.00428444710408365 0.00423369502536014 30102531 12048303 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} +54 412 480 0.318248177575255 0.318155287389926 0.318135347524224 0.318135347524224 0.00474298628343277 0.00464628968019571 30095777 12030627 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} +55 464 480 0.31783178498674 0.318003252525309 0.317845426108186 0.31805905241474 0.00633382004033524 0.00685804607829282 30056400 12024878 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} +56 517 480 0.317758767976209 0.317412196824457 0.31783016708629 0.317586022735943 0.00600797849445881 0.00636758353665562 30049495 12002528 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} +57 570 480 0.318101879191373 0.318520446097637 0.31801327534905 0.318760967421988 0.00547788520697075 0.00550670478399459 30081942 12044435 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} +58 623 481 0.317912997244652 0.317662529408988 0.31796749828336 0.317616540779736 0.00550105811928027 0.00569124707782912 30064080 12011994 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} +59 676 481 0.317141470219978 0.317421902302856 0.317174029144732 0.317128252079042 0.00505116748720091 0.00483795835453418 29991119 12002895 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.317278864864125 0.317407753989659 0.317341878385595 0.317448691538872 0.0051436953072842 0.00520428143817501 30004112 12002360 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 253 532 0.317711024051148 0.317754638894718 0.317677576867323 0.317479209582666 0.0052430290150251 0.0054070783761927 30044980 12015477 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} +62 306 532 0.317306030787377 0.317704736339572 0.317280842298009 0.317570763714046 0.00403123364594621 0.00417292247317461 30006681 12013590 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} +63 359 532 0.317939084567604 0.318415933698095 0.317998016327153 0.318318455786984 0.00431075406645824 0.00412099227417007 30066547 12040483 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} +64 411 533 0.318214666944353 0.318234068371261 0.318211642633707 0.31796749828336 0.00450064351081551 0.00421145697310095 30092608 12033606 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} +65 464 533 0.317818831208623 0.318201328910068 0.317906462195773 0.318715190356298 0.00613981595642341 0.00572771856289355 30055175 12032368 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} +66 517 533 0.318342195568105 0.31748090209116 0.318135347524224 0.317219806210422 0.00698998472265751 0.00682357578683418 30104668 12005126 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} +67 570 533 0.317764309020889 0.31793568441275 0.317906462195773 0.31787594415198 0.00571851032054439 0.006228892735617 30050019 12022323 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} +68 623 533 0.317882732989165 0.318475250831742 0.317936980239567 0.318471046005951 0.00542494843293983 0.00528796811600832 30061218 12042726 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.317798887677578 0.317814114701036 0.317799649042496 0.317860685130083 0.0052248600151938 0.00501704702213094 30053289 12017726 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.317481853210853 0.317585573163374 0.317494468604562 0.317570763714046 0.00551077506159746 0.00580013715800419 30023308 12009084 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 585 0.317147888949216 0.31745651939066 0.317158770122835 0.317357137407492 0.00535650096683622 0.00543198998147387 29991726 12004204 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} +72 306 585 0.317633502298185 0.317464743924126 0.317586022735943 0.317326619363699 0.00417717319478964 0.00407185067595631 30037649 12004515 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} +73 358 585 0.317882077369374 0.317325905336678 0.31783016708629 0.317143511100938 0.0047916378576126 0.00500301948985424 30061156 11999265 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} +74 411 585 0.31833709865296 0.318639556382945 0.318303196765087 0.318562600137331 0.00516441852652066 0.00459502923018662 30104186 12048939 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} +75 464 585 0.318484613105808 0.318000026180991 0.318303196765087 0.318303196765087 0.00618143739032867 0.00554341624756459 30118136 12024756 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} +76 517 585 0.317836258005633 0.318140821731386 0.31783016708629 0.318379491874571 0.00634009450001827 0.00670969380969532 30056823 12030080 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} +77 570 585 0.318119454031562 0.317367980040036 0.318181124589914 0.317418173495079 0.00532093163507948 0.0051204535030618 30083604 12000856 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} +78 623 585 0.318452688651819 0.318351777047972 0.318303196765087 0.318455786984054 0.00516499373378963 0.00513342254854878 30115117 12038057 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.317925073338211 0.318238326087942 0.317982757305257 0.318165865568017 0.00443652513166843 0.00434963891074487 30065222 12033767 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.317489403412956 0.31770214468594 0.317463950560769 0.317677576867323 0.00548890415296062 0.00532930462866348 30024022 12013492 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 254 636 0.316415572217815 0.34503946654743 0.316456855115587 0.34023041123064 0.00509290010566111 0.0226103475038266 29922473 19469071 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} +82 306 637 0.317372798260873 0.317418596622203 0.317204547188525 0.317601281757839 0.00440287401085315 0.00454265049225204 30012995 12002770 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} +83 358 637 0.317385149291764 0.317580046065321 0.317311360341802 0.317570763714046 0.00509370456433595 0.00515686503988359 30014163 12008875 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} +84 411 637 0.318979436855381 0.316984917765905 0.318089570458534 0.317219806210422 0.00798202717736786 0.00535404584081887 30164930 11986371 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} +85 464 637 0.318846769018433 0.31796689003812 0.31801327534905 0.317677576867323 0.00689529318129692 0.00543629511920592 30152384 12023503 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} +86 517 637 0.318091780531698 0.317997222963797 0.31810482948043 0.31792172121767 0.00490044927716319 0.00434613835491907 30080987 12024650 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} +87 570 637 0.317670904349778 0.318182526198511 0.317586022735943 0.318135347524224 0.00472147885846912 0.00438107646690839 30041186 12031657 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.318251519121283 0.318591822354308 0.318089570458534 0.318699931334401 0.00451109677888811 0.00407491508817359 30096093 12047134 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 638 0.317733790977096 0.317543101778337 0.317814908064393 0.317616540779736 0.00403084897028966 0.00373318432580729 30047133 12007478 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} +90 729 638 0.317400672676479 0.316614020396579 0.317219806210422 0.316609445334554 0.00495485378530497 0.00477942373628537 30015631 11972346 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} +91 255 692 0.316015622996626 0.350958725975572 0.316136415655756 0.343724727244984 0.00603534869584294 0.0368857973531483 29884651 17227060 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} +92 305 689 0.316898838024954 0.317709470074268 0.316823071641108 0.317860685130083 0.00521006079104634 0.00519028525032037 29968174 12013769 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} +93 358 689 0.317092626545591 0.31623072011344 0.317128252079042 0.316090638590066 0.00553611098139138 0.00558722411049374 29986500 11957852 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} +94 411 689 0.320138244834972 0.317280154716433 0.318364232852674 0.317296101319905 0.0110649068336406 0.00550087110621049 30274515 11997535 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} +95 464 689 0.320165632822991 0.318206247762881 0.318760967421988 0.318303196765087 0.00947564709652464 0.00525469737191075 30277105 12032554 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} +96 517 690 0.317879222250932 0.319134006872378 0.317677576867323 0.318226901655604 0.00495245799839377 0.0070451702870915 30060886 12067636 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} +97 570 690 0.318295223582475 0.318818618492586 0.318135347524224 0.318364232852674 0.00425911484153194 0.00468512614535418 30100226 12055710 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} +98 623 690 0.317417613045903 0.317298825200764 0.317387655451286 0.317387655451286 0.00420513918824277 0.00401023663423507 30017233 11998241 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} +99 676 690 0.317521401888534 0.317383397734604 0.317677576867323 0.317402914473182 0.00431576543414673 0.00391559404664825 30027048 12001439 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.316952112420183 0.345652485789482 0.316960402838178 0.34004730296788 0.00460383823492141 0.0203426317073283 29973212 19503661 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv new file mode 100644 index 0000000..b374237 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 255 216 0.0331805897839315 0.0360938073625578 0.0332036316472114 0.0357824063477531 0.00215867168839291 0.00326680396538519 3137789 2036616 1443 861 0 True 253 219 32 {X=0,Y=0,Width=0,Height=0} +2 306 219 0.0331901597179693 0.0334983661342802 0.0332036316472114 0.0334782940413519 0.0019314376564994 0.00183026115719577 3138694 1266697 1443 577 0 False 306 219 26 {X=0,Y=0,Width=0,Height=0} +3 359 219 0.0330288138024462 0.0332637950351057 0.0329900053406577 0.033325703822385 0.00167300642469557 0.00169343788154385 3123436 1257827 1443 577 0 False 359 219 26 {X=0,Y=0,Width=0,Height=0} +4 412 219 0.0331470897275429 0.0332272474298002 0.0331273365377279 0.0331883726253147 0.00179094249585381 0.00149325173506092 3134621 1256445 1443 577 0 False 412 219 26 {X=0,Y=0,Width=0,Height=0} +5 465 219 0.0332759295908758 0.0333262327312895 0.0333104448004883 0.0332036316472114 0.00230531097562792 0.00235439274374149 3146805 1260188 1443 577 0 False 465 219 26 {X=0,Y=0,Width=0,Height=0} +6 518 219 0.0332839450715395 0.03325096899417 0.0332646677347982 0.0332036316472114 0.00250943562349375 0.0026429434000538 3147563 1257342 1443 577 0 False 518 219 26 {X=0,Y=0,Width=0,Height=0} +7 571 219 0.0331969697041796 0.0330774604280275 0.0330357824063478 0.032974746318761 0.00250208691530974 0.00245477900468586 3139338 1250781 1443 577 0 False 571 219 26 {X=0,Y=0,Width=0,Height=0} +8 623 219 0.0331772588124156 0.0334976785527042 0.0331578545815213 0.0334019989318685 0.00236802197810134 0.00227371413569456 3137474 1266671 1443 577 0 False 623 219 26 {X=0,Y=0,Width=0,Height=0} +9 676 219 0.0333427710859618 0.0332188906691081 0.0332646677347982 0.0331883726253147 0.00170363859509647 0.00151179684386989 3153126 1256129 1443 577 0 False 676 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 217 0.0331692962043157 0.0359804756658983 0.0331425955596246 0.0352483405813687 0.00217507044165044 0.00405941638767052 3136721 2294315 1443 973 0 True 729 219 34 {X=0,Y=0,Width=0,Height=0} +11 253 271 0.0332055773575572 0.0332894471169771 0.0331120775158312 0.0332341496910048 0.00203587570337382 0.00193655434407208 3140152 1258797 1443 577 0 False 253 271 26 {X=0,Y=0,Width=0,Height=0} +12 306 271 0.0333218335507189 0.0333064779837041 0.0332951857785916 0.033325703822385 0.0016877261099988 0.00154100986355473 3151146 1259441 1443 577 0 False 306 271 26 {X=0,Y=0,Width=0,Height=0} +13 359 271 0.0333719673156615 0.0333256773769398 0.0334172579537652 0.0333562218661784 0.00163042309344912 0.00154810230378215 3155887 1260167 1443 577 0 False 359 271 26 {X=0,Y=0,Width=0,Height=0} +14 412 271 0.0333274803405268 0.0331332338720138 0.0333714808880751 0.0331578545815213 0.00159399249624002 0.00153988446933434 3151680 1252890 1443 577 0 False 412 271 26 {X=0,Y=0,Width=0,Height=0} +15 465 271 0.033433521554373 0.033236609117411 0.0334172579537652 0.0333562218661784 0.00181862527841127 0.00184178358305008 3161708 1256799 1443 577 0 False 465 271 26 {X=0,Y=0,Width=0,Height=0} +16 518 271 0.0330817815368056 0.0332270094207932 0.0330663004501411 0.0331273365377279 0.00225266255995115 0.00234297140317026 3128445 1256436 1443 577 0 False 518 271 26 {X=0,Y=0,Width=0,Height=0} +17 571 271 0.0332863877839845 0.0330793380546387 0.0331425955596246 0.0330205233844511 0.00235772932145014 0.00226642554306772 3147794 1250852 1443 577 0 False 571 271 26 {X=0,Y=0,Width=0,Height=0} +18 623 271 0.0332309879116929 0.0333328969834871 0.0332341496910048 0.0332799267566949 0.00199864440045525 0.00190503055843481 3142555 1260440 1443 577 0 False 623 271 26 {X=0,Y=0,Width=0,Height=0} +19 676 272 0.0332229724310292 0.0331451343223665 0.0331883726253147 0.0330815594720378 0.00162153367928555 0.00159725483336396 3141797 1253340 1443 577 0 False 676 272 26 {X=0,Y=0,Width=0,Height=0} +20 729 272 0.0332497365227967 0.0332653288709289 0.0332494087129015 0.0332646677347982 0.00185064000675128 0.00180519106589736 3144328 1257885 1443 577 0 False 729 272 26 {X=0,Y=0,Width=0,Height=0} +21 253 323 0.0332493241167995 0.0330706110577133 0.0330815594720378 0.0331120775158312 0.00227590000343453 0.0023473890291465 3144289 1250522 1443 577 0 False 253 323 26 {X=0,Y=0,Width=0,Height=0} +22 306 323 0.0333686046206074 0.0331912816242898 0.0333104448004883 0.0331120775158312 0.00178650232799894 0.00157769116039671 3155569 1255085 1443 577 0 False 306 323 26 {X=0,Y=0,Width=0,Height=0} +23 359 323 0.0333706032035169 0.0334398423639901 0.0333867399099718 0.0334172579537652 0.00182937926060443 0.00198710087803381 3155758 1264484 1443 577 0 False 359 323 26 {X=0,Y=0,Width=0,Height=0} +24 412 323 0.0333297432862551 0.0333944355345332 0.0334019989318685 0.0334172579537652 0.00166109838413361 0.00166574129477716 3151894 1262767 1443 577 0 False 412 323 26 {X=0,Y=0,Width=0,Height=0} +25 465 323 0.033305823738417 0.0334383349736121 0.0332799267566949 0.0334630350194553 0.00177121904100381 0.00176218322527486 3149632 1264427 1443 577 0 False 465 323 26 {X=0,Y=0,Width=0,Height=0} +26 518 324 0.0334402469444813 0.0334478817793395 0.0334172579537652 0.0334477759975586 0.00194333367927892 0.00207250811915274 3162344 1264788 1443 577 0 False 518 324 26 {X=0,Y=0,Width=0,Height=0} +27 570 324 0.0363293201471274 0.0332365562265206 0.0335088120851453 0.0332799267566949 0.0187790479691804 0.00217144674737879 3435555 1256797 1443 577 0 False 570 324 26 {X=0,Y=0,Width=0,Height=0} +28 623 324 0.0334126474662066 0.0334057277396456 0.033173113603418 0.0334172579537652 0.00236684391296569 0.00193524166680428 3159734 1263194 1443 577 0 False 623 324 26 {X=0,Y=0,Width=0,Height=0} +29 676 324 0.0332419113833625 0.0332757748217941 0.0332188906691081 0.0332951857785916 0.0016827675578028 0.00162196998394006 3143588 1258280 1443 577 0 False 676 324 26 {X=0,Y=0,Width=0,Height=0} +30 729 324 0.0332565993815708 0.0331756259207147 0.0332341496910048 0.0331578545815213 0.00165943622468115 0.00155487932928283 3144977 1254493 1443 577 0 False 729 324 26 {X=0,Y=0,Width=0,Height=0} +31 253 375 0.0334110507147815 0.0333677785257431 0.0333104448004883 0.0332188906691081 0.00256802753535974 0.00291894809824103 3159583 1261759 1443 577 0 False 253 375 26 {X=0,Y=0,Width=0,Height=0} +32 306 375 0.0332605859728771 0.0332569192193463 0.0332341496910048 0.0332036316472114 0.00196619929843431 0.00190397860695583 3145354 1257567 1443 577 0 False 306 375 26 {X=0,Y=0,Width=0,Height=0} +33 359 376 0.0334918928647471 0.0332636099169891 0.0334630350194553 0.0331578545815213 0.00194352344668909 0.00194370135807788 3167228 1257820 1443 577 0 False 359 376 26 {X=0,Y=0,Width=0,Height=0} +34 412 376 0.0333380125552247 0.0333821119570568 0.033325703822385 0.033325703822385 0.001706476878235 0.00173407612433303 3152676 1262301 1443 577 0 False 412 376 26 {X=0,Y=0,Width=0,Height=0} +35 465 376 0.0334158409690568 0.0334786907230304 0.0333714808880751 0.0334630350194553 0.00165291395188356 0.00161249826061866 3160036 1265953 1443 577 0 False 465 376 26 {X=0,Y=0,Width=0,Height=0} +36 527 379 0.0333803211807332 0.0332097140996139 0.0333409628442817 0.0332036316472114 0.00191189188558315 0.00191280669923255 3156677 1255782 1443 577 0 True 517 376 26 {X=0,Y=0,Width=0,Height=0} +37 570 376 0.03434715945588 0.0334902473825951 0.0334630350194553 0.0334172579537652 0.00809237043490993 0.00210265418600843 3248108 1266390 1443 577 0 False 570 376 26 {X=0,Y=0,Width=0,Height=0} +38 623 376 0.0333980652131259 0.0335959762726176 0.0333409628442817 0.0337376974135958 0.00186651143371584 0.00184861469440214 3158355 1270388 1443 577 0 False 623 376 26 {X=0,Y=0,Width=0,Height=0} +39 676 376 0.0332559860598313 0.0334255618235668 0.0332494087129015 0.0333867399099718 0.00167443447960264 0.00171713364331603 3144919 1263944 1443 577 0 False 676 376 26 {X=0,Y=0,Width=0,Height=0} +40 729 376 0.0332529300256469 0.0334132118006452 0.0332188906691081 0.0334477759975586 0.0016249836285436 0.00157154515195038 3144630 1263477 1443 577 0 False 729 376 26 {X=0,Y=0,Width=0,Height=0} +41 253 428 0.0332309773371801 0.0333372340365045 0.0330968184939345 0.0333562218661784 0.00242477502266878 0.00258356341644722 3142554 1260604 1443 577 0 False 253 428 26 {X=0,Y=0,Width=0,Height=0} +42 306 428 0.0334011952688996 0.0333817152753784 0.0334172579537652 0.0334477759975586 0.00201113004697139 0.00186244298882632 3158651 1262286 1443 577 0 False 306 428 26 {X=0,Y=0,Width=0,Height=0} +43 359 428 0.0334569123765736 0.0333574383566589 0.0335088120851453 0.0333562218661784 0.00189107703840059 0.00191325135922247 3163920 1261368 1443 577 0 False 359 428 26 {X=0,Y=0,Width=0,Height=0} +44 412 428 0.0333217066565659 0.0331167848050819 0.033325703822385 0.0330205233844511 0.00188440179043622 0.0020521371783585 3151134 1252268 1443 577 0 False 412 428 26 {X=0,Y=0,Width=0,Height=0} +45 465 428 0.0335504227928124 0.0333323416291373 0.0335545891508354 0.0332188906691081 0.00211150020599901 0.00221163574916149 3172763 1260419 1443 577 0 False 465 428 26 {X=0,Y=0,Width=0,Height=0} +46 517 428 0.033448516213451 0.0335656169014956 0.0334172579537652 0.0336003662165255 0.00196922886087676 0.00197275497069194 3163126 1269240 1443 577 0 False 517 428 26 {X=0,Y=0,Width=0,Height=0} +47 570 428 0.0334832957858822 0.0334555774039009 0.0333714808880751 0.0333867399099718 0.00213842121370485 0.0022147829583709 3166415 1265079 1443 577 0 False 570 428 26 {X=0,Y=0,Width=0,Height=0} +48 623 428 0.0333881463201674 0.0333126662178875 0.0333714808880751 0.0333867399099718 0.00207374822523872 0.00211948305367552 3157417 1259675 1443 577 0 False 623 428 26 {X=0,Y=0,Width=0,Height=0} +49 676 428 0.0332991089228214 0.0333183784340568 0.0333104448004883 0.033325703822385 0.00169310362320744 0.0015176580326984 3148997 1259891 1443 577 0 False 676 428 26 {X=0,Y=0,Width=0,Height=0} +50 729 428 0.0332153693563627 0.0334156447816062 0.0332188906691081 0.0334172579537652 0.00162825873253432 0.00163129205044928 3141078 1263569 1443 577 0 False 729 428 26 {X=0,Y=0,Width=0,Height=0} +51 253 480 0.0333383192160944 0.0334468504069756 0.0333562218661784 0.0333867399099718 0.00194456488642632 0.00194038129537073 3152705 1264749 1443 577 0 False 253 480 26 {X=0,Y=0,Width=0,Height=0} +52 306 480 0.0334089358122318 0.0335342526034549 0.0334172579537652 0.0335393301289387 0.00171775509604467 0.00190155795961738 3159383 1268054 1443 577 0 False 306 480 26 {X=0,Y=0,Width=0,Height=0} +53 359 480 0.0334368842494272 0.0336921319114675 0.0334019989318685 0.0336156252384222 0.00156870067240088 0.00150741777292242 3162026 1274024 1443 577 0 False 359 480 26 {X=0,Y=0,Width=0,Height=0} +54 412 480 0.033364829519556 0.0335153705555619 0.0333409628442817 0.0335088120851453 0.0018065032592822 0.00184429683145803 3155212 1267340 1443 577 0 False 412 480 26 {X=0,Y=0,Width=0,Height=0} +55 464 480 0.0335094042578593 0.033433574793471 0.0334782940413519 0.0333867399099718 0.00239298233607892 0.0029043833409393 3168884 1264247 1443 577 0 False 464 480 26 {X=0,Y=0,Width=0,Height=0} +56 517 480 0.0334182308089381 0.033461263174625 0.0333714808880751 0.0332341496910048 0.00236350874664092 0.00250147278620189 3160262 1265294 1443 577 0 False 517 480 26 {X=0,Y=0,Width=0,Height=0} +57 570 480 0.0334294503669647 0.0335719902537956 0.0334172579537652 0.0335698481727321 0.00213777784553901 0.00194929301075441 3161323 1269481 1443 577 0 False 570 480 26 {X=0,Y=0,Width=0,Height=0} +58 623 481 0.0332135293911444 0.0335908458562434 0.0331578545815213 0.0335088120851453 0.00221938359085485 0.00228031446513608 3140904 1270194 1443 577 0 False 623 481 26 {X=0,Y=0,Width=0,Height=0} +59 676 481 0.0332869693821857 0.0334493891697175 0.0332036316472114 0.0333409628442817 0.00193166593936154 0.00175599043694208 3147849 1264845 1443 577 0 False 676 481 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0333140507093357 0.0332276176660334 0.0332646677347982 0.033325703822385 0.00193631367993084 0.0020738931218222 3150410 1256459 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 253 532 0.0333099160748508 0.0333386356451016 0.0332494087129015 0.0332951857785916 0.00194818077241555 0.00207443721517914 3150019 1260657 1443 577 0 False 253 532 26 {X=0,Y=0,Width=0,Height=0} +62 306 532 0.0333868350805865 0.0333779335767108 0.0334019989318685 0.0334019989318685 0.00156645857886556 0.00156253020797144 3157293 1262143 1443 577 0 False 306 532 26 {X=0,Y=0,Width=0,Height=0} +63 359 532 0.0334100038380194 0.0334919134456445 0.0334325169756619 0.0334935530632486 0.00160891700090982 0.00158629243680334 3159484 1266453 1443 577 0 False 359 532 26 {X=0,Y=0,Width=0,Height=0} +64 411 533 0.0333696197738313 0.0334988157068491 0.0333409628442817 0.0334172579537652 0.00172438848185074 0.00174937064619662 3155665 1266714 1443 577 0 False 411 533 26 {X=0,Y=0,Width=0,Height=0} +65 464 533 0.0332201384616125 0.0335661193649549 0.033173113603418 0.0335545891508354 0.00231403411469267 0.00212426094840151 3141529 1269259 1443 577 0 False 464 533 26 {X=0,Y=0,Width=0,Height=0} +66 517 533 0.0334941452359626 0.0334196909347262 0.0334172579537652 0.0335088120851453 0.00259495546419079 0.00270884563533779 3167441 1263722 1443 577 0 False 517 533 26 {X=0,Y=0,Width=0,Height=0} +67 570 533 0.0333765883777328 0.0331696228046479 0.0333867399099718 0.0331273365377279 0.00215711212994891 0.00234182717993369 3156324 1254266 1443 577 0 False 570 533 26 {X=0,Y=0,Width=0,Height=0} +68 623 533 0.0333331482793602 0.0333962602702539 0.0333714808880751 0.0334325169756619 0.00221532148535278 0.00202360404740472 3152216 1262836 1443 577 0 False 623 533 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0333723902961715 0.0332281994658284 0.0333867399099718 0.0331578545815213 0.00200621396351122 0.00194716681082862 3155927 1256481 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.0333940786218195 0.0334352673019656 0.0334019989318685 0.0335545891508354 0.0021147877418272 0.00230306320396935 3157978 1264311 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 585 0.0333476670853645 0.0332871728086874 0.0333409628442817 0.0332036316472114 0.00204880188702694 0.00210621158706091 3153589 1258711 1443 577 0 False 253 585 26 {X=0,Y=0,Width=0,Height=0} +72 306 585 0.0334820479933778 0.0333197271517634 0.033524071107042 0.0334019989318685 0.00162693204216793 0.00146972448666292 3166297 1259942 1443 577 0 False 306 585 26 {X=0,Y=0,Width=0,Height=0} +73 358 585 0.0334608355208035 0.0334483313519083 0.0334630350194553 0.0334172579537652 0.00179610432272713 0.0019444086609903 3164291 1264805 1443 577 0 False 358 585 26 {X=0,Y=0,Width=0,Height=0} +74 411 585 0.0334530844029585 0.0332514979030745 0.0333562218661784 0.0332799267566949 0.00183480808776505 0.00175424785419652 3163558 1257362 1443 577 0 False 411 585 26 {X=0,Y=0,Width=0,Height=0} +75 464 585 0.0335551707490366 0.0334355846473083 0.0335393301289387 0.0333409628442817 0.00224775562770058 0.0022525357662325 3173212 1264323 1443 577 0 False 464 585 26 {X=0,Y=0,Width=0,Height=0} +76 517 585 0.0334400566032518 0.0333658744536867 0.033325703822385 0.0332188906691081 0.00243918608021574 0.002505431685706 3162326 1261687 1443 577 0 False 517 585 26 {X=0,Y=0,Width=0,Height=0} +77 570 585 0.0334368419513762 0.0334992652794179 0.0334325169756619 0.0336461432822156 0.00197173036508189 0.00202761780186473 3162022 1266731 1443 577 0 False 570 585 26 {X=0,Y=0,Width=0,Height=0} +78 623 585 0.0335411806686698 0.0335416308826736 0.0335088120851453 0.0335545891508354 0.0020350337933417 0.00203439424624663 3171889 1268333 1443 577 0 False 623 585 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0333702648191089 0.0334197438256166 0.0333409628442817 0.0333714808880751 0.00175143784801031 0.00170470489160176 3155726 1263724 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0333006633761955 0.0332514714576293 0.0332646677347982 0.0331578545815213 0.00216816771598055 0.00211369006018199 3149144 1257361 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 254 636 0.0330089231439655 0.0362036333308433 0.0329900053406577 0.0360265506981002 0.00191685383408559 0.00309604806287365 3121555 2042813 1443 861 0 True 253 637 32 {X=0,Y=0,Width=0,Height=0} +82 306 637 0.0333462923987071 0.0333655042174535 0.0333714808880751 0.0333867399099718 0.00165673828424508 0.00165646248788116 3153459 1261673 1443 577 0 False 306 637 26 {X=0,Y=0,Width=0,Height=0} +83 358 637 0.0334244803459727 0.0333512236770302 0.0334019989318685 0.0333409628442817 0.00190189313060787 0.00201453436055157 3160853 1261133 1443 577 0 False 358 637 26 {X=0,Y=0,Width=0,Height=0} +84 411 637 0.0335224214830532 0.0334054368397481 0.0334325169756619 0.0333104448004883 0.00206103978143823 0.00183173711370355 3170115 1263183 1443 577 0 False 411 637 26 {X=0,Y=0,Width=0,Height=0} +85 464 637 0.0336741234429493 0.0334382556372764 0.0336919203479057 0.0334172579537652 0.00213196503963079 0.00195419864269987 3184461 1264424 1443 577 0 False 464 637 26 {X=0,Y=0,Width=0,Height=0} +86 517 637 0.0333325561066463 0.0335725191627002 0.0333104448004883 0.0335393301289387 0.00175887885534953 0.00171836088386064 3152160 1269501 1443 577 0 False 517 637 26 {X=0,Y=0,Width=0,Height=0} +87 570 637 0.033330546949224 0.0334151158727017 0.0332951857785916 0.0333562218661784 0.00169375846273176 0.00171884343867002 3151970 1263549 1443 577 0 False 570 637 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.0335130524647577 0.0334463743889615 0.0335545891508354 0.0334630350194553 0.00170130871151183 0.00154089871577413 3169229 1264731 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 638 0.0333094296472644 0.0334323054121 0.0333104448004883 0.0333867399099718 0.0015224378329931 0.00156658975217151 3149973 1264199 1443 577 0 False 676 638 26 {X=0,Y=0,Width=0,Height=0} +90 729 638 0.0332674171081129 0.0333971858608369 0.0332341496910048 0.0333409628442817 0.00192392361383081 0.00191648976243544 3146000 1262871 1443 577 0 False 729 638 26 {X=0,Y=0,Width=0,Height=0} +91 255 692 0.0330838647158171 0.0371101653505506 0.0330357824063478 0.0365606164644846 0.0023031220834307 0.00467534395647309 3128642 1821579 1443 749 0 True 253 689 31 {X=0,Y=0,Width=0,Height=0} +92 305 689 0.0332101032490138 0.0333325796381443 0.0332494087129015 0.0333104448004883 0.00191250732195682 0.00196424844625776 3140580 1260428 1443 577 0 False 305 689 26 {X=0,Y=0,Width=0,Height=0} +93 358 689 0.0331818058528976 0.0332132577892745 0.0331273365377279 0.0332188906691081 0.00218645797751311 0.00210335920807025 3137904 1255916 1443 577 0 False 358 689 26 {X=0,Y=0,Width=0,Height=0} +94 411 689 0.0336707607478951 0.033259087745855 0.0336156252384222 0.0332036316472114 0.00231341740907953 0.00208081905658446 3184143 1257649 1443 577 0 False 411 689 26 {X=0,Y=0,Width=0,Height=0} +95 464 689 0.0336342681043986 0.033442037335944 0.033524071107042 0.0334477759975586 0.00219519216397275 0.00208733801050547 3180692 1264567 1443 577 0 False 464 689 26 {X=0,Y=0,Width=0,Height=0} +96 517 690 0.0332942023489059 0.0334012055685116 0.0332341496910048 0.0333562218661784 0.00175034971479486 0.00173776230118962 3148533 1263023 1443 577 0 False 517 690 26 {X=0,Y=0,Width=0,Height=0} +97 570 690 0.0333858093528499 0.0333753419230784 0.0333867399099718 0.033325703822385 0.00158229418355421 0.00161179445310458 3157196 1262045 1443 577 0 False 570 690 26 {X=0,Y=0,Width=0,Height=0} +98 623 690 0.0332239029881511 0.0332922767796165 0.033173113603418 0.0332646677347982 0.00155029009553197 0.0016363388006109 3141885 1258904 1443 577 0 False 623 690 26 {X=0,Y=0,Width=0,Height=0} +99 676 690 0.0333586011315469 0.033077063746349 0.0333714808880751 0.032974746318761 0.00164800177594748 0.00151545883581374 3154623 1250766 1443 577 0 False 676 690 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0331180415410216 0.0361612412514277 0.0331883726253147 0.0359502555886168 0.00182374939172726 0.00274502832110671 3131874 2040421 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv new file mode 100644 index 0000000..a0cf875 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 101 231 0.234664999009066 0.93314281709014 0.234027618829633 1 0.00683675541320027 0.174823444123989 20792098 52653176 1352 861 79 True 99 231 32 {X=0,Y=0,Width=0,Height=0} +2 152 231 0.231932279738502 0.230663784642046 0.231464103150988 0.230685893034257 0.0059479041243466 0.00586076101251957 20549970 8722250 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} +3 205 231 0.231012867237932 0.231197771072094 0.231006332494087 0.231113145647364 0.00555845154838659 0.00493473836206077 20468507 8742442 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} +4 259 231 0.231412355654393 0.231565627215219 0.231403067063401 0.231555657282368 0.00457085734518175 0.00420625196169277 20503903 8756352 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} +5 312 231 0.232111426524424 0.231796813297405 0.232089723048753 0.231876096742199 0.00395442101390926 0.00426388554720669 20565843 8765094 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} +6 366 232 0.232553294842676 0.231795147234355 0.23270008392462 0.231876096742199 0.00355163767487927 0.00364152971277152 20604994 8765031 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} +7 419 232 0.232705839916608 0.232096281519169 0.232715342946517 0.232196536202029 0.00408060685510246 0.00388775919190104 20618510 8776418 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} +8 472 232 0.232709880397258 0.233186362771477 0.232669565880827 0.233066300450141 0.0055434698691338 0.00632349984842531 20618868 8817638 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} +9 526 232 0.234024503822204 0.233845991511805 0.23404287785153 0.234073395895323 0.00583720164148633 0.00578363460710039 20735348 8842581 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} +10 577 231 0.236973727395317 0.927443262269002 0.236972610055695 1 0.00552724710426998 0.190781858309876 20996659 52331575 1352 861 80 True 579 232 32 {X=0,Y=0,Width=0,Height=0} +11 98 283 0.230355070216331 0.230073733868113 0.230289158464942 0.229953459983215 0.00386520463201129 0.00366779864977095 20410224 8699938 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} +12 152 284 0.231208920839535 0.230128211485283 0.231204699778744 0.229953459983215 0.00432180630959584 0.00424662425071997 20485878 8701998 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} +13 205 284 0.231441801503601 0.231138030811324 0.231509880216678 0.231219958800641 0.00493484949876092 0.00507952191376603 20506512 8740183 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} +14 259 284 0.23235134981398 0.231609024190839 0.2323338673991 0.231525139238575 0.00425882534500419 0.00470408241186258 20587101 8757993 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} +15 312 284 0.232209695979789 0.232688950392179 0.232135500114443 0.232486457618067 0.00342357815503228 0.00346735723794332 20574550 8798829 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} +16 365 284 0.232736448250472 0.232698232743454 0.232806897077897 0.232883192187381 0.00359027339442626 0.00387563213137598 20621222 8799180 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} +17 419 285 0.233388839154108 0.233338688535992 0.233386739909972 0.233493553063249 0.0037342259053789 0.00354865863239039 20679026 8823398 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} +18 472 285 0.233730857940763 0.234218422716955 0.233783474479286 0.233844510566873 0.0049383362768815 0.00487444163288805 20709330 8856664 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} +19 526 285 0.233535323507065 0.233360030010291 0.233417257953765 0.233295185778592 0.00536653254399803 0.00520460162709014 20692005 8824205 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} +20 579 285 0.234194418448428 0.234232227239364 0.23422598611429 0.234149691004807 0.00474127970458844 0.00456006269769338 20750403 8857186 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} +21 98 336 0.230333332881883 0.230271096225852 0.230548561837186 0.230258640421149 0.00454193660716111 0.00463275022045729 20408298 8707401 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} +22 152 336 0.231688519120954 0.231067209909003 0.231769283588922 0.231067368581674 0.00436508296710693 0.00429620427618218 20528372 8737505 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} +23 205 337 0.231626467270075 0.231914971546684 0.231479362172885 0.231815060654612 0.00481808160893363 0.00451244013002306 20522874 8769562 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} +24 258 337 0.232704158264047 0.232660389311333 0.232684824902724 0.232547493705653 0.00473562619007389 0.00445445797405781 20618361 8797749 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} +25 312 337 0.233295750091532 0.23341257710996 0.233264667734798 0.233417257953765 0.00369056684893778 0.00353175800803304 20670778 8826192 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} +26 365 337 0.233718172185873 0.233885157216188 0.233707179369802 0.233936064698253 0.00407772594738716 0.00421541865454201 20708206 8844062 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} +27 419 337 0.234193808990453 0.234116369743819 0.23422598611429 0.234058136873426 0.00390874269022534 0.00382921343807284 20750349 8852805 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} +28 472 338 0.234494937661478 0.234643374576327 0.234561684596017 0.234729533836881 0.00470839315940646 0.00483912725280542 20777030 8872733 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} +29 525 338 0.234752636808643 0.234403355715436 0.234790569924468 0.234561684596017 0.00434135556041 0.00445784862206752 20799863 8863657 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} +30 579 338 0.23443738902786 0.235108735076009 0.234378576333257 0.234500648508431 0.00427539321494401 0.00639588944888605 20771931 8890330 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} +31 98 389 0.230622272393405 0.231093152890771 0.23067063401236 0.23099107347219 0.00465282173025356 0.0043296468718016 20433899 8738486 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} +32 151 389 0.231866288983302 0.231089027401316 0.231769283588922 0.23080796520943 0.0045106953442147 0.00473538158299041 20544123 8738330 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} +33 205 389 0.232280630116343 0.232100063217837 0.232257572289616 0.232074464026856 0.00479632458563092 0.00513837641715689 20580835 8776561 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} +34 258 390 0.233062101961868 0.233316871043679 0.233218890669108 0.233325703822385 0.00499896526737166 0.00532437117373088 20650076 8822573 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} +35 312 390 0.233848923494063 0.233510980611654 0.233798733501183 0.233371480888075 0.00415028864050133 0.00385127773638925 20719791 8829913 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} +36 365 390 0.234787770932286 0.234794378068581 0.234805828946365 0.234836346990158 0.00430332289058637 0.0042080190887271 20802976 8878443 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} +37 418 390 0.235477485493772 0.235374115118874 0.235431448844129 0.235202563515679 0.00434935896009846 0.00413179021977591 20864087 8900365 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} +38 472 390 0.235302277612171 0.235139200228912 0.235278858625162 0.235019455252918 0.00474935489811038 0.00411140776273665 20848563 8891482 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} +39 525 391 0.235712770130961 0.234474414626764 0.235614557106889 0.234287022201877 0.00500157784891816 0.0038095681384259 20884934 8866344 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} +40 579 391 0.23464428872417 0.235390035276902 0.234470130464637 0.234943160143435 0.00426274716420167 0.00527992407812001 20790263 8900967 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} +41 98 442 0.231228683078693 0.231376515836392 0.231189440756847 0.230914778362707 0.00524146598872679 0.00530831795373523 20487629 8749201 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} +42 151 442 0.232141741415559 0.232323791684468 0.232089723048753 0.232211795223926 0.00537565609985599 0.00496091347908531 20568529 8785021 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} +43 205 442 0.232720117033989 0.232729359032488 0.232578011749447 0.233020523384451 0.00585429035242303 0.00605235854959718 20619775 8800357 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} +44 258 442 0.233654066235893 0.233437911846488 0.233600366216526 0.233676661326009 0.00574639846525192 0.00628396294266762 20702526 8827150 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} +45 311 443 0.234883579983233 0.234857635573567 0.234897383077745 0.234744792858778 0.00461697400808271 0.00447727633278745 20811465 8880835 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} +46 365 443 0.236360195080726 0.235878429759377 0.236255436026551 0.235965514610513 0.00444667115240614 0.00519775048932992 20942298 8919435 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} +47 418 443 0.236928334062426 0.236996516738182 0.236621652552071 0.236545357442588 0.00560284986072215 0.00495876404436877 20992637 8961714 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} +48 472 443 0.238593937563513 0.235865656609332 0.23746089875639 0.235812924391546 0.00880727578879933 0.00541561261024736 21140215 8918952 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} +49 525 443 0.235984193368826 0.23542928031762 0.236057068741894 0.235400930800336 0.00484260058227679 0.00499093612332391 20908983 8902451 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} +50 578 444 0.234970777618717 0.235990188210911 0.234775310902571 0.236057068741894 0.00466686124022132 0.00458024429131524 20819191 8923661 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} +51 98 494 0.231518311052001 0.231727023767447 0.231464103150988 0.231754024567025 0.00513084228250775 0.00541342146611943 20513291 8762455 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} +52 151 495 0.232418266042401 0.233034407243196 0.232440680552377 0.233310444800488 0.00524560501573758 0.00543163610508427 20593030 8811892 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} +53 204 495 0.233055510786729 0.233091582295779 0.232806897077897 0.233188372625315 0.00600781004005419 0.00629627607474393 20649492 8814054 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} +54 258 495 0.233706028171405 0.234089580507803 0.233783474479286 0.234332799267567 0.00507905978094534 0.00514201053155785 20707130 8851792 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} +55 311 495 0.236257580415723 0.236188053032109 0.236377508201724 0.236240177004654 0.0041428704065595 0.00400971886102667 20933206 8931143 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} +56 365 496 0.237720448849998 0.237823994719373 0.237659266041047 0.237949187457084 0.00407402461117207 0.00413290324850259 21062821 8993004 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} +57 418 496 0.238199697257394 0.23817815212187 0.238071259632258 0.238178072785534 0.00496097795112 0.00489368534441567 21105284 9006396 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} +58 471 496 0.237644165026773 0.238107119655987 0.237720302128634 0.238330663004501 0.00585960727556351 0.00626438021203104 21056062 9003710 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} +59 525 496 0.236683252952598 0.236932333642613 0.236575875486381 0.236926832990005 0.00523630792433542 0.00501097307764624 20970922 8959287 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} +60 578 496 0.235780261958581 0.235971782181033 0.235782406347753 0.23575188830396 0.00495338129035766 0.00489930712857276 20890914 8922965 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} +61 97 547 0.23209397796832 0.231593791614387 0.23224231326772 0.231647211413748 0.00402263523936934 0.00364124812045122 20564297 8757417 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} +62 151 547 0.232735793647462 0.232577958858556 0.23270008392462 0.232364385442893 0.00451242743820488 0.00408183896142873 20621164 8794632 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} +63 204 548 0.233793191948112 0.233080316536112 0.233920805676356 0.232898451209277 0.00530913402110193 0.00572034614293115 20714853 8813628 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} +64 258 548 0.234562926084485 0.234437391003445 0.234805828946365 0.234515907530327 0.00445270103113874 0.00433258873867417 20783054 8864944 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} +65 311 548 0.238918191778818 0.237368075243639 0.237186236362249 0.237476157778286 0.01882199969403 0.00385059816918359 21168945 8975764 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} +66 364 548 0.24211021663748 0.24019297770292 0.240451667048142 0.240131227588312 0.00799854265877026 0.00387017448401757 21451769 9082584 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} +67 418 549 0.276775309064135 0.260550152530717 0.245334554055085 0.25113298237583 0.0928722999789412 0.0325530881305669 22582395 9852364 1245 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} +68 471 549 0.24051560370424 0.239276405016754 0.240177004654002 0.239581902800031 0.00680898458078115 0.0058309154474618 21310481 9047925 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} +69 525 549 0.237425595338865 0.237395737179347 0.237338826581216 0.237430380712596 0.00523828972190922 0.0054613205073582 21036696 8976810 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} +70 578 549 0.235852200572168 0.235687255635822 0.23588921950103 0.235461966887922 0.00442438802681205 0.00412038751407796 20897288 8912206 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} +71 97 600 0.232994508557919 0.232506847056338 0.232776379034104 0.232349126420996 0.00478172642525121 0.00415794490607954 20644087 8791943 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} +72 151 600 0.233010647908002 0.233347891550931 0.233020523384451 0.233432516975662 0.00435539107239267 0.00490761826368179 20645517 8823746 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} +73 204 600 0.233420824411546 0.233732540551776 0.233401998931868 0.233615625238422 0.00459939856804687 0.00505856418938939 20681860 8838291 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} +74 257 601 0.234486608402484 0.234082678246598 0.234653238727398 0.233905546654459 0.00457514257930402 0.00431037398672323 20776292 8851531 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} +75 311 601 0.236868437886978 0.236842577801508 0.236713206683452 0.236758983749142 0.00374106997705449 0.00339549342105079 20987330 8955893 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} +76 364 601 0.245144324163022 0.240615602363112 0.240512703135729 0.240863660639353 0.0133945001342796 0.00428054065285955 21720601 9098565 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} +77 418 601 0.290390299775997 0.392502028696217 0.247699702449073 0.272968642710002 0.10476254517849 0.252144714426315 23674226 14841952 1244 577 10 False 418 601 27 {X=0,Y=0,Width=0,Height=0} +78 471 601 0.240664322736439 0.239251493407349 0.240802624551766 0.239200427252613 0.00576492038309854 0.00506051852733927 21323658 9046983 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} +79 524 602 0.237545444121055 0.237213528061725 0.237430380712596 0.237323567559319 0.0051335541549828 0.00520547838650922 21047315 8969920 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} +80 578 602 0.235172327628355 0.23489280801572 0.235202563515679 0.235004196231022 0.00414795675345652 0.00414982919016687 20837049 8882165 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} +81 99 654 0.237603365201214 0.94363384656637 0.237384603646906 1 0.00574476531510802 0.145307685869953 21052447 53245139 1352 861 79 True 97 653 32 {X=0,Y=0,Width=0,Height=0} +82 150 653 0.23459352313209 0.234231037194329 0.234485389486534 0.234149691004807 0.00472085633083679 0.00401993069721232 20785765 8857141 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} +83 204 653 0.233166274130586 0.233377748458594 0.233203631647211 0.233356221866178 0.00499417118060241 0.00461827202056758 20659306 8824875 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} +84 257 653 0.234253027990373 0.233843373412728 0.234439612420844 0.233798733501183 0.00431317067829282 0.00468772786017697 20755596 8842482 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} +85 311 654 0.235705975803164 0.235724094141025 0.235523002975509 0.235553521019303 0.00453286783567333 0.00347302316210146 20884332 8913599 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} +86 364 654 0.236731851582988 0.236901947826046 0.236697947661555 0.236881055924315 0.00395231168041768 0.0040178423242229 20975228 8958138 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} +87 417 654 0.240496417064282 0.238492905810977 0.238605325398642 0.238651102464332 0.00861831979425966 0.00411879165015045 21308781 9018298 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} +88 471 654 0.238476695907106 0.237863662887216 0.237933928435187 0.23768978408484 0.00592711516367966 0.00506526023637782 21129827 8994504 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} +89 524 654 0.236051290177388 0.236468480533309 0.236087586785687 0.236667429617761 0.00417305353620919 0.00401587114659126 20914928 8941747 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} +90 577 655 0.235264096198653 0.234886804899653 0.235095750362402 0.234943160143435 0.0042687365919544 0.00364615117108091 20845180 8881938 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} +91 99 709 0.237940553469103 0.939792560597679 0.23759822995346 1 0.00769752411018085 0.157059061171633 21082323 53028392 1352 861 79 True 97 706 32 {X=0,Y=0,Width=0,Height=0} +92 150 706 0.23476131594166 0.233045963902761 0.234287022201877 0.232898451209277 0.007365299425192 0.00441026676108066 20800632 8812329 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} +93 204 706 0.233417145091177 0.232562858509331 0.233401998931868 0.23237964446479 0.00542585178310966 0.00545640438471024 20681534 8794061 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} +94 257 706 0.233251237086827 0.232963030986525 0.233188372625315 0.232730601968414 0.00470710405755658 0.00488735056455581 20666834 8809193 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} +95 310 706 0.233940071320127 0.234469548664842 0.233905546654459 0.234348058289464 0.00392853865404545 0.00398689893169775 20727867 8866160 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} +96 364 707 0.235335165770312 0.235012552991714 0.234988937209125 0.234958419165332 0.00533437602279696 0.00444141189148208 20851477 8886693 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} +97 417 707 0.235635346395598 0.235669431405738 0.235812924391546 0.235538261997406 0.00431753942061539 0.00426867199553324 20878074 8911532 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} +98 471 707 0.235409135910483 0.235294249874285 0.235263599603265 0.235187304493782 0.00469487894447249 0.00440179205107986 20858031 8897345 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} +99 524 707 0.23571588513839 0.234508529251109 0.235675593194476 0.234348058289464 0.00435706880919049 0.00478193966578519 20885210 8867634 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} +100 578 708 0.238185216987354 0.924281915480437 0.237964446478981 1 0.00527863893822685 0.185404964972635 21104001 52153194 1352 861 79 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv new file mode 100644 index 0000000..6946c4b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 101 231 0.0234818063250903 0.144723723534525 0.0233615625238422 0.159716182192721 0.00209236932192275 0.038819792378046 2080566 8166128 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} +2 152 231 0.023180023051055 0.0231334441133034 0.0230869001297017 0.0232394903486687 0.00218829010973403 0.00228413297763524 2053827 874761 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} +3 205 231 0.0232589252863211 0.0231286045968266 0.023224231326772 0.0230563820859083 0.00218896461894004 0.00210655058158972 2060818 874578 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} +4 259 231 0.0233359540026265 0.0233135375953077 0.023270008392462 0.0233615625238422 0.00183877840505628 0.00184820407355056 2067643 881571 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} +5 312 231 0.0234157704248554 0.0233179275392156 0.0234531166552224 0.023270008392462 0.00163110748670505 0.00170951775532982 2074715 881737 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} +6 366 232 0.0233656932945628 0.0233810792624207 0.0233615625238422 0.0233768215457389 0.00147527927963149 0.00143138847114871 2070278 884125 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} +7 419 232 0.0234129488601556 0.0233173192939754 0.0234073395895323 0.0232852674143587 0.00167723990025247 0.00155699261634054 2074465 881714 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} +8 472 232 0.0235974791915247 0.0234248464742734 0.0235446707866026 0.0235446707866026 0.00226304029053292 0.00236220663958903 2090815 885780 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} +9 526 232 0.0235860574976197 0.0235270845655258 0.0236362249179828 0.023422598611429 0.00221000823244417 0.00240632848901387 2089803 889646 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} +10 577 231 0.0237624730089121 0.144366439119383 0.0238193331807431 0.160967421988251 0.00194862166902326 0.0399048568880723 2105434 8145968 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} +11 98 283 0.0230209432332784 0.0231022913788245 0.0229953459983215 0.0231174181734951 0.0015497294434509 0.00160705915318953 2039732 873583 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} +12 152 284 0.023271306312224 0.0232710397648259 0.0232852674143587 0.0231631952391852 0.0017398973998672 0.0017595070144931 2061915 879964 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} +13 205 284 0.023264782854638 0.0233614831875065 0.023224231326772 0.023270008392462 0.00189836483587988 0.00210445042436477 2061337 883384 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} +14 259 284 0.0234002856777827 0.0234698830674971 0.0234073395895323 0.0235141527428092 0.00175534409150535 0.00184737408489081 2073343 887483 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} +15 312 284 0.023469391440411 0.0234113328517618 0.0234683756771191 0.0234683756771191 0.00141383021171817 0.00144917114965398 2079466 885269 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} +16 365 284 0.0235530903356669 0.0235513879296906 0.0234988937209125 0.023575188830396 0.00151600604311449 0.0014412640565124 2086882 890565 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} +17 419 285 0.0234387492477709 0.0234529844279963 0.0234073395895323 0.0233920805676356 0.00155244740041732 0.00144959900131291 2076751 886844 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} +18 472 285 0.0235563407782011 0.0235011680292021 0.0235599298084993 0.0234683756771191 0.00199505861798716 0.00179100485910917 2087170 888666 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} +19 526 285 0.0234455097167917 0.0235010622474212 0.0234836346990158 0.0235141527428092 0.00210354280424892 0.00221623826711839 2077350 888662 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} +20 579 285 0.0235379328900994 0.0235566241278457 0.0235294117647059 0.0235141527428092 0.00182769226552774 0.00165043463852554 2085539 890763 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} +21 98 336 0.0231483763813816 0.023149972516571 0.0231174181734951 0.0231479362172885 0.00171650341302635 0.00177183397933766 2051023 875386 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} +22 152 336 0.0232604715037766 0.0231790360608769 0.0232852674143587 0.0232089723048753 0.00182135005658861 0.00171993119514157 2060955 876485 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} +23 205 337 0.0233483688873058 0.0234043512542215 0.0233157854581521 0.023422598611429 0.00188926670486125 0.00181058494763885 2068743 885005 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} +24 258 337 0.0234141903486235 0.0231826590868732 0.0234378576333257 0.023071641107805 0.00185207830501507 0.00197944716296429 2074575 876622 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} +25 312 337 0.0235600426710873 0.0233985597017165 0.0235294117647059 0.0234531166552224 0.00141536879187753 0.00130053958401498 2087498 884786 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} +26 365 337 0.0235315787263954 0.0235304166916246 0.0235141527428092 0.0234836346990158 0.00163648664883758 0.00172174225748813 2084976 889772 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} +27 419 337 0.0235402240006356 0.0236598142551263 0.0235294117647059 0.0235904478522927 0.00159195312837667 0.00147914495928651 2085742 894665 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} +28 472 338 0.0235770849218743 0.023681208620316 0.0234836346990158 0.0236362249179828 0.00179089619753424 0.00189489903616107 2089008 895474 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} +29 525 338 0.0236262930102393 0.023629296211333 0.0236209658960861 0.0236362249179828 0.00181712434203671 0.00180605898613695 2093368 893511 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} +30 579 338 0.0235496705992507 0.023493155059298 0.023575188830396 0.0235446707866026 0.00163075477876043 0.0017792132105719 2086579 888363 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} +31 98 389 0.0231087728992548 0.0232180695380338 0.0231479362172885 0.0231326771953918 0.00190909978495818 0.00192009872543462 2047514 877961 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} +32 151 389 0.023318663454146 0.0232069624510379 0.0233005264362554 0.0231784542610819 0.00177275690824355 0.00179878670545499 2066111 877541 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} +33 205 389 0.0232780442087272 0.0233263371907982 0.0232547493705653 0.0231021591515984 0.00207760672534417 0.00202784088314825 2062512 882055 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} +34 258 390 0.023462698688943 0.0235716980316258 0.0234378576333257 0.0235446707866026 0.0020007736035649 0.00211633945546358 2078873 891333 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} +35 312 390 0.0235066360944488 0.023544723677493 0.0235294117647059 0.0234683756771191 0.00164685988408494 0.00160072713853775 2082766 890313 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} +36 365 390 0.0236482334973452 0.0234565281176568 0.0236209658960861 0.0233920805676356 0.00170100833524948 0.00171685220838772 2095312 886978 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} +37 418 390 0.023659440752333 0.0236695990698608 0.0235904478522927 0.0236820019836728 0.00163515669622935 0.0015483922354578 2096305 895035 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} +38 472 390 0.0237135357907582 0.0235261325294976 0.0237430380712596 0.0234378576333257 0.0017392362174066 0.00160751664083344 2101098 889610 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} +39 525 391 0.023712418451137 0.0235716451407354 0.0237430380712596 0.0235446707866026 0.00177304269216988 0.00161835956506219 2100999 891331 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} +40 579 391 0.0237441666971396 0.0237891853731829 0.0237888151369497 0.023773556115053 0.00156272955400785 0.00149959836920346 2103812 899557 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} +41 98 442 0.023182381879144 0.0233809205897493 0.0231479362172885 0.0234378576333257 0.00214784051474692 0.00229110773817254 2054036 884119 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} +42 151 442 0.0233068128824067 0.0233945135485966 0.0232547493705653 0.0233157854581521 0.00210365748185335 0.00195763189874612 2065061 884633 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} +43 205 442 0.0234916705152809 0.0233231637373708 0.0234531166552224 0.0233768215457389 0.00242517571478881 0.00251819432238598 2081440 881935 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} +44 258 442 0.023499593468958 0.0233842262704028 0.0234836346990158 0.0233157854581521 0.00225952071717133 0.00239595303576581 2082142 884244 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} +45 311 443 0.0236136298278665 0.0235570208095242 0.0236514839398795 0.0234531166552224 0.00173490069164037 0.00177434588808816 2092246 890778 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} +46 365 443 0.0237665360620798 0.0238810304044606 0.0237430380712596 0.0238803692683299 0.0018349729991343 0.00193609862682931 2105794 903030 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} +47 418 443 0.0237548999292577 0.0237637713003186 0.0236820019836728 0.0235904478522927 0.0019520522291316 0.00200417307950846 2104763 898596 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} +48 472 443 0.024071028038227 0.0237471106698248 0.0239871824216068 0.0235599298084993 0.00213742434631715 0.00212411812477678 2132773 897966 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} +49 525 443 0.0236698918279812 0.0235761673118694 0.0236057068741894 0.0235446707866026 0.00193033922441564 0.00194039062782807 2097231 891502 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} +50 578 444 0.02381720007783 0.0238675432273942 0.0238040741588464 0.0238345922026398 0.00189541591616183 0.00174880182657472 2110283 902520 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} +51 98 494 0.0232821411206713 0.0232745570090413 0.0232852674143587 0.0232394903486687 0.00215537734312897 0.00211040659464772 2062875 880097 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} +52 151 495 0.0234132535891432 0.0233567494528107 0.0234531166552224 0.0230869001297017 0.00227649725413423 0.00230279014453536 2074492 883205 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} +53 204 495 0.0233373534987177 0.0233269983269289 0.0232394903486687 0.0233463035019455 0.00229636407575243 0.00240711836266767 2067767 882080 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} +54 258 495 0.0236302770595955 0.02354147088773 0.0236514839398795 0.0234836346990158 0.00192527224586203 0.00184187796984428 2093721 890190 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} +55 311 495 0.023845325434758 0.0237224106239816 0.0238803692683299 0.0236820019836728 0.00158045933101503 0.00145482672418586 2112775 897032 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} +56 365 496 0.0239354687837882 0.0239743034897806 0.0238498512245365 0.0239108873121233 0.00166136883315505 0.00161060866743295 2120762 906557 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} +57 418 496 0.0240623263326927 0.0240514977444019 0.0240177004654002 0.0240482185091936 0.00191071961887693 0.00174169119556929 2132002 909476 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} +58 471 496 0.0239888866466855 0.0239694639733039 0.0240177004654002 0.0239414053559167 0.00225979329536261 0.0026088166063569 2125495 906374 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} +59 525 496 0.0238408335037558 0.0237669711991912 0.0238193331807431 0.0236820019836728 0.00199504530735327 0.00197743937599774 2112377 898717 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} +60 578 496 0.0236821374187784 0.0238112937653937 0.0236362249179828 0.0236667429617761 0.00194458046421928 0.00186178424506827 2098316 900393 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} +61 97 547 0.0232382150014243 0.0230968700625527 0.023270008392462 0.0230411230640116 0.00157743978761205 0.00152771483104557 2058983 873378 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} +62 151 547 0.0233334935982083 0.0234336263620892 0.0233768215457389 0.0233310444800488 0.00182463520148793 0.0018421231127094 2067425 886112 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} +63 204 548 0.0234000373800891 0.0232687919019815 0.023422598611429 0.0234836346990158 0.00206055448120461 0.00220960136151158 2073321 879879 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} +64 258 548 0.0235811141162656 0.023514708097159 0.0236667429617761 0.0234988937209125 0.00177593901411942 0.00177218439318993 2089365 889178 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} +65 311 548 0.0240036603594538 0.0237983619426771 0.0238651102464332 0.0237430380712596 0.00236642810513743 0.00157308025754848 2126804 899904 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} +66 364 548 0.0244219178242982 0.0240320338967139 0.0243228809033341 0.0241092545967803 0.00170740139677951 0.0014614480178639 2163863 908740 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} +67 418 549 0.0436009246039597 0.0265261831725252 0.0253757534142061 0.0259403372243839 0.101513805336914 0.00342669908783735 3666027 1003053 1283 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} +68 471 549 0.024156295723456 0.0242207750393078 0.0241550316624704 0.0243076218814374 0.0023603528694236 0.00225439939906555 2140328 915877 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} +69 525 549 0.0239979607987601 0.023990223647808 0.0239719233997101 0.0239566643778134 0.00216441488611815 0.00229589405225768 2126299 907159 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} +70 578 549 0.023754267898765 0.0237465817609202 0.0237888151369497 0.0237430380712596 0.00174309015603662 0.00155755630930575 2104707 897946 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} +71 97 600 0.0233172752443136 0.0230447196445626 0.0233005264362554 0.0231021591515984 0.00168318836773571 0.00175193794344182 2065988 871406 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} +72 151 600 0.0234784994512621 0.0232496189541911 0.0235294117647059 0.023422598611429 0.00182837464471192 0.0018539949419301 2080273 879154 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} +73 204 600 0.0234830252410406 0.0233875848419468 0.0234988937209125 0.0233310444800488 0.00196721185798228 0.00209062390861821 2080674 884371 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} +74 257 601 0.0235133062733992 0.0235496425303055 0.0234836346990158 0.0235141527428092 0.00171370587975499 0.0017643953769033 2083357 890499 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} +75 311 601 0.0237611976616678 0.0237988379606912 0.0238040741588464 0.0237582970931563 0.00141871970602109 0.00145118085110395 2105321 899922 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} +76 364 601 0.0246411759739928 0.0243173538052814 0.024429694056611 0.0241702906843671 0.00190231103006485 0.00148979577872397 2183290 919529 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} +77 418 601 0.0459036062392762 0.117184263532035 0.0258182650492103 0.028198672465095 0.104261397342466 0.252342836092758 3862648 4431170 1284 577 4 False 418 601 27 {X=0,Y=0,Width=0,Height=0} +78 471 601 0.0242492719234449 0.0240708558103089 0.0242313267719539 0.0240329594872969 0.00206700333726057 0.00184433410211565 2148566 910208 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} +79 524 602 0.0237122265847375 0.0237083945380106 0.0237430380712596 0.0236057068741894 0.00198216301702559 0.00202006221958114 2100982 896502 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} +80 578 602 0.0236642938436167 0.0236070820373412 0.0236362249179828 0.0236667429617761 0.00162204174063071 0.00175483630511358 2096735 892671 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} +81 99 654 0.0238635414564601 0.145425479039802 0.0238803692683299 0.156786449988556 0.00174283414532241 0.0350801375635895 2114389 8205725 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} +82 150 653 0.0235521422899277 0.023437540287983 0.023575188830396 0.0234683756771191 0.00166705957590554 0.00172313414049188 2086798 886260 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} +83 204 653 0.0234984535568193 0.023436032897605 0.0234531166552224 0.0234378576333257 0.00189494271768906 0.00177976939969082 2082041 886203 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} +84 257 653 0.0236156613544504 0.023642624715728 0.0236057068741894 0.0235904478522927 0.00177065193514706 0.00175469708416405 2092426 894015 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} +85 311 654 0.0236928706508966 0.0236801508025069 0.0236820019836728 0.0236667429617761 0.00138082157249014 0.0012869274955699 2099267 895434 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} +86 364 654 0.0238308338784596 0.0236877141998421 0.0238193331807431 0.0237125200274662 0.00148204771595169 0.00153213128013805 2111491 895720 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} +87 417 654 0.0241485420636608 0.0239086130038337 0.0240939955748837 0.0238803692683299 0.00182765679220524 0.00166113294498415 2139641 904073 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} +88 471 654 0.0240247205183734 0.023884203857888 0.0239871824216068 0.0237888151369497 0.00193903996941638 0.00202817849833448 2128670 903150 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} +89 524 654 0.0237801134314154 0.0237398910632775 0.023773556115053 0.0237125200274662 0.00161103004927635 0.00153376011535531 2106997 897693 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} +90 577 655 0.0236619011567512 0.0236931884070044 0.0236820019836728 0.0236209658960861 0.00147491466738605 0.00145250842910095 2096523 895927 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} +91 99 709 0.0239221284258874 0.145246801387348 0.0238803692683299 0.1588921950103 0.00206436191199858 0.0367152507834915 2119580 8195643 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} +92 150 706 0.0236421050588172 0.0234614734159145 0.0236514839398795 0.0232547493705653 0.00194236408612263 0.00182224050396661 2094769 887165 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} +93 204 706 0.0234188515735076 0.0235750566031698 0.0233463035019455 0.0234836346990158 0.00195483187654776 0.00197572011385416 2074988 891460 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} +94 257 706 0.0234555657733819 0.0233328427703243 0.0234683756771191 0.0233005264362554 0.00186722845628829 0.00196477872811862 2078241 882301 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} +95 310 706 0.0235598282321701 0.0237266683406634 0.023575188830396 0.0237277790493629 0.00146138067023056 0.00154796518220649 2087479 897193 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} +96 364 707 0.023679349712855 0.023709478801265 0.0236667429617761 0.0235599298084993 0.00187075841511405 0.00190623358395935 2098069 896543 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} +97 417 707 0.023651732237573 0.0237361622555003 0.0236667429617761 0.023773556115053 0.00166917279618932 0.00167514767514709 2095622 897552 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} +98 471 707 0.0235348743139648 0.0236710006784579 0.0235599298084993 0.0236057068741894 0.00186351838157612 0.00172102499146437 2085268 895088 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} +99 524 707 0.0235891837913071 0.0235864810355084 0.0236057068741894 0.0234683756771191 0.00176475650642091 0.00190197903462523 2090080 891892 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} +100 578 708 0.0240545162416036 0.14410517489081 0.024078736552987 0.160311284046693 0.00156367167517836 0.0397979761148212 2131310 8131226 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv new file mode 100644 index 0000000..3f4f27a --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 101 231 0.324811395329204 0.353230069985034 0.3247119859617 0.354421301594568 0.00543403770179023 0.013203962851817 28779368 19931231 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} +2 152 231 0.326052037327721 0.325439341487257 0.325917448691539 0.325185015640497 0.00604930387324953 0.00562457358928658 28889293 12306064 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} +3 205 231 0.325864820866758 0.326321508649181 0.325902189669642 0.325978484779126 0.00636436485606988 0.00617516946334334 28872705 12339422 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} +4 259 231 0.325685809515941 0.325917263573422 0.325764858472572 0.325993743801022 0.00567303009311332 0.00534103049062061 28856844 12324136 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} +5 312 231 0.32533491972987 0.325319913856607 0.325383382925155 0.325261310749981 0.00462852513793319 0.0045602289658968 28825754 12301548 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} +6 366 232 0.325059625305237 0.32476003733568 0.324971389333944 0.324696726939803 0.00420667877791081 0.00406351030483787 28801362 12280377 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} +7 419 232 0.325170388649094 0.325026237187347 0.325108720531014 0.324910353246357 0.00447578988908673 0.00434511507674744 28811176 12290443 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} +8 472 232 0.325191539098083 0.324893031479732 0.325093461509117 0.325139238574807 0.0058497788022002 0.00552449047901663 28813050 12285406 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} +9 526 232 0.324517512436329 0.325610840199563 0.32466620889601 0.325444419012741 0.00672753467218789 0.00699171348359604 28753329 12312549 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} +10 577 231 0.324466250248862 0.345662977474689 0.324467841611353 0.346272983901732 0.00647932504367962 0.0103859104861705 28748787 19504253 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} +11 98 283 0.324342620569974 0.324839585234926 0.324315251392386 0.32480354009308 0.00463015509838015 0.00453826487178107 28737833 12283385 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} +12 152 284 0.325083890761655 0.325352045072559 0.325017166399634 0.325581750209812 0.00470368407477983 0.00463111781104367 28803512 12302763 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} +13 205 284 0.325857552516091 0.325602218984418 0.325932707713436 0.325383382925155 0.00517199783720868 0.00447958050653992 28872061 12312223 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} +14 259 284 0.326043132469528 0.325639216162293 0.326054779888609 0.325139238574807 0.00511390984719353 0.00500035819689255 28888504 12313622 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} +15 312 284 0.325676588642502 0.326204752008498 0.325490196078431 0.326207370107576 0.00413318916602613 0.00419337139140977 28856027 12335007 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} +16 365 284 0.325391057581138 0.325426700564438 0.325490196078431 0.325490196078431 0.00441486530983562 0.00418289811686509 28830728 12305586 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} +17 419 285 0.325270791207372 0.325561228544314 0.325215533684291 0.325551232166018 0.00429073029900358 0.00412160850985971 28820072 12310673 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} +18 472 285 0.325916432928247 0.325743966570842 0.325963225757229 0.325841153582055 0.00475291654462565 0.00484438453386622 28877278 12317583 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} +19 526 285 0.325643463472926 0.325239599039449 0.325673304341192 0.325139238574807 0.00559689478112422 0.00544708944926628 28853092 12298511 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} +20 579 285 0.325239313831581 0.325379601226487 0.325200274662394 0.325566491187915 0.00600799552306265 0.00599287752485728 28817283 12303805 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} +21 98 336 0.324966152509861 0.324685831416369 0.32480354009308 0.324299992370489 0.00528471103231675 0.00528611406137655 28793080 12277571 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} +22 152 336 0.325082084960248 0.324430553533581 0.32489509422446 0.324406805523766 0.00529454854524964 0.00503498701646463 28803352 12267918 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} +23 205 337 0.325866163931555 0.325819732771421 0.326024261844816 0.325825894560159 0.00552334647741611 0.00585521234253982 28872824 12320448 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} +24 258 337 0.326512223244005 0.326739426020123 0.326405737392233 0.326680399786374 0.00606407984107286 0.00659368173417966 28930067 12355225 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} +25 312 337 0.326348391911274 0.326376356502585 0.326405737392233 0.326344701304646 0.0049274170787288 0.00477955007151858 28915551 12341496 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} +26 365 337 0.326652692021021 0.326766559046927 0.326573586633097 0.326863508049134 0.00496840630769626 0.00512988949724823 28942513 12356251 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} +27 419 337 0.326373910142419 0.325977003834193 0.326405737392233 0.325856412603952 0.00413628210442045 0.00427628042265664 28917812 12326395 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} +28 472 338 0.326087442321574 0.326643667062952 0.326115815976196 0.32660410467689 0.0043345755843379 0.00457128734156601 28892430 12351604 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} +29 525 338 0.325587980224669 0.326283453653498 0.325505455100328 0.32651255054551 0.00504950747530231 0.00523949488336244 28848176 12337983 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} +30 579 338 0.325644603385065 0.325867413909167 0.325612268253605 0.325719081406882 0.00532170507002531 0.00530764381747706 28853193 12322251 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} +31 98 389 0.324378160998933 0.324427591643715 0.324330510414282 0.324452582589456 0.00505537099408934 0.00533332547791205 28740982 12267806 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} +32 151 389 0.325533467594668 0.325330439143808 0.325474937056535 0.325444419012741 0.00545445893958838 0.00533110063414097 28843346 12301946 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} +33 205 389 0.32602431827611 0.326380270428478 0.325963225757229 0.326543068589303 0.00648811878956869 0.00574157941670853 28886837 12341644 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} +34 258 390 0.326892412157919 0.326243653258429 0.32674143587396 0.326207370107576 0.00660027753398197 0.00715392735206084 28963753 12336478 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} +35 312 390 0.327297092253428 0.326773778653475 0.327275501640345 0.32651255054551 0.00557629939751658 0.00539492301315453 28999609 12356524 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} +36 365 390 0.327139490935554 0.327537232211769 0.327321278706035 0.327626459143969 0.00524108716743307 0.00535876546548163 28985645 12385393 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} +37 418 390 0.327313874920263 0.327140814987797 0.327153429465171 0.327153429465171 0.00490724645948314 0.00482826597708434 29001096 12370403 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} +38 472 390 0.32657139709889 0.327279045330005 0.32660410467689 0.327229724574655 0.00464130786642758 0.00429730782658076 28935310 12375630 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} +39 525 391 0.326213938710197 0.325947622944544 0.326344701304646 0.325947966735332 0.00493346907329205 0.00505684615220138 28903638 12325284 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} +40 579 391 0.325633949156758 0.326018232283304 0.325551232166018 0.325993743801022 0.00529922496116989 0.00584330275047609 28852249 12327954 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} +41 98 442 0.324703679275224 0.32522412845399 0.324559395742733 0.325383382925155 0.00598161839878139 0.00603849876402488 28769824 12297926 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} +42 151 442 0.325362446915082 0.32540424838144 0.325230792706188 0.325749599450675 0.00624597559496833 0.00632566770932741 28828193 12304737 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} +43 205 442 0.326186197086069 0.326017015792823 0.325932707713436 0.325871671625849 0.00656924868516978 0.0064344870349955 28901180 12327908 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} +44 258 442 0.326598472833749 0.327016997413239 0.326344701304646 0.327031357289998 0.00600089420145728 0.00570493096669549 28937709 12365721 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} +45 311 443 0.327595072058248 0.327050424456007 0.327641718165866 0.327031357289998 0.00513163261853657 0.00505610186556299 29026011 12366985 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} +46 365 443 0.327511813327085 0.327484209094086 0.327595941100175 0.327443350881209 0.00482303536246855 0.00489564003369187 29018634 12383388 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} +47 418 443 0.327556992221059 0.326747227426466 0.327733272297246 0.32664988174258 0.00569575115681314 0.00502659116368158 29022637 12355520 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} +48 472 443 0.327642372768876 0.326667679527219 0.327550164034485 0.326726176852064 0.00667432040653979 0.00605343265878773 29030202 12352512 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} +49 525 443 0.326145205394109 0.325798814424245 0.325993743801022 0.325734340428779 0.00558705943575807 0.00544782614159305 28897548 12319657 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} +50 578 444 0.326173601621248 0.326346314476805 0.32642099641413 0.326100556954299 0.00555660620088892 0.0059893534769103 28900064 12340360 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} +51 98 494 0.324167423974632 0.324231445776457 0.324299992370489 0.324345769436179 0.00517283536146291 0.00478275992268825 28722310 12260389 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} +52 151 495 0.325464282828228 0.324929579085038 0.325413900968948 0.32498664835584 0.00570672769057352 0.00582811587011416 28837216 12286788 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} +53 204 495 0.32651678289256 0.325964177793257 0.326253147173266 0.325993743801022 0.00593669465122804 0.00609577051061802 28930471 12325910 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} +54 258 495 0.326846714096041 0.327116009160173 0.326924544136721 0.327046616311894 0.00512132321640644 0.00503396644102264 28959704 12369465 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} +55 311 495 0.327176814593403 0.328069631915104 0.327214465552758 0.327840085450523 0.00450485368746239 0.0043715551440496 28988952 12405525 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} +56 365 496 0.327439626415805 0.327770190138784 0.327244983596551 0.327885862516213 0.00394404807120065 0.00404050652629388 29012238 12394202 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} +57 418 496 0.32746006583049 0.328277889796276 0.327473868925002 0.328435187304494 0.00484167471131837 0.00477748995736182 29014049 12413400 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} +58 471 496 0.327070294882855 0.327392787189932 0.326939803158618 0.326985580224308 0.00648216616991686 0.00709162626291234 28979514 12379931 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} +59 525 496 0.326512099095158 0.326503400421461 0.32632944228275 0.326405737392233 0.00630251883731237 0.0057479079019226 28930056 12346300 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} +60 578 496 0.326260415523933 0.326027038616565 0.326268406195163 0.325551232166018 0.00565563691874818 0.0054847240693161 28907756 12328287 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} +61 97 547 0.324600658304903 0.324261011784223 0.32452887769894 0.324193179217212 0.0044178898055864 0.00451823087421435 28760696 12261507 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} +62 151 547 0.325171596278785 0.325146352399574 0.325200274662394 0.325062943465324 0.00501689502210286 0.0047436306242417 28811283 12294985 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} +63 204 548 0.325376814322533 0.325525738756818 0.325322346837568 0.325001907377737 0.00573561355320143 0.00507578406639535 28829466 12309331 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} +64 258 548 0.326247052593515 0.326131339452545 0.32628366521706 0.326390478370336 0.00512273833489822 0.00539720220296669 28906572 12332231 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} +65 311 548 0.328111260390694 0.327501848206053 0.327397573815518 0.327641718165866 0.00766934676824994 0.00416379863493815 29071747 12384055 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} +66 364 548 0.32918242792708 0.329037905446691 0.328801403830014 0.328740367742428 0.00532405907616439 0.00446359425717731 29166656 12442139 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} +67 418 549 0.347909857480128 0.335409723910874 0.33182269016556 0.332555123216602 0.0693568506280356 0.0142581956819032 28614342 12683081 1255 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} +68 471 549 0.328267123624713 0.327920056476893 0.327916380560006 0.327794308384833 0.00660108803061339 0.00641496681931429 29085557 12399869 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} +69 525 549 0.327032384339548 0.326409043072887 0.327260242618448 0.326497291523613 0.00663949804157412 0.00700240046701468 28976155 12342732 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} +70 578 549 0.32657270630491 0.326524530332198 0.32632944228275 0.326207370107576 0.00580291301539064 0.00551938364460698 28935426 12347099 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} +71 97 600 0.32376249558143 0.324301023742853 0.323613336385138 0.324299992370489 0.005347646792528 0.00533873701511861 28686432 12263020 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} +72 151 600 0.324823640920002 0.325120462308695 0.32480354009308 0.32503242542153 0.00548623703861669 0.00529832284932327 28780453 12294006 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} +73 204 600 0.325279831500671 0.325475333738213 0.325490196078431 0.325276569771878 0.00526383755724481 0.00501726218021533 28820873 12307425 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} +74 257 601 0.325831661838405 0.325226217644163 0.325856412603952 0.325429159990845 0.00523143142372768 0.00509906755404365 28869767 12298005 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} +75 311 601 0.326600639795439 0.32688220497891 0.32651255054551 0.326832990005341 0.00425898230107841 0.00384274834045981 28937901 12360624 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} +76 364 601 0.329812077019236 0.328365318438201 0.328892957961395 0.328236820019837 0.00704124016636976 0.00508350926457793 29222445 12416706 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} +77 418 601 0.352509032676201 0.438363164456687 0.333501182574197 0.342107270923934 0.068367063819281 0.218565151003364 28900201 16576131 1251 577 9 False 418 601 27 {X=0,Y=0,Width=0,Height=0} +78 471 601 0.328215680857106 0.328222803933866 0.32822156099794 0.328252079041733 0.00579675590493295 0.00532923110122895 29080999 12411317 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} +79 524 602 0.326901565313805 0.326674052879519 0.326802471961547 0.326588845654994 0.00603176153630464 0.00558811300584502 28964564 12352753 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} +80 578 602 0.326520315491564 0.326450086403881 0.326482032501717 0.326222629129473 0.00498730064742747 0.00525062465342346 28930784 12344284 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} +81 99 654 0.322660855146286 0.351590194775832 0.322468909742886 0.35233081559472 0.0054363744419674 0.0133869568824429 28588823 19838700 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} +82 150 653 0.323925232147057 0.324157319193483 0.323826962691691 0.324116884107729 0.00495728752349294 0.00472409977199447 28700851 12257586 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} +83 204 653 0.32479799854001 0.325069792835638 0.324864576180667 0.325154497596704 0.00622985443668927 0.00618830923173699 28778181 12292090 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} +84 257 653 0.324990666263973 0.324634685925298 0.325017166399634 0.324498359655146 0.00529389704531044 0.00553053508197608 28795252 12275637 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} +85 311 654 0.325684263298486 0.326155827934826 0.325627527275502 0.325856412603952 0.00481407855967724 0.00430190525870689 28856707 12333157 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} +86 364 654 0.326606102344698 0.325987079548825 0.3265583276112 0.326024261844816 0.00517478446968174 0.00568102816886616 28938385 12326776 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} +87 417 654 0.32815895612038 0.32765959528684 0.327916380560006 0.327458609903105 0.00552144765269711 0.0053644695546835 29075973 12390020 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} +88 471 654 0.327520278021185 0.326734110485632 0.327656977187762 0.326726176852064 0.00525131349547685 0.00516815516991202 29019384 12355024 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} +89 524 654 0.326572559583546 0.326950910245613 0.326527809567407 0.327016098268101 0.00480088835941085 0.00424098107494183 28935413 12363222 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} +90 577 655 0.326296971716184 0.326566446362885 0.326253147173266 0.3265583276112 0.00430125006339541 0.00429697947045379 28910995 12348684 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} +91 99 709 0.321598852052045 0.341669934241768 0.32143129625391 0.341466392004273 0.00634095347765092 0.0112084636397593 28494726 19278943 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} +92 150 706 0.323333832185972 0.323539553592951 0.323201342793927 0.323262378881514 0.00598180340076333 0.00586425483855967 28648451 12234226 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} +93 204 706 0.324101421933174 0.323956571818755 0.323872739757382 0.323765926604105 0.00649783010976757 0.00716742732436614 28716462 12249995 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} +94 257 706 0.324253910575811 0.324247524607156 0.324254215304799 0.324116884107729 0.00630474800648598 0.00730073440509273 28729973 12260997 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} +95 310 706 0.325134261334677 0.324345452090836 0.324864576180667 0.324727244983597 0.00557837392274014 0.00569393929545568 28807975 12264700 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} +96 364 707 0.326956213378912 0.327330270157413 0.32651255054551 0.327061875333791 0.00653918353925449 0.00752121897526766 28969406 12377567 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} +97 417 707 0.326258067982103 0.326073688381947 0.326497291523613 0.326039520866712 0.00604149663851206 0.00650155644599175 28907548 12330051 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} +98 471 707 0.327088894637357 0.326349963948247 0.327061875333791 0.326436255436027 0.00553779732952764 0.00537705038459797 28981162 12340498 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} +99 524 707 0.326144370210958 0.326212183178608 0.326314183260853 0.325947966735332 0.00464783751197481 0.00506012873421035 28897474 12335288 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} +100 578 708 0.325625405458847 0.348930304461793 0.325505455100328 0.347661554894331 0.00435468724490239 0.0123918793893537 28851492 19688614 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv new file mode 100644 index 0000000..a87ccc7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 101 231 0.0342393151859321 0.0371407428556187 0.0342412451361868 0.037094682230869 0.00201041266485989 0.0023902838709662 3033717 2095690 1352 861 0 True 99 231 32 {X=0,Y=0,Width=0,Height=0} +2 152 231 0.034091510340696 0.0343493012253894 0.0341039139391165 0.034332799267567 0.00230283853754765 0.00214700682293275 3020621 1298874 1352 577 0 False 152 231 27 {X=0,Y=0,Width=0,Height=0} +3 205 231 0.0340636897127557 0.0345936835847436 0.034027618829633 0.0346227206836042 0.00239385286755976 0.00234979548587924 3018156 1308115 1352 577 0 False 205 231 27 {X=0,Y=0,Width=0,Height=0} +4 259 231 0.0342797425649513 0.0339230270937553 0.0341649500267033 0.0338445105668727 0.00216992417052746 0.0020002108103499 3037299 1282755 1352 577 0 False 259 231 27 {X=0,Y=0,Width=0,Height=0} +5 312 231 0.0341535960503512 0.0342535687136631 0.0341954680704967 0.0341954680704967 0.00170579979376295 0.00176001944048668 3026122 1295254 1352 577 0 False 312 231 27 {X=0,Y=0,Width=0,Height=0} +6 366 232 0.0341828613194178 0.0339334465991753 0.0342412451361868 0.0339208056763561 0.00161826671381046 0.00153683655208519 3028715 1283149 1352 577 0 False 366 232 27 {X=0,Y=0,Width=0,Height=0} +7 419 232 0.034197420593269 0.0340740305860086 0.0341954680704967 0.0339971007858396 0.00171325410057128 0.00158122480321189 3030005 1288465 1352 577 0 False 419 232 27 {X=0,Y=0,Width=0,Height=0} +8 472 232 0.0342342363694724 0.0342674790178532 0.0341649500267033 0.0343480582894636 0.00222196995757917 0.00208452375099046 3033267 1295780 1352 577 0 False 472 232 27 {X=0,Y=0,Width=0,Height=0} +9 526 232 0.0341084171563774 0.0344337679774484 0.0339818417639429 0.0342717631799802 0.00258617771891198 0.00277537090905951 3022119 1302068 1352 577 0 False 526 232 27 {X=0,Y=0,Width=0,Height=0} +10 577 231 0.0340768494905157 0.0361726367811368 0.0340428778515297 0.0361028458075837 0.00249535652088746 0.00242442662384865 3019322 2041064 1352 861 0 True 579 232 32 {X=0,Y=0,Width=0,Height=0} +11 98 283 0.0341504246116286 0.0340714389323762 0.0341344319829099 0.0341649500267033 0.00174115730483475 0.00182595743588825 3025841 1288367 1352 577 0 False 98 283 27 {X=0,Y=0,Width=0,Height=0} +12 152 284 0.03399117549997 0.0341502199137112 0.0340428778515297 0.0341649500267033 0.00181821524559814 0.00172554286796421 3011731 1291346 1352 577 0 False 152 284 27 {X=0,Y=0,Width=0,Height=0} +13 205 284 0.0343258356458878 0.034288318028693 0.034332799267567 0.0341649500267033 0.00190724254211532 0.00192496180081885 3041383 1296568 1352 577 0 False 205 284 27 {X=0,Y=0,Width=0,Height=0} +14 259 284 0.0341965402650826 0.0340808270654322 0.0341344319829099 0.0338597695887694 0.00191991333353285 0.00216952542852141 3029927 1288722 1352 577 0 False 259 284 27 {X=0,Y=0,Width=0,Height=0} +15 312 284 0.0341757509763743 0.0343425047459657 0.0341649500267033 0.034378576333257 0.00169413916557891 0.0016335278525839 3028085 1298617 1352 577 0 False 312 284 27 {X=0,Y=0,Width=0,Height=0} +16 365 284 0.0340769059218097 0.0340864334998206 0.0340733958953231 0.0340886549172198 0.00158709754989005 0.0016972301718369 3019327 1288934 1352 577 0 False 365 284 27 {X=0,Y=0,Width=0,Height=0} +17 419 285 0.0341906262654718 0.0342851710207109 0.0341649500267033 0.0343022812237736 0.00153885680560432 0.00149472009737962 3029403 1296449 1352 577 0 False 419 285 27 {X=0,Y=0,Width=0,Height=0} +18 472 285 0.03421997053835 0.0340910614527356 0.0341496910048066 0.0341344319829099 0.00193179554885869 0.00180853198444676 3032003 1289109 1352 577 0 False 472 285 27 {X=0,Y=0,Width=0,Height=0} +19 526 285 0.0342200382559028 0.0342861495021843 0.0342412451361868 0.0343022812237736 0.00210560891075385 0.00189791579485794 3032009 1296486 1352 577 0 False 526 285 27 {X=0,Y=0,Width=0,Height=0} +20 579 285 0.0343221788980368 0.0339729560943462 0.0343480582894636 0.034027618829633 0.00223847969321184 0.00229530185552756 3041059 1284643 1352 577 0 False 579 285 27 {X=0,Y=0,Width=0,Height=0} +21 98 336 0.0341610336948999 0.0339570094908736 0.0341039139391165 0.0338445105668727 0.00203442681772974 0.00203965663363056 3026781 1284040 1352 577 0 False 98 336 27 {X=0,Y=0,Width=0,Height=0} +22 152 336 0.0340920295086008 0.0341891211636419 0.0340886549172198 0.0341649500267033 0.00196830860921381 0.00171602395880453 3020667 1292817 1352 577 0 False 152 336 27 {X=0,Y=0,Width=0,Height=0} +23 205 337 0.0341695999653286 0.0341936962256664 0.0341191729610132 0.0342259861142901 0.0022065895964297 0.002327014796339 3027540 1292990 1352 577 0 False 205 337 27 {X=0,Y=0,Width=0,Height=0} +24 258 337 0.0341475240431171 0.0340479024861231 0.0341344319829099 0.0340428778515297 0.00223314631433195 0.00247907586247213 3025584 1287477 1352 577 0 False 258 337 27 {X=0,Y=0,Width=0,Height=0} +25 312 337 0.0342558947001083 0.0344655025117223 0.0342412451361868 0.0344548714427405 0.00187208659470339 0.00184944986164973 3035186 1303268 1352 577 0 False 312 337 27 {X=0,Y=0,Width=0,Height=0} +26 365 337 0.0343751340243232 0.0344090150407147 0.0343480582894636 0.0343633173113603 0.00184522808724063 0.00177803975036132 3045751 1301132 1352 577 0 False 365 337 27 {X=0,Y=0,Width=0,Height=0} +27 419 337 0.034239935930166 0.0340854814637924 0.0342717631799802 0.0340581368734264 0.00157619461680817 0.00165754833793018 3033772 1288898 1352 577 0 False 419 337 27 {X=0,Y=0,Width=0,Height=0} +28 472 338 0.0343217387339436 0.0344504021624969 0.0343480582894636 0.0344090943770504 0.00175700537018749 0.0015989702867337 3041020 1302697 1352 577 0 False 472 338 27 {X=0,Y=0,Width=0,Height=0} +29 525 338 0.0343723124596234 0.0342577470940092 0.0343633173113603 0.0343175402456703 0.00194570387964234 0.00197532263438491 3045501 1295412 1352 577 0 False 525 338 27 {X=0,Y=0,Width=0,Height=0} +30 579 338 0.0342691109091623 0.0341750521867805 0.0342412451361868 0.0341649500267033 0.00211868723394651 0.00204121802677674 3036357 1292285 1352 577 0 False 579 338 27 {X=0,Y=0,Width=0,Height=0} +31 98 389 0.0340322913407759 0.0340305278286081 0.0340428778515297 0.0340428778515297 0.00210303380660656 0.00208682908599266 3015374 1286820 1352 577 0 False 98 389 27 {X=0,Y=0,Width=0,Height=0} +32 151 389 0.0343084209485604 0.0342726887705632 0.034332799267567 0.0342717631799802 0.00213399554557341 0.00190920813999449 3039840 1295977 1352 577 0 False 151 389 27 {X=0,Y=0,Width=0,Height=0} +33 205 389 0.0341940685744056 0.034014528334245 0.0341954680704967 0.0339360646982528 0.00238174528010627 0.00239119866348285 3029708 1286215 1352 577 0 False 205 389 27 {X=0,Y=0,Width=0,Height=0} +34 258 390 0.0343795018064786 0.0344544747610621 0.0342412451361868 0.0343175402456703 0.00257320024329966 0.00258794760020756 3046138 1302851 1352 577 0 False 258 390 27 {X=0,Y=0,Width=0,Height=0} +35 312 390 0.034402367766806 0.0342722391979943 0.034378576333257 0.0342870222018769 0.00191885578418623 0.00212725521423853 3048164 1295960 1352 577 0 False 312 390 27 {X=0,Y=0,Width=0,Height=0} +36 365 390 0.0344271072460942 0.0344501377080447 0.0344243533989471 0.0344243533989471 0.00197551939046947 0.00193909945253594 3050356 1302687 1352 577 0 False 365 390 27 {X=0,Y=0,Width=0,Height=0} +37 418 390 0.0343487918962856 0.0344342704409077 0.0344243533989471 0.0344090943770504 0.00179831969971055 0.0016897582597719 3043417 1302087 1352 577 0 False 418 390 27 {X=0,Y=0,Width=0,Height=0} +38 472 390 0.0341414294633655 0.0342673732360723 0.0341191729610132 0.0343022812237736 0.00178458095668803 0.00161381625612316 3025044 1295776 1352 577 0 False 472 390 27 {X=0,Y=0,Width=0,Height=0} +39 525 391 0.0343128790207861 0.0341518330858701 0.0343022812237736 0.0341954680704967 0.00194229371285468 0.00176741915337319 3040235 1291407 1352 577 0 False 525 391 27 {X=0,Y=0,Width=0,Height=0} +40 579 391 0.0342712214395578 0.0340143696615737 0.0342717631799802 0.0340581368734264 0.00202405462529796 0.00205482376963005 3036544 1286209 1352 577 0 False 579 391 27 {X=0,Y=0,Width=0,Height=0} +41 98 442 0.0340503267823373 0.0340935208791418 0.0339971007858396 0.0341191729610132 0.0023462965622587 0.00241021897188493 3016972 1289202 1352 577 0 False 98 442 27 {X=0,Y=0,Width=0,Height=0} +42 151 442 0.0340377651762936 0.0339119464522047 0.0340123598077363 0.0337224383916991 0.00238026775222779 0.00246012142342293 3015859 1282336 1352 577 0 False 151 442 27 {X=0,Y=0,Width=0,Height=0} +43 205 442 0.0342075105086356 0.0341972663607722 0.0341191729610132 0.0342870222018769 0.00249442844653729 0.00234486692488008 3030899 1293125 1352 577 0 False 205 442 27 {X=0,Y=0,Width=0,Height=0} +44 258 442 0.0344501425003036 0.034469178428609 0.0343633173113603 0.034531166552224 0.00233644124536785 0.00223665145648831 3052397 1303407 1352 577 0 False 258 442 27 {X=0,Y=0,Width=0,Height=0} +45 311 443 0.0343132063222913 0.0344358307221762 0.034332799267567 0.0345464255741207 0.00190965822665882 0.00171122636723217 3040264 1302146 1352 577 0 False 311 443 27 {X=0,Y=0,Width=0,Height=0} +46 365 443 0.0343610939183769 0.0344240889444948 0.0343938353551537 0.0344396124208438 0.00190603538703295 0.00178339875676287 3044507 1301702 1352 577 0 False 365 443 27 {X=0,Y=0,Width=0,Height=0} +47 418 443 0.0343563762621988 0.0345406869125062 0.0344701304646372 0.0345922026398108 0.00212061366749352 0.00191429415659564 3044089 1306111 1352 577 0 False 418 443 27 {X=0,Y=0,Width=0,Height=0} +48 472 443 0.034341963709712 0.0343739483803421 0.0343175402456703 0.0344090943770504 0.00232294002731713 0.00234791680644664 3042812 1299806 1352 577 0 False 472 443 27 {X=0,Y=0,Width=0,Height=0} +49 525 443 0.0343943883818349 0.034480417742831 0.0344548714427405 0.0344243533989471 0.00211786101798502 0.00198780651388135 3047457 1303832 1352 577 0 False 525 443 27 {X=0,Y=0,Width=0,Height=0} +50 578 444 0.034304899635815 0.0345722363286635 0.0342107270923934 0.0344701304646372 0.00217604094038835 0.00231941961582009 3039528 1307304 1352 577 0 False 578 444 27 {X=0,Y=0,Width=0,Height=0} +51 98 494 0.0339553416282821 0.0339794352284272 0.0339360646982528 0.0340886549172198 0.00194988399825408 0.00187219106544058 3008556 1284888 1352 577 0 False 98 494 27 {X=0,Y=0,Width=0,Height=0} +52 151 495 0.0341262607315392 0.0338545862815046 0.0340886549172198 0.0338139925230793 0.00215073936290954 0.00214428735568527 3023700 1280167 1352 577 0 False 151 495 27 {X=0,Y=0,Width=0,Height=0} +53 204 495 0.0342028944287866 0.034207209848178 0.0341802090486 0.0341649500267033 0.00241963101169316 0.00260012150292559 3030490 1293501 1352 577 0 False 204 495 27 {X=0,Y=0,Width=0,Height=0} +54 258 495 0.0341452216463221 0.0344197254460322 0.0340886549172198 0.034378576333257 0.00186455144771583 0.00195694438710264 3025380 1301537 1352 577 0 False 258 495 27 {X=0,Y=0,Width=0,Height=0} +55 311 495 0.0343524712166542 0.0346334046434764 0.0342717631799802 0.0346227206836042 0.00171726234653163 0.0017084492363369 3043743 1309617 1352 577 0 False 311 495 27 {X=0,Y=0,Width=0,Height=0} +56 365 496 0.0345822255870322 0.0344126645121562 0.0345922026398108 0.0344396124208438 0.00159151985339518 0.00137521551895592 3064100 1301270 1352 577 0 False 365 496 27 {X=0,Y=0,Width=0,Height=0} +57 418 496 0.0345833203541357 0.0343034183779184 0.0345769436179141 0.0342412451361868 0.00188316723785902 0.00176708305796215 3064197 1297139 1352 577 0 False 418 496 27 {X=0,Y=0,Width=0,Height=0} +58 471 496 0.0343392324350826 0.0343665436556782 0.0344243533989471 0.034332799267567 0.00247548764947195 0.00256069029939995 3042570 1299526 1352 577 0 False 471 496 27 {X=0,Y=0,Width=0,Height=0} +59 525 496 0.0343561053919876 0.0343749004163703 0.0343480582894636 0.0343938353551537 0.0024275530331582 0.00218758501274689 3044065 1299842 1352 577 0 False 525 496 27 {X=0,Y=0,Width=0,Height=0} +60 578 496 0.0343379570878382 0.0342362469470386 0.0343633173113603 0.0342717631799802 0.00216160209870681 0.00214115450951489 3042457 1294599 1352 577 0 False 578 496 27 {X=0,Y=0,Width=0,Height=0} +61 97 547 0.0339914463701812 0.033830071353778 0.0339360646982528 0.0338139925230793 0.00177496301882948 0.00174266378637426 3011755 1279240 1352 577 0 False 97 547 27 {X=0,Y=0,Width=0,Height=0} +62 151 547 0.0341440930204421 0.0338191229394536 0.0340886549172198 0.0337987335011826 0.00191958597536922 0.00183433811803088 3025280 1278826 1352 577 0 False 151 547 27 {X=0,Y=0,Width=0,Height=0} +63 204 548 0.0341607063933947 0.0341803148303809 0.0342259861142901 0.0340581368734264 0.00209370354410724 0.00211728004982631 3026752 1292484 1352 577 0 False 204 548 27 {X=0,Y=0,Width=0,Height=0} +64 258 548 0.0342393716172261 0.0342733234612486 0.0342717631799802 0.0341496910048066 0.00195905265057842 0.00213227788904769 3033722 1296001 1352 577 0 False 258 548 27 {X=0,Y=0,Width=0,Height=0} +65 311 548 0.0344169496131748 0.034257376857776 0.034378576333257 0.0343480582894636 0.00175175044205692 0.00167256502833036 3049456 1295398 1352 577 0 False 311 548 27 {X=0,Y=0,Width=0,Height=0} +66 364 548 0.0346024957078358 0.0346216099749046 0.0346227206836042 0.0346684977492943 0.00173192905542258 0.00163211513638879 3065896 1309171 1352 577 0 False 364 548 27 {X=0,Y=0,Width=0,Height=0} +67 418 549 0.0591914128892573 0.0352059749781131 0.0354772259098192 0.035034714274815 0.12012322896473 0.00221400173114651 5077754 1331268 1309 577 0 False 418 549 27 {X=0,Y=0,Width=0,Height=0} +68 471 549 0.0344442623594692 0.0345843747880232 0.0345006485084306 0.0346379797055009 0.00240399897802324 0.00246166885113669 3051876 1307763 1352 577 0 False 471 549 27 {X=0,Y=0,Width=0,Height=0} +69 525 549 0.0343930001720026 0.0343357347119873 0.034332799267567 0.0342717631799802 0.0025163379046927 0.00278410828107367 3047334 1298361 1352 577 0 False 525 549 27 {X=0,Y=0,Width=0,Height=0} +70 578 549 0.03432120827978 0.0342708111439519 0.0343480582894636 0.034378576333257 0.00217453642377479 0.00213666270892698 3040973 1295906 1352 577 0 False 578 549 27 {X=0,Y=0,Width=0,Height=0} +71 97 600 0.0338045233519466 0.0338643710962391 0.0337682154573892 0.0337071793698024 0.0020155219874556 0.00217015581875297 2995193 1280537 1352 577 0 False 97 600 27 {X=0,Y=0,Width=0,Height=0} +72 151 600 0.033949777502694 0.0342430963173527 0.034027618829633 0.0341039139391165 0.00201438715557999 0.00212644829103681 3008063 1294858 1352 577 0 False 151 600 27 {X=0,Y=0,Width=0,Height=0} +73 204 600 0.0341413166007775 0.0344240360536044 0.0341344319829099 0.0343633173113603 0.00213114614764721 0.00222687127713223 3025034 1301700 1352 577 0 False 204 600 27 {X=0,Y=0,Width=0,Height=0} +74 257 601 0.0341991812496417 0.0340639019804862 0.0342565041580835 0.0340581368734264 0.00197008404843989 0.00196994282678023 3030161 1288082 1352 577 0 False 257 601 27 {X=0,Y=0,Width=0,Height=0} +75 311 601 0.0341767554534074 0.0343046348683989 0.0341954680704967 0.0342565041580835 0.00166819973018786 0.0015603475182789 3028174 1297185 1352 577 0 False 311 601 27 {X=0,Y=0,Width=0,Height=0} +76 364 601 0.0347636860560078 0.0345741139552747 0.0346990157930877 0.0345769436179141 0.00202819154175127 0.00192002582372616 3080178 1307375 1352 577 0 False 364 601 27 {X=0,Y=0,Width=0,Height=0} +77 418 601 0.0581032124447255 0.0941285161368123 0.0357976653696498 0.0364385442893111 0.113677029504154 0.18182944752364 4972979 3559347 1306 577 1 False 418 601 27 {X=0,Y=0,Width=0,Height=0} +78 471 601 0.034446124592171 0.0345184727385144 0.0344548714427405 0.034531166552224 0.00223100184906489 0.00213124639540873 3052041 1305271 1352 577 0 False 471 601 27 {X=0,Y=0,Width=0,Height=0} +79 524 602 0.0343490063352028 0.0343104793117943 0.0342870222018769 0.0341496910048066 0.00218999384372535 0.00214210325175432 3043436 1297406 1352 577 0 False 524 602 27 {X=0,Y=0,Width=0,Height=0} +80 578 602 0.0343374040611571 0.0343322439132172 0.0343938353551537 0.0342412451361868 0.00187004449860009 0.00191968396015108 3042408 1298229 1352 577 0 False 578 602 27 {X=0,Y=0,Width=0,Height=0} +81 99 654 0.0340949752221474 0.0369314939920481 0.0339971007858396 0.0368810559243153 0.0021425210801599 0.0024138366132516 3020928 2083883 1352 861 0 True 97 653 32 {X=0,Y=0,Width=0,Height=0} +82 150 653 0.033869013034726 0.0341502463591564 0.0338750286106661 0.0341649500267033 0.00203076042945576 0.002016593812365 3000907 1291347 1352 577 0 False 150 653 27 {X=0,Y=0,Width=0,Height=0} +83 204 653 0.0341856715978589 0.0339080060808657 0.0341954680704967 0.0338902876325628 0.00222679604864679 0.00243355331769751 3028964 1282187 1352 577 0 False 204 653 27 {X=0,Y=0,Width=0,Height=0} +84 257 653 0.0341677715914031 0.0339514030564852 0.0341802090486 0.0338750286106661 0.00212126238466979 0.0020344764727426 3027378 1283828 1352 577 0 False 257 653 27 {X=0,Y=0,Width=0,Height=0} +85 311 654 0.0342730836722597 0.0341669598805406 0.0342717631799802 0.0341191729610132 0.00188872747183559 0.0017300992635639 3036709 1291979 1352 577 0 False 311 654 27 {X=0,Y=0,Width=0,Height=0} +86 364 654 0.0343064909983057 0.0339918910331297 0.0343022812237736 0.0339055466544594 0.00194188018176579 0.002058386767638 3039669 1285359 1352 577 0 False 364 654 27 {X=0,Y=0,Width=0,Height=0} +87 417 654 0.034571097335856 0.0344699453465206 0.034531166552224 0.0345159075303273 0.00205968459025111 0.00206891450546173 3063114 1303436 1352 577 0 False 417 654 27 {X=0,Y=0,Width=0,Height=0} +88 471 654 0.0344033158125452 0.0342173648991457 0.0344243533989471 0.0342717631799802 0.00198359532176284 0.00206205929851766 3048248 1293885 1352 577 0 False 471 654 27 {X=0,Y=0,Width=0,Height=0} +89 524 654 0.0341475014705995 0.0345374076772979 0.0341191729610132 0.0345616845960174 0.00174563237346093 0.00163210011996062 3025582 1305987 1352 577 0 False 524 654 27 {X=0,Y=0,Width=0,Height=0} +90 577 655 0.0341638439733409 0.0342517704233876 0.0341954680704967 0.0342107270923934 0.00164590919536697 0.00152648883120649 3027030 1295186 1352 577 0 False 577 655 27 {X=0,Y=0,Width=0,Height=0} +91 99 709 0.0336685352196735 0.0361005773351066 0.0337376974135958 0.0359349965667201 0.0025344923025199 0.00279045192221103 2983144 2036998 1352 861 0 True 97 706 32 {X=0,Y=0,Width=0,Height=0} +92 150 706 0.0338897007471052 0.0338007433550199 0.0338750286106661 0.0339513237201495 0.00229136520549138 0.00223486661445145 3002740 1278131 1352 577 0 False 150 706 27 {X=0,Y=0,Width=0,Height=0} +93 204 706 0.033983636279092 0.0337762284272933 0.0339818417639429 0.0337987335011826 0.00257937341385185 0.0025936583166165 3011063 1277204 1352 577 0 False 204 706 27 {X=0,Y=0,Width=0,Height=0} +94 257 706 0.0340870184096939 0.0337696170659863 0.0341039139391165 0.0337376974135958 0.00245524958396845 0.0025397071766113 3020223 1276954 1352 577 0 False 257 706 27 {X=0,Y=0,Width=0,Height=0} +95 310 706 0.0340809576887187 0.0342341048659751 0.0340886549172198 0.0342717631799802 0.00207380574936488 0.00215246928765066 3019686 1294518 1352 577 0 False 310 706 27 {X=0,Y=0,Width=0,Height=0} +96 364 707 0.0342874736522288 0.0343882289207653 0.0341649500267033 0.0343938353551537 0.00229216997516671 0.00230808385355703 3037984 1300346 1352 577 0 False 364 707 27 {X=0,Y=0,Width=0,Height=0} +97 417 707 0.0342470124144332 0.0343104793117943 0.0342565041580835 0.0343175402456703 0.00230371186590503 0.00227279565172732 3034399 1297406 1352 577 0 False 417 707 27 {X=0,Y=0,Width=0,Height=0} +98 471 707 0.0343509701442339 0.0344080894501318 0.034332799267567 0.0343480582894636 0.00203240801337818 0.00210216719977624 3043610 1301097 1352 577 0 False 471 707 27 {X=0,Y=0,Width=0,Height=0} +99 524 707 0.0343222466155896 0.0344110777854426 0.0342870222018769 0.0344396124208438 0.00185702125398408 0.00181275492461393 3041065 1301210 1352 577 0 False 524 707 27 {X=0,Y=0,Width=0,Height=0} +100 578 708 0.0341274796474895 0.0367300252801763 0.0340733958953231 0.036591134508278 0.0015687217376631 0.00201182362085978 3023808 2072515 1352 861 0 True 577 707 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv new file mode 100644 index 0000000..dda9bf1 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 241 197 0.242528311010801 0.945223390042487 0.240192263675898 1 0.0126783617804198 0.132409293569996 22935176 53334830 1443 861 74 True 240 198 32 {X=0,Y=0,Width=0,Height=0} +2 293 199 0.237121594365815 0.235371126783563 0.235782406347753 0.235355153734646 0.00858920728690988 0.00474649655953781 22423879 8900252 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} +3 346 199 0.234698624536116 0.2345903250132 0.234790569924468 0.234637979705501 0.00440658531595951 0.00392958304267804 22194746 8870727 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} +4 398 199 0.235044337081417 0.235431713298581 0.234973678187228 0.235553521019303 0.00464581224680154 0.004772127831605 22227439 8902543 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} +5 451 199 0.234891894905628 0.234959529874031 0.234973678187228 0.235049973296712 0.0056150972751992 0.0052994699783525 22213023 8884688 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} +6 504 199 0.234943403357228 0.234583978106345 0.235019455252918 0.234637979705501 0.00574510965208815 0.00582076840961916 22217894 8870487 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} +7 557 199 0.235024520444525 0.235523981456983 0.234790569924468 0.235553521019303 0.00540947472258748 0.00563480416580679 22225565 8906032 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} +8 609 200 0.236224960280808 0.235302209953299 0.23579766536965 0.235156786449989 0.00483324972102578 0.00490640934513719 22339087 8897646 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} +9 662 200 0.236315266619684 0.236184482897003 0.236362249179828 0.235919737544823 0.00400879001610042 0.0040244520784216 22347627 8931008 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} +10 714 198 0.241741482666179 0.939582833228195 0.240146486610208 1 0.0117256074557277 0.155073682696709 22860768 53016558 1443 861 77 True 715 200 32 {X=0,Y=0,Width=0,Height=0} +11 240 251 0.235093349948008 0.235424811037377 0.235172045471885 0.235416189822232 0.00498160736594447 0.00466909432501637 22232074 8902282 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} +12 293 251 0.235330673737632 0.235501873064772 0.235416189822232 0.235492484931716 0.00392314498391872 0.00383007516132521 22254517 8905196 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} +13 345 251 0.235290723228466 0.234980897793776 0.235278858625162 0.235019455252918 0.0036234246074907 0.00356603255179032 22250739 8885496 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} +14 398 251 0.235368202683378 0.235694105006136 0.235278858625162 0.235904478522927 0.00358183574089722 0.00356357120861217 22258066 8912465 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} +15 451 251 0.235176412745651 0.235547068330667 0.235156786449989 0.235477225909819 0.00462735287706604 0.00473925266824421 22239929 8906905 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} +16 504 251 0.235521490820186 0.235188124302584 0.235568780041199 0.235111009384298 0.00596474037882979 0.00633122401553441 22272562 8893332 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} +17 557 252 0.236134537622292 0.236798599026094 0.236102845807584 0.236697947661555 0.00494200734067209 0.00466204385263455 22330536 8954230 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} +18 609 252 0.236504275460558 0.23619685936537 0.236285954070344 0.236224917982757 0.00485555582272608 0.00431942072313597 22365501 8931476 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} +19 662 252 0.2368836149564 0.236649393824116 0.236820019836728 0.236530098420691 0.00382618166430698 0.00378911144442281 22401374 8948588 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} +20 715 252 0.25822391338404 0.241559017176184 0.238559548332952 0.23939879453727 0.0960482578215303 0.0132012338804383 23167182 9134239 1369 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} +21 240 303 0.234704694306434 0.235049100597019 0.234561684596017 0.235095750362402 0.00492587701771834 0.00489889732309081 22195320 8888075 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} +22 292 303 0.235110068252664 0.235405611644141 0.235111009384298 0.235416189822232 0.00385556497605084 0.00336123195594748 22233655 8901556 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} +23 345 303 0.2357047259771 0.235830061040054 0.235584039063096 0.235416189822232 0.00362491022096637 0.00391010352459021 22289890 8917606 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} +24 398 303 0.235445809032442 0.235539742942339 0.235400930800336 0.235584039063096 0.00396414113484663 0.00346501142714481 22265405 8906628 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} +25 451 303 0.235609798576152 0.235655494656103 0.235584039063096 0.23570611123827 0.00416280596085364 0.00398994481788368 22280913 8911005 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} +26 504 304 0.236341692327044 0.236321285185169 0.236270695048447 0.236499580376898 0.00510957334318108 0.00521423017073339 22350126 8936181 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} +27 556 304 0.237140914000607 0.236955526298078 0.237125200274662 0.236942092011902 0.00475795715626685 0.00469746483127845 22425706 8960164 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} +28 609 304 0.237700115383796 0.236861803640189 0.237293049515526 0.237079423208972 0.00593167252288942 0.00451866664835732 22478588 8956620 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} +29 662 304 0.237248245305009 0.237245579941341 0.237155718318456 0.237155718318456 0.00363514276341395 0.0036025733428924 22435856 8971132 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} +30 715 304 0.244428286588964 0.237718424502022 0.238284885938811 0.237613488975357 0.048301855108988 0.0035569171044449 23114851 8989012 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} +31 240 355 0.234934467893955 0.235321726691877 0.234851606012055 0.235446707866026 0.00505539022371852 0.00532019111804385 22217049 8898384 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} +32 292 355 0.235720059020585 0.235454456381478 0.235690852216373 0.235523002975509 0.0039958357685124 0.00357598286659729 22291340 8903403 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} +33 345 355 0.235889579034463 0.236075051644649 0.235828183413443 0.23611810482948 0.00386022198358592 0.00411043449933203 22307371 8926870 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} +34 398 356 0.235745670490463 0.235862588937685 0.235736629282063 0.23570611123827 0.00414333509913916 0.00385301306654852 22293762 8918836 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} +35 451 356 0.236416528153768 0.236303090718852 0.236453803311208 0.236194399938964 0.00399936463307211 0.0038142848359319 22357203 8935493 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} +36 503 356 0.237595501729171 0.237858823370739 0.2374151216907 0.237674525062943 0.00462804031075448 0.00474920959282461 22468695 8994321 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} +37 556 356 0.237582378758849 0.237900474946974 0.23768978408484 0.237933928435187 0.00406281499470982 0.00398276361993625 22467454 8995896 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} +38 609 356 0.23808273297859 0.23771178669527 0.237949187457084 0.237674525062943 0.0043401270194021 0.00372413192761026 22514771 8988761 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} +39 662 356 0.237462981935401 0.237519898544694 0.237399862668803 0.23768978408484 0.00368177851055869 0.00379220813471412 22456163 8981505 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.236817577124283 0.236763505920276 0.236835278858625 0.236743724727245 0.00344580664788807 0.00346924641716547 22395129 8952903 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 239 407 0.235180156123164 0.235128093141916 0.235202563515679 0.235172045471885 0.00555707702121704 0.00596520577377328 22240283 8891062 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} +42 292 407 0.240437338583367 0.236363386333972 0.236713206683452 0.236331731136034 0.0264918107342235 0.00379749545995685 22737439 8937773 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} +43 345 408 0.236389362230516 0.236095335301139 0.236270695048447 0.23593499656672 0.00558384731046085 0.00472415465100634 22354634 8927637 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} +44 398 408 0.236567849431205 0.236902080053272 0.236591134508278 0.236652170595865 0.00427191041923148 0.00437179466504526 22371513 8958143 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} +45 450 408 0.237608603550467 0.237674287053936 0.23750667582208 0.23736934462501 0.0045613059419243 0.00459845206597376 22469934 8987343 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} +46 503 408 0.238181657545356 0.238235961865139 0.238269626916915 0.238040741588464 0.00461278944471212 0.00463951692407629 22524126 9008582 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} +47 556 408 0.238539678823497 0.238295173217005 0.238574807354849 0.238193331807431 0.00413151561552598 0.00378007354062631 22557983 9010821 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} +48 609 408 0.238598134729973 0.23889358075163 0.238483253223468 0.238956282902266 0.00412439851579766 0.00389552864935742 22563511 9033449 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.237957625918258 0.23781547928601 0.237903410391394 0.237613488975357 0.00399265450835653 0.00402236156813059 22502940 8992682 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 714 409 0.236999289551361 0.236816105910835 0.236865796902419 0.236804760814832 0.00478875987863682 0.00399491741788814 22412313 8954892 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} +51 239 459 0.235502033716728 0.235574888939047 0.235629816128786 0.235324635690852 0.00597373819089275 0.00600854778823148 22270722 8907957 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} +52 292 460 0.236023484089403 0.236187259668752 0.23598077363241 0.236057068741894 0.00518358676405842 0.00490617740389518 22320034 8931113 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} +53 345 460 0.236335421640984 0.236435053490541 0.236240177004654 0.236453803311208 0.00411497093983544 0.00436355519642622 22349533 8940483 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} +54 398 460 0.237569795088678 0.237313015826673 0.2374151216907 0.23773556115053 0.00488521866076974 0.00521862674527248 22466264 8973682 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} +55 450 460 0.238192253207131 0.238594403429763 0.238178072785534 0.238895246814679 0.00554543512977852 0.00557261490250685 22525128 9022136 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} +56 503 460 0.238688367047259 0.238603579999257 0.238712138551919 0.238605325398642 0.00572180509471925 0.00543619796600208 22572044 9022483 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} +57 556 460 0.239058950846545 0.238686512915493 0.239002059967956 0.238727397573816 0.00503138805993083 0.00481077797048976 22607089 9025619 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.239017054627034 0.238814112188719 0.238941023880369 0.238925764858473 0.00477751689730933 0.00504611640708345 22603127 9030444 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 661 461 0.238293705082444 0.237708719023624 0.238300144960708 0.237888151369497 0.00482161636659505 0.00445503396545816 22534722 8988645 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} +60 714 461 0.23671250876561 0.236415325188401 0.236469062333104 0.236346990157931 0.00486981648319573 0.0050873062568854 22385193 8939737 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} +61 239 512 0.235712212732126 0.236037763566877 0.235538261997406 0.23579766536965 0.00525566562337486 0.0052506767403465 22290598 8925460 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} +62 292 512 0.236067918191974 0.236193157003038 0.23598077363241 0.235996032654307 0.00406208739461233 0.00374829227500883 22324236 8931336 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} +63 345 512 0.237478727384884 0.237470260444001 0.237079423208972 0.23750667582208 0.00625211763929945 0.00381497109443259 22457652 8979628 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} +64 397 512 0.237871887768889 0.238005436919084 0.237842374303807 0.237857633325704 0.00409388707878102 0.00413183310383355 22494832 8999865 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} +65 450 512 0.238502266197391 0.238948640168595 0.238529030289158 0.238879987792782 0.00555762883297214 0.00578301778503109 22554445 9035531 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} +66 503 512 0.239843421074824 0.238447366754294 0.23935301747158 0.238605325398642 0.00731812233979112 0.00564636096765139 22681274 9016576 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} +67 556 513 0.244091308591194 0.239784104674246 0.240039673456931 0.239963378347448 0.0217297491217953 0.00482608052641254 23082984 9067123 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} +68 609 513 0.23927835083706 0.239626860056919 0.239246204318303 0.239414053559167 0.00462275261920818 0.00517391364395457 22627837 9061177 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} +69 661 513 0.237765846555043 0.237607776759187 0.237582970931563 0.237277790493629 0.00436354798564373 0.0043927124304434 22484804 8984828 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} +70 714 513 0.236898302954609 0.237072150711535 0.236881055924315 0.237033646143282 0.00438487573336984 0.00372497471261861 22402763 8964574 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} +71 239 564 0.236006226484597 0.236072592218243 0.236194399938964 0.236194399938964 0.00511779022047534 0.00514279434137698 22318402 8926777 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} +72 292 564 0.235842099472221 0.236206961525447 0.2360265506981 0.236209658960861 0.0038312410447375 0.00349317203090452 22302881 8931858 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} +73 344 564 0.237409210538073 0.237290325634668 0.237277790493629 0.237094682230869 0.00385645546820507 0.00362148263662042 22451078 8972824 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} +74 397 564 0.238195785094389 0.238113281444725 0.238178072785534 0.237888151369497 0.00372010802476104 0.00374896237645837 22525462 9003943 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} +75 450 564 0.238825846287508 0.238732924671868 0.238879987792782 0.238956282902266 0.00483900931796191 0.00497480249070287 22585045 9027374 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} +76 503 565 0.239290839336616 0.239614959606566 0.239322499427787 0.23953612573434 0.00576533139247451 0.00650887272104724 22629018 9060727 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} +77 556 565 0.239980244695282 0.239123127216211 0.239291981383993 0.239246204318303 0.00762929890515471 0.00484864194645606 22694213 9042129 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} +78 608 565 0.238289316659653 0.238098445549952 0.238269626916915 0.238254367895018 0.0042602023312944 0.00442353018189676 22534307 9003382 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} +79 661 565 0.237449277366879 0.23747253475229 0.237476157778286 0.237476157778286 0.00366673957606182 0.00349943087751905 22454867 8979714 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} +80 714 565 0.236798077722774 0.236357885681365 0.236713206683452 0.236346990157931 0.00399116646255305 0.00399401163707343 22393285 8937565 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} +81 239 619 0.245213296117393 0.939805462534892 0.243961242084382 1 0.00839066155743343 0.132383233777995 23189087 53029120 1443 861 74 True 239 616 32 {X=0,Y=0,Width=0,Height=0} +82 292 616 0.238094132303333 0.237076646437223 0.237582970931563 0.237079423208972 0.00445895291673163 0.00371302913871231 22515849 8964744 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} +83 344 616 0.23717012080482 0.237179598555497 0.237262531471733 0.237338826581216 0.00374920067180458 0.00376747236671915 22428468 8968637 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} +84 397 616 0.237945253738341 0.238448398126658 0.237949187457084 0.238529030289158 0.00408697754683283 0.00412216404291301 22501770 9016615 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} +85 450 617 0.23810481256121 0.23774648311941 0.238086518654154 0.237872892347601 0.00464170688493738 0.00471636671431202 22516859 8990073 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} +86 503 617 0.23884131679966 0.238975799640844 0.238757915617609 0.239063096055543 0.00527723503332947 0.00505208690519797 22586508 9036558 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} +87 555 617 0.238920995753223 0.238967707334605 0.238971541924163 0.238788433661402 0.00417199150256104 0.00412611562131139 22594043 9036252 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} +88 608 617 0.237866029488826 0.237844331266754 0.23773556115053 0.237964446478981 0.00404556084005357 0.00376331372934834 22494278 8993773 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} +89 661 617 0.237051020067729 0.236770831308604 0.237018387121386 0.236484321355001 0.00357457274785758 0.00353278946186168 22417205 8953180 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.23710961344287 0.236848448690349 0.237170977340352 0.237140459296559 0.00393825696428634 0.00383067511078519 22422746 8956115 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 673 0.244835500500412 0.942124568026572 0.243884946974899 1 0.00879764025058778 0.128898467119157 23153360 53159977 1443 861 74 True 239 668 32 {X=0,Y=0,Width=0,Height=0} +92 278 666 0.266182630304235 0.239661024996706 0.238330663004501 0.238910505836576 0.0987891980434576 0.0052318530264918 24788320 6612304 1421 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} +93 344 668 0.236571592808718 0.236560828028046 0.236377508201724 0.236438544289311 0.00381816075206057 0.0037469809240289 22371867 8945239 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} +94 397 669 0.237054763445242 0.237164260197265 0.237018387121386 0.237186236362249 0.00405016281668433 0.00413503338856287 22417559 8968057 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} +95 450 669 0.237411959911388 0.237843352785281 0.237323567559319 0.23782711528191 0.00442831917798891 0.00445655194849149 22451338 8993736 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} +96 503 669 0.238311004985301 0.238340156919338 0.238269626916915 0.238391699092088 0.00458200721359577 0.0044369077851235 22536358 9012522 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} +97 555 669 0.237448452554884 0.237765338721857 0.23736934462501 0.237933928435187 0.00376523604066156 0.00341086278785264 22454789 8990786 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} +98 608 669 0.237317455490951 0.237151883728898 0.237277790493629 0.237033646143282 0.00357141484274651 0.00358941386022635 22442401 8967589 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} +99 661 669 0.237971256465191 0.236748484907386 0.23778133821622 0.236758983749142 0.00452907408325805 0.00369343330349421 22504229 8952335 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} +100 714 673 0.240483644374695 0.941331347002121 0.240222781719692 1 0.00485816669719674 0.133154588289778 22741818 53115219 1443 861 76 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv new file mode 100644 index 0000000..ddf4378 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 241 197 0.0244442551606662 0.141843933169737 0.0243686579690242 0.157717250324254 0.00261092596392076 0.0399748670220895 2311620 8003634 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} +2 293 199 0.0238228227699503 0.0238476298071373 0.0236820019836728 0.0238498512245365 0.00197736253658056 0.00182364425754966 2252853 901767 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} +3 346 199 0.0236820548562366 0.0235729409675516 0.0236057068741894 0.0235446707866026 0.00173386976522604 0.00163216798845499 2239541 891380 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} +4 398 199 0.0237794989912179 0.023824992506022 0.0236514839398795 0.0238803692683299 0.00194079760759756 0.00183084423183313 2248756 900911 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} +5 451 199 0.0237050544214655 0.0235735492127918 0.0236362249179828 0.0236209658960861 0.00229921178134761 0.00218683852598397 2241716 891403 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} +6 504 199 0.0237765169786227 0.0235777011476927 0.0236362249179828 0.0236209658960861 0.00244403003612614 0.00231837274199074 2248474 891560 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} +7 557 199 0.0236241488244235 0.0239797512514976 0.0236057068741894 0.0239566643778134 0.00218690177209081 0.00208668648211671 2234065 906763 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} +8 609 200 0.0236754352112558 0.0237790567676605 0.0236209658960861 0.0237277790493629 0.00186016049627788 0.00203395416235922 2238915 899174 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} +9 662 200 0.023801102720764 0.0238338781756186 0.0237582970931563 0.023773556115053 0.00154638315115928 0.00153064438789891 2250799 901247 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} +10 714 198 0.024451382382259 0.15366668004711 0.0243533989471275 0.171801327534905 0.00210313049102417 0.0450229230466257 2312294 8670740 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} +11 240 251 0.0238016314464014 0.0237503634595879 0.0237430380712596 0.0237430380712596 0.00202245777520412 0.00198164263040511 2250849 898089 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} +12 293 251 0.0236738067362924 0.0238691563995531 0.0236209658960861 0.0238803692683299 0.00152763683899497 0.00148327388499458 2238761 902581 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} +13 345 251 0.0236222771356669 0.0236396363804172 0.0236057068741894 0.0236514839398795 0.00139969131049758 0.00147880705766304 2233888 893902 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} +14 398 251 0.0238269679789478 0.0238092839115564 0.0238193331807431 0.0238345922026398 0.00145774740004575 0.00133649139194499 2253245 900317 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} +15 451 251 0.0238315784665064 0.023930430496147 0.0237888151369497 0.0238040741588464 0.00190838356110239 0.00179424474312615 2253681 904898 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} +16 504 251 0.0237972853216616 0.0235369751620412 0.023773556115053 0.0233920805676356 0.00219250493062997 0.0025473883411987 2250438 890020 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} +17 557 252 0.0237930660910748 0.0238077500757331 0.023773556115053 0.0238498512245365 0.00202402600961975 0.00184268051783458 2250039 900259 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} +18 609 252 0.0236989740766349 0.0238096277023443 0.0236820019836728 0.0237430380712596 0.00171448945534642 0.00165857812291598 2241141 900330 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} +19 662 252 0.0238554662908062 0.0238767462423336 0.0238651102464332 0.0238956282902266 0.00146950875486543 0.00139667878380764 2255940 902868 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} +20 715 252 0.046300292580906 0.0243142067972992 0.0243991760128176 0.0240634775310903 0.100525522856814 0.00197549242735598 4378480 919410 1443 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} +21 240 303 0.0236232817143781 0.0236048870653873 0.0236057068741894 0.0236209658960861 0.00199142718200192 0.00197728466500817 2233983 892588 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} +22 292 303 0.0235788581863198 0.0237586937748348 0.0235904478522927 0.0236362249179828 0.00161042522664715 0.00143438949968013 2229782 898404 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} +23 345 303 0.0237781031555351 0.023668118124928 0.0237277790493629 0.0236057068741894 0.00153658386172548 0.00149785735570333 2248624 894979 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} +24 398 303 0.0238815218902195 0.0236711857965745 0.0239108873121233 0.0236209658960861 0.00158041844571407 0.00149582867157986 2258404 895095 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} +25 451 303 0.0238144794793914 0.0238807659500083 0.0237430380712596 0.0238040741588464 0.00169550236968414 0.00163726055063082 2252064 903020 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} +26 504 304 0.0238214375087802 0.0239299015872424 0.0238498512245365 0.0239566643778134 0.0020321390085171 0.00209329948999691 2252722 904878 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} +27 556 304 0.0239866854195076 0.023828245295785 0.0239414053559167 0.0238193331807431 0.00185034149467623 0.00193665006794986 2268349 901034 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} +28 609 304 0.0239605346494795 0.0238398019553498 0.0238803692683299 0.0236972610055695 0.00179647069254192 0.0018818894929566 2265876 901471 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} +29 662 304 0.0239040984749385 0.0237618143373717 0.0238956282902266 0.0237582970931563 0.00143921332811214 0.00131100286198371 2260539 898522 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} +30 715 304 0.0247207575200251 0.0241002366999575 0.024124513618677 0.0241092545967803 0.00540505698141673 0.00147746243617662 2337768 911319 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} +31 240 355 0.0237402992724577 0.0235267407747378 0.0237277790493629 0.0234988937209125 0.00202773745096525 0.00194630761591694 2245049 889633 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} +32 292 355 0.0237715046595797 0.0239446052547893 0.0237582970931563 0.0239871824216068 0.00156363223623393 0.00155481214522832 2248000 905434 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} +33 345 355 0.0237413144256816 0.0236583333101936 0.0237125200274662 0.0236209658960861 0.00159123529942404 0.00146364672699805 2245145 894609 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} +34 398 356 0.0239502244995493 0.0237464230882488 0.02392614633402 0.0236667429617761 0.00166278749868515 0.00162620377380177 2264901 897940 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} +35 451 356 0.0238291146050359 0.0240181235925238 0.0238040741588464 0.0240024414435035 0.00169337389984899 0.00169258153700402 2253448 908214 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} +36 503 356 0.0240043237067728 0.0240468697914869 0.0239566643778134 0.0240329594872969 0.00177373575477515 0.00177234130278414 2270017 909301 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} +37 556 356 0.0240503334117433 0.0239725316449503 0.0240024414435035 0.02392614633402 0.00164223927973576 0.00163741378136103 2274368 906490 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} +38 609 356 0.0238622868515292 0.0241012680723214 0.0238803692683299 0.0240024414435035 0.00159493905946896 0.00169985041182442 2256585 911358 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} +39 662 356 0.0238755155669781 0.0239099881669855 0.0238345922026398 0.0239108873121233 0.00148531823788974 0.0014391326114988 2257836 904125 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.0237899466098139 0.024217310685983 0.023773556115053 0.0241702906843671 0.00144702883974268 0.00132565688800814 2249744 915746 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 239 407 0.0237636477966073 0.0241395081861215 0.0237277790493629 0.0240329594872969 0.0021589121384108 0.00241522385217392 2247257 912804 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} +42 292 407 0.0243221406874417 0.0237993668695958 0.0239871824216068 0.0237888151369497 0.0032498879171854 0.00161222602283299 2300072 899942 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} +43 345 408 0.0238291780521124 0.0239849874496528 0.0237888151369497 0.0238651102464332 0.00177694537824443 0.00182575416797481 2253454 906961 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} +44 398 408 0.0238311449114837 0.0238807395045631 0.0238498512245365 0.0239108873121233 0.00161555999489089 0.00171486842803423 2253640 903019 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} +45 450 408 0.0239883033199582 0.0238796287958635 0.0239414053559167 0.02392614633402 0.00178846342828253 0.0017434084762582 2268502 902977 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} +46 503 408 0.0240604109223931 0.0238575468490979 0.0241397726405737 0.0238651102464332 0.00181625865118868 0.00174587082805582 2275321 902142 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} +47 556 408 0.0240887083185092 0.0240024943343939 0.0240634775310903 0.0239566643778134 0.00170206876222019 0.00144604774569259 2277997 907623 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} +48 609 408 0.024051063053123 0.02396322284823 0.0240329594872969 0.0239108873121233 0.00160833225861749 0.00162590570182588 2274437 906138 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.0240794979179049 0.0241250954184721 0.0240634775310903 0.0241702906843671 0.00153754684552909 0.0015370987281016 2277126 912259 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 714 409 0.0239159313547045 0.0239161499557237 0.0239566643778134 0.0239414053559167 0.00169793397927149 0.00153101325215318 2261658 904358 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} +51 239 459 0.0238360409108864 0.0237041368213289 0.0237430380712596 0.0235446707866026 0.00237818166027655 0.00250436866651959 2254103 896341 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} +52 292 460 0.0239767771010618 0.0237376167549878 0.0239108873121233 0.0237582970931563 0.00193512219119003 0.00182363456502805 2267412 897607 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} +53 345 460 0.023707856667344 0.0238366020564772 0.0236972610055695 0.0238193331807431 0.00171874264996004 0.00170510717957616 2241981 901350 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} +54 398 460 0.0237519629600197 0.0241085670152044 0.0237125200274662 0.0241550316624704 0.00193153385904066 0.00203316595544912 2246152 911634 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} +55 450 460 0.0241387257638116 0.0239854370222217 0.0241397726405737 0.0238956282902266 0.00215425671875646 0.00224379224094691 2282727 906978 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} +56 503 460 0.0241106927305142 0.0240468962369321 0.0241550316624704 0.0240024414435035 0.00204814438966274 0.00206733820899988 2280076 909302 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} +57 556 460 0.0242444285932498 0.0242058598081991 0.0241855497062638 0.0241702906843671 0.00194569076182067 0.00184947777351008 2292723 915313 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.024126914033071 0.0240185202742022 0.0240939955748837 0.0239566643778134 0.00193869970550562 0.00198871399508021 2281610 908229 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 661 461 0.0239452862020955 0.0240472135822749 0.0239871824216068 0.0240634775310903 0.00181583811940886 0.00177593675227069 2264434 909314 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} +60 714 461 0.023906773826664 0.0239966498909985 0.0238956282902266 0.0240177004654002 0.00191865183447623 0.00210944048874135 2260792 907402 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} +61 239 512 0.0237692840119025 0.0238561716859461 0.0236972610055695 0.0236514839398795 0.00207996016288347 0.00201861224427327 2247790 902090 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} +62 292 512 0.0238287656461152 0.0238759528789768 0.0238040741588464 0.0238193331807431 0.0015753135894221 0.00145818920407326 2253415 902838 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} +63 345 512 0.0239246976257734 0.0240482185091936 0.0238193331807431 0.0241092545967803 0.00160952283898864 0.00155898436657882 2262487 909352 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} +64 397 512 0.0239638550464827 0.0239265959065889 0.0239414053559167 0.0240177004654002 0.00161711668174516 0.00155310174610777 2266190 904753 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} +65 450 512 0.0240915740114641 0.0240857181505272 0.0240024414435035 0.0238193331807431 0.00222016914991034 0.0024166265173497 2278268 910770 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} +66 503 512 0.0242767443042105 0.0241961807752456 0.0242160677500572 0.0240939955748837 0.00228775549957581 0.00241345368472939 2295779 914947 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} +67 556 513 0.0246566231002029 0.0240740821546268 0.0243381399252308 0.0239719233997101 0.00280567382611019 0.00190551351335941 2331703 910330 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} +68 609 513 0.0241609639641226 0.0241781185361547 0.0241092545967803 0.0241550316624704 0.00190114847834761 0.00207980284347675 2284830 914264 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} +69 661 513 0.0238986948989238 0.0238797874685349 0.0238956282902266 0.0238040741588464 0.00171140756734521 0.00165672820676379 2260028 902983 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} +70 714 513 0.0240229982962874 0.0241117140231866 0.0239719233997101 0.0240939955748837 0.00164625829792812 0.00160399118635386 2271783 911753 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} +71 239 564 0.0238303623975402 0.0236585184283102 0.0238498512245365 0.0236514839398795 0.00198633295739587 0.00196210461058392 2253566 894616 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} +72 292 564 0.0238667281468838 0.0238536593686494 0.0238345922026398 0.0238651102464332 0.00152516998158696 0.00145626897751878 2257005 901995 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} +73 344 564 0.0239143451777922 0.0241536300538733 0.0239566643778134 0.0241397726405737 0.00140078256306143 0.00154262014355658 2261508 913338 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} +74 397 564 0.0241003085589948 0.0240317165513711 0.0241092545967803 0.0239871824216068 0.00153875572704279 0.00148697393978016 2279094 908728 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} +75 450 564 0.0241862053260543 0.0240266390258873 0.0241550316624704 0.02392614633402 0.00197785048908506 0.00194941704715236 2287217 908536 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} +76 503 565 0.0240661317337902 0.0242867564251523 0.0240329594872969 0.0242313267719539 0.00229252988632644 0.00249057242922896 2275862 918372 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} +77 556 565 0.0241268188624563 0.0240180178107429 0.0240939955748837 0.0240024414435035 0.00190637196542878 0.00176454163030737 2281601 908210 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} +78 608 565 0.0240394839616629 0.024088124686043 0.0240939955748837 0.0240939955748837 0.00163194807477317 0.0016686192444975 2273342 910861 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} +79 661 565 0.0239061076323608 0.0240017803073728 0.0238956282902266 0.0239566643778134 0.00144713428723821 0.00139828822920365 2260729 907596 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} +80 714 565 0.0239716167388404 0.023948624962464 0.0239108873121233 0.0239108873121233 0.00160961448730656 0.00156546832926789 2266924 905586 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} +81 239 619 0.0246321219541636 0.145841938686202 0.0245822842755779 0.161135271229114 0.00190577086842967 0.0429131701038328 2329386 8229224 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} +82 292 616 0.0240685955952607 0.0237129431545899 0.0241092545967803 0.0237277790493629 0.00147517990953633 0.00141860903526297 2276095 896674 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} +83 344 616 0.0239090367723922 0.0238495074337485 0.0238498512245365 0.0238193331807431 0.00142950111681724 0.00136346344383234 2261006 901838 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} +84 397 616 0.0237847545240541 0.0239365129485495 0.023773556115053 0.0238651102464332 0.00167071634796841 0.00152043347945001 2249253 905128 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} +85 450 617 0.0240140311094763 0.024031822333152 0.0240329594872969 0.0240177004654002 0.00182896895295875 0.00196803932928335 2270935 908732 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} +86 503 617 0.0239974608479987 0.0241499541369866 0.0240329594872969 0.0240482185091936 0.00202558192811351 0.00200422939235236 2269368 913199 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} +87 555 617 0.0240883699341012 0.0240446219286425 0.0240024414435035 0.0239719233997101 0.00175492033192448 0.0016632509697796 2277965 909216 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} +88 608 617 0.0240602417301891 0.0239089039037312 0.0240329594872969 0.0238193331807431 0.00160605065604226 0.00153917996644483 2275305 904084 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} +89 661 617 0.0239235661529093 0.0239062064683179 0.0239414053559167 0.0239108873121233 0.00139010854362294 0.00143911812980367 2262380 903982 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.0240160931394623 0.0239704689002225 0.0240024414435035 0.0238651102464332 0.00150221349745286 0.00144314818058167 2271130 906412 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 673 0.0246923543787815 0.144100053105295 0.0246433203631647 0.159288929579614 0.00208631723191755 0.0413615196625489 2335082 8130937 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} +92 278 666 0.0286537889192959 0.0243706514279418 0.0243991760128176 0.0243533989471275 0.0170535649227122 0.00173071904398345 2709703 672392 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} +93 344 668 0.0238960935687875 0.0237683728077883 0.0238803692683299 0.0236514839398795 0.00151401543222313 0.0015291604157336 2259782 898770 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} +94 397 669 0.0238945496899262 0.0237950033711331 0.02392614633402 0.0237277790493629 0.00163450095467606 0.00156484275866686 2259636 899777 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} +95 450 669 0.0239175704041806 0.0239200638816175 0.0239414053559167 0.0238803692683299 0.00178252040357178 0.00160112493246111 2261813 904506 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} +96 503 669 0.0239833755970172 0.0241185105026102 0.02392614633402 0.0240024414435035 0.00174599698492237 0.00171661827150871 2268036 912010 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} +97 555 669 0.0240455431574681 0.0239322287864225 0.0240329594872969 0.0238498512245365 0.00149909791292468 0.00139539044093913 2273915 904966 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} +98 608 669 0.0238879511939709 0.0239323345682034 0.0239566643778134 0.0240329594872969 0.00146681826276662 0.0014328062341428 2259012 904970 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} +99 661 669 0.0240384688084391 0.0237180206800737 0.0240177004654002 0.0238040741588464 0.0014955617920589 0.00148177935987558 2273246 896866 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} +100 714 673 0.0241661666243951 0.148776172390439 0.0241702906843671 0.166369115739681 0.00152587377540353 0.0415510711302606 2285322 8394790 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv new file mode 100644 index 0000000..ca30782 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 241 197 0.319160472513643 0.339084106009618 0.319096665903716 0.331074998092622 0.00688221630417829 0.0225539369345099 30182050 19133036 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} +2 293 199 0.318735514569802 0.317648698441134 0.318074311436637 0.317540245670253 0.00616251693412179 0.00523742946781861 30141863 12011471 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} +3 346 199 0.318225558692485 0.317400613719447 0.318333714808881 0.317204547188525 0.00467145767479735 0.00498506402369371 30093638 12002090 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} +4 398 199 0.318939560367805 0.317874119416259 0.318867780575265 0.317799649042496 0.00485029343151101 0.00462310089080331 30161159 12019995 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} +5 451 199 0.318417010245804 0.318439285026232 0.318394750896468 0.318471046005951 0.00622228603407889 0.00602747734667416 30111743 12041366 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} +6 504 199 0.318789063902362 0.318705960895914 0.318898298619059 0.318593118181125 0.00674231527879818 0.00676440644435088 30146927 12051450 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} +7 557 199 0.318606262300471 0.31917655759375 0.318547341115434 0.319096665903716 0.00654976311666541 0.00632208159985185 30129640 12069245 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} +8 609 200 0.318805168885279 0.318668196800128 0.318822003509575 0.318532082093538 0.00629733922663727 0.00636879798766356 30148450 12050022 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} +9 662 200 0.318754220882854 0.318674411479756 0.318745708400092 0.318425268940261 0.00502966073518121 0.00470588612475364 30143632 12050257 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} +10 714 198 0.318583241586217 0.338011065360629 0.318562600137331 0.330693522545205 0.00542566730083147 0.0211173331152013 30127463 19072489 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} +11 240 251 0.318243493066107 0.318879839698289 0.318211642633707 0.318638895246815 0.00532191363899372 0.00528100923044178 30095334 12058025 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} +12 293 251 0.318191931741943 0.318900652263684 0.317952239261463 0.318822003509575 0.00454702646564635 0.00457853235369779 30090458 12058812 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} +13 345 251 0.318342692570205 0.317831727367558 0.318226901655604 0.31773861295491 0.00406411566085792 0.0039719766883507 30104715 12018392 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} +14 398 251 0.318312512910819 0.319008232334872 0.318272678721294 0.318730449378195 0.00413339508254634 0.00388653091429887 30101861 12062880 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} +15 451 251 0.31875412571224 0.319198401531509 0.318684672312505 0.319050888838025 0.00468495346223753 0.00437693619504498 30143623 12070071 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} +16 504 251 0.31916830822759 0.319050968174361 0.319295033188373 0.318745708400092 0.00593560278508935 0.00646123001253853 30182791 12064496 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} +17 557 252 0.319025161048507 0.31901206692443 0.318974593728542 0.318913557640955 0.00619633577886662 0.00581512001375968 30169254 12063025 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} +18 609 252 0.319609159664092 0.319384868365813 0.31944762340734 0.319340810254063 0.00588568078045015 0.00545301807966298 30224481 12077122 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} +19 662 252 0.319338748224077 0.320115952699148 0.319340810254063 0.320180056458381 0.00423616104303275 0.0044042947712927 30198909 12104767 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} +20 715 252 0.336830806017704 0.320785128245203 0.319935912108034 0.320744640268559 0.0827972033902745 0.00463642029895688 31477819 12130071 1426 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} +21 240 303 0.318509939063842 0.318804866861067 0.318501564049744 0.318699931334401 0.00513988890678437 0.00548558416604103 30120531 12055190 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} +22 292 303 0.318558328034181 0.318883568506066 0.318471046005951 0.319081406881819 0.00480257646904739 0.00426283446763578 30125107 12058166 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} +23 345 303 0.318847445787249 0.318713894529482 0.318944075684749 0.318883039597162 0.00433423648375839 0.00434653184677497 30152448 12051750 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} +24 398 303 0.319154127805993 0.318596529643559 0.319127183947509 0.318776226443885 0.00429909005577881 0.00436874899977546 30181450 12047312 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} +25 451 303 0.319217416264796 0.319381245339817 0.319340810254063 0.319142442969406 0.00428589598528788 0.00417684801282486 30187435 12076985 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} +26 504 304 0.319707883315116 0.319538727966151 0.319752803845273 0.319615472648203 0.00500988758083787 0.0049457653825303 30233817 12082940 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} +27 556 304 0.319707143099224 0.32039780825439 0.320012207217517 0.320195315480278 0.00549148778037645 0.00493047180814708 30233747 12115425 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} +28 609 304 0.320317874083038 0.320304720287187 0.320180056458381 0.320302128633555 0.00563888153875529 0.00575121672137289 30291502 12111905 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} +29 662 304 0.3198208402603 0.31993078169166 0.319798580910964 0.319874876020447 0.00444771454674674 0.00424652190063091 30244499 12097765 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} +30 715 304 0.320052802771961 0.319822566929786 0.319462882429236 0.319691767757687 0.00743924762282662 0.00430997233370852 30266435 12093673 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} +31 240 355 0.318451610051519 0.318910754423761 0.318440527962158 0.318898298619059 0.00659788320668229 0.00641653839572672 30115015 12059194 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} +32 292 355 0.318731686596186 0.319311878936983 0.318730449378195 0.319233997100786 0.00563689500553502 0.00464562909580409 30141501 12074362 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} +33 345 355 0.319124614340911 0.319500355625125 0.319188220035096 0.319295033188373 0.00539804688359906 0.00518480682946438 30178659 12081489 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} +34 398 356 0.319563054788507 0.31978829363277 0.319554436560616 0.319600213626307 0.0046404722182079 0.00468329797916497 30220121 12092377 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} +35 451 356 0.319938344245966 0.319684019242235 0.319844357976654 0.319645990691997 0.00428399671887163 0.00407958018154701 30255611 12088434 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} +36 503 356 0.320184286263481 0.32029112732834 0.320195315480278 0.320195315480278 0.00462591286808938 0.00463191810755495 30278869 12111391 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} +37 556 356 0.320318043275242 0.319872786830274 0.320302128633555 0.319935912108034 0.00532858677185653 0.00506269266191116 30291518 12095572 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} +38 609 356 0.32026868144973 0.320703729164791 0.320225833524071 0.320469977874418 0.00496407220430897 0.00497315176891188 30286850 12126993 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} +39 662 356 0.320041805278702 0.319803050191207 0.319935912108034 0.319935912108034 0.00451669005413617 0.00442913803746922 30265395 12092935 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.319663015657522 0.319785358188349 0.31990539406424 0.319661249713893 0.0040026953810392 0.00409756800501775 30229574 12092266 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 239 407 0.318878809792062 0.319047900502715 0.318760967421988 0.318791485465782 0.0068228447677734 0.00721733368671097 30155414 12064380 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} +42 292 407 0.322709945186484 0.319802230382405 0.320042725261311 0.319569695582513 0.0201061499206064 0.00539864026953669 30517713 12092904 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} +43 345 408 0.320083648625649 0.320056820683617 0.31985961699855 0.31972228580148 0.00571046151143744 0.00518517936793331 30269352 12102531 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} +44 398 408 0.32056500044598 0.320028471166333 0.320683604180972 0.320012207217517 0.00496995853285948 0.00580840878489047 30314872 12101459 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} +45 450 408 0.320574126250482 0.320201318596344 0.320637827115282 0.320119020370794 0.00508133182142557 0.00495176340847254 30315735 12107995 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} +46 503 408 0.320062689941381 0.320231519294795 0.319981689173724 0.320057984283207 0.00508996350934787 0.00492516973805643 30267370 12109137 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} +47 556 408 0.320745898635576 0.320795468414287 0.320653086137179 0.320790417334249 0.00530843139718801 0.00520624553435715 30331979 12130462 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} +48 609 408 0.320737523621479 0.320247227889261 0.320515754940108 0.320271610589761 0.00545364813393482 0.00530178596690819 30331187 12109731 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.32030384170462 0.320499200091395 0.320164797436484 0.320454718852522 0.00439996782956759 0.00427977674304724 30290175 12119259 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 714 409 0.319337648474751 0.319709882887668 0.319264515144579 0.319783321889067 0.00393526204466557 0.00405928226058772 30198805 12089412 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} +51 239 459 0.318709786780284 0.318658623548955 0.318730449378195 0.318028534370947 0.00612900452211988 0.0058967445451585 30139430 12049660 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} +52 292 460 0.31924839958715 0.319732440852448 0.319020370794232 0.319203479056992 0.00505364483021408 0.00483693097000443 30190365 12090265 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} +53 345 460 0.320299971432954 0.320484549314739 0.320286869611658 0.320149538414588 0.00446795642062882 0.00479326211311168 30289809 12118705 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} +54 398 460 0.320030437677497 0.320768467614709 0.319966430151827 0.320698863202869 0.0048533856106794 0.0043635267253769 30264320 12129441 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} +55 450 460 0.320228667493488 0.319924831466483 0.320347905699245 0.31981383993286 0.00638153971466751 0.00638538400834077 30283066 12097540 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} +56 503 460 0.320560707193804 0.320099344959544 0.320546272983902 0.320164797436484 0.00607132355478928 0.00650750996256348 30314466 12104139 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} +57 556 460 0.320772208023295 0.320449509099812 0.320531013962005 0.320698863202869 0.00563674651860402 0.00532319460359496 30334467 12117380 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.320586064875376 0.321008063348477 0.320637827115282 0.320866712443732 0.00565001306187724 0.00549669888285602 30316864 12138501 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 661 461 0.320428356592239 0.320300092334272 0.320210574502174 0.320057984283207 0.00509648393220321 0.00494833297586662 30301950 12111730 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} +60 714 461 0.319853769293 0.319358370029694 0.319798580910964 0.319172961013199 0.0048704443675552 0.00490063295337976 30247613 12076120 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} +61 239 512 0.318836892423526 0.318892771521006 0.318715190356298 0.318623636224918 0.00528463692496156 0.00488177787868349 30151450 12058514 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} +62 292 512 0.318952556443973 0.319464574937731 0.319050888838025 0.319295033188373 0.00447457892358236 0.00429515737215149 30162388 12080136 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} +63 345 512 0.320194532966334 0.319831505490273 0.319981689173724 0.319890135042344 0.00495640810473912 0.00405082666311148 30279838 12094011 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} +64 397 512 0.320291786760086 0.320061660200094 0.320393682764935 0.319890135042344 0.00411315051782054 0.00387688210151682 30289035 12102714 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} +65 450 512 0.320080698336592 0.319892065559845 0.320088502327001 0.319966430151827 0.00574015681007587 0.00519304060708901 30269073 12096301 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} +66 503 512 0.320263225001151 0.319663735585745 0.320134279392691 0.319615472648203 0.00695983910027624 0.00661257275849365 30286334 12087667 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} +67 556 513 0.323785806688073 0.320721474058539 0.321492332341497 0.320820935378042 0.0157676096707324 0.00530568937522855 30619454 12127664 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} +68 609 513 0.320537834522728 0.321116807019256 0.320347905699245 0.320912489509422 0.00586791355788833 0.00586711878316242 30312303 12142613 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} +69 661 513 0.320561373388107 0.320821332059721 0.320515754940108 0.32111085679408 0.00565601288716165 0.00531846737998582 30314529 12131440 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} +70 714 513 0.320371782949032 0.320711451234797 0.320485236896315 0.320485236896315 0.00547753077524749 0.00507355228663144 30296600 12127285 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} +71 239 564 0.318607499518463 0.319331898139021 0.318623636224918 0.31967650873579 0.00539953848407875 0.00576706508622611 30129757 12075119 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} +72 292 564 0.318891805868231 0.318565244681854 0.318944075684749 0.318394750896468 0.00403152516490105 0.00377850010687264 30156643 12046129 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} +73 344 564 0.319631027756457 0.319098464193991 0.319508659494926 0.319035629816129 0.00437739716788594 0.00432958994909009 30226549 12066292 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} +74 397 564 0.319617376060498 0.32014342951674 0.319523918516823 0.320286869611658 0.00454780108795494 0.00437293819573632 30225258 12105806 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} +75 450 564 0.320213017214619 0.320165114781827 0.320057984283207 0.320164797436484 0.00544973212380071 0.00599366435881042 30281586 12106626 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} +76 503 565 0.320584774784821 0.320369114946318 0.320515754940108 0.320195315480278 0.00698047773894325 0.00720095704747856 30316742 12114340 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} +77 556 565 0.320862493213146 0.320974556969373 0.320607309071489 0.320836194399939 0.00730674478800874 0.00520850143709598 30343005 12137234 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} +78 608 565 0.320675123421747 0.321067909391029 0.320622568093385 0.321004043640803 0.00518404293898605 0.00524809993787812 30325286 12140764 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} +79 661 565 0.321005164539154 0.321203495188714 0.321049820706493 0.321416037232013 0.00490362246264973 0.00474923153988912 30356497 12145891 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} +80 714 565 0.320777875962129 0.320659274371362 0.320653086137179 0.320775158312352 0.00530288755979288 0.00539151944817967 30335003 12125312 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} +81 239 619 0.317939243185295 0.340926017048811 0.317799649042496 0.331441214618143 0.00522487363213128 0.0238995489783739 30066562 19236967 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} +82 292 616 0.318932528316827 0.318499897986695 0.318852521553368 0.318654154268711 0.00462772298897275 0.00396691878582818 30160494 12043658 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} +83 344 616 0.318937730977099 0.318811874904053 0.318959334706645 0.318883039597162 0.00504652320725241 0.00514274015859647 30160986 12055455 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} +84 397 616 0.31933729951583 0.319473063925649 0.319203479056992 0.319203479056992 0.00493378714508338 0.00510052376738236 30198772 12080457 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} +85 450 617 0.320134945586994 0.319926894211211 0.320012207217517 0.320195315480278 0.0054931606166778 0.00546302898469974 30274203 12097618 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} +86 503 617 0.320482286607258 0.320729143237655 0.320500495918212 0.320775158312352 0.00533504734080115 0.00516398316643595 30307050 12127954 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} +87 555 617 0.320171554550131 0.320653905945981 0.320149538414588 0.320546272983902 0.00490529608280515 0.00519357269541961 30277665 12125109 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} +88 608 617 0.32038720058862 0.320594218576101 0.320408941786831 0.320546272983902 0.00478789274490286 0.00480088264363527 30298058 12122852 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} +89 661 617 0.320836818296191 0.32095744676631 0.320683604180972 0.321019302662699 0.00441441174217148 0.0038564887810657 30340577 12136587 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.320242424934574 0.320323311435182 0.320103761348898 0.320302128633555 0.00473110094539235 0.00457207909116372 30284367 12112608 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 673 0.317171258622392 0.334294527655737 0.317204547188525 0.3279468986038 0.00621922317195378 0.020626632286569 29993936 18862781 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} +92 278 666 0.317971453151128 0.318964735168077 0.31801327534905 0.318852521553368 0.00517127386266037 0.00442376185712038 30069608 8800312 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} +93 344 668 0.318244931199841 0.318639741501062 0.318089570458534 0.318486305027848 0.00526518594458795 0.00520499711739749 30095470 12048946 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} +94 397 669 0.318613971120265 0.318432673664925 0.318638895246815 0.318287937743191 0.00510242943924566 0.00488951882770457 30130369 12041116 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} +95 450 669 0.319927843754806 0.320155832430552 0.319707026779583 0.320103761348898 0.00524282628887654 0.00518696936940413 30254618 12106275 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} +96 503 669 0.320070938061325 0.320396406645793 0.320103761348898 0.320119020370794 0.00474575883049355 0.00468890914363864 30268150 12115372 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} +97 555 669 0.320535159171003 0.320440332530317 0.320454718852522 0.320759899290456 0.00413265159633295 0.00378380228782351 30312050 12117033 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} +98 608 669 0.320017579069994 0.320010223809125 0.31990539406424 0.320057984283207 0.00416315037174323 0.00407039086906386 30263104 12100769 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} +99 661 669 0.320160007182209 0.320179051531462 0.320042725261311 0.320256351567864 0.00415436854372407 0.00376394347814072 30276573 12107153 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} +100 714 673 0.319932179305033 0.337211287032924 0.31976806286717 0.330189974822614 0.00458565731388419 0.0189397376756298 30255028 19027361 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv new file mode 100644 index 0000000..0b1220d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 241 197 0.0332409702517279 0.0353932038159606 0.0332188906691081 0.0351110093842985 0.00240865075572954 0.00337519250308865 3143499 1997084 1443 861 0 True 240 198 32 {X=0,Y=0,Width=0,Height=0} +2 293 199 0.0333040683693007 0.0332024416021761 0.0332646677347982 0.0332188906691081 0.00207034977939373 0.0020318078033667 3149466 1255507 1443 577 0 False 293 199 26 {X=0,Y=0,Width=0,Height=0} +3 346 199 0.0333445899021546 0.0332611240451376 0.0333104448004883 0.0332951857785916 0.00180524906920328 0.00168651994601063 3153298 1257726 1443 577 0 False 346 199 26 {X=0,Y=0,Width=0,Height=0} +4 398 199 0.0333091652844457 0.0331584363813163 0.0332341496910048 0.0331425955596246 0.00179566086982452 0.0016283234665138 3149948 1253843 1443 577 0 False 398 199 26 {X=0,Y=0,Width=0,Height=0} +5 451 199 0.0332846324148682 0.033422679270037 0.0332646677347982 0.0333409628442817 0.00233937137653402 0.00242477174763682 3147628 1263835 1443 577 0 False 451 199 26 {X=0,Y=0,Width=0,Height=0} +6 504 199 0.0333557354385919 0.03365997425007 0.0333714808880751 0.0335851071946288 0.00261500703686846 0.00255515938270512 3154352 1272808 1443 577 0 False 504 199 26 {X=0,Y=0,Width=0,Height=0} +7 557 199 0.0332677449180081 0.0336018207160131 0.0332494087129015 0.0335851071946288 0.002531117168003 0.00254477938104699 3146031 1270609 1443 577 0 False 557 199 26 {X=0,Y=0,Width=0,Height=0} +8 609 200 0.0332845372442534 0.0334519543779046 0.0331883726253147 0.0334019989318685 0.00245357722253086 0.00264040763370551 3147619 1264942 1443 577 0 False 609 200 26 {X=0,Y=0,Width=0,Height=0} +9 662 200 0.0331880448154195 0.03346705472713 0.0331883726253147 0.0334782940413519 0.00188012314827972 0.00182631491359683 3138494 1265513 1443 577 0 False 662 200 26 {X=0,Y=0,Width=0,Height=0} +10 714 198 0.0333297855843061 0.0351745266136571 0.0332646677347982 0.0347753109025711 0.00205558166812888 0.00300199487831836 3151898 1984745 1443 861 0 True 715 200 32 {X=0,Y=0,Width=0,Height=0} +11 240 251 0.0333256509498212 0.0331759168206122 0.0332646677347982 0.0331883726253147 0.00202504788928347 0.00208363249170143 3151507 1254504 1443 577 0 False 240 251 26 {X=0,Y=0,Width=0,Height=0} +12 293 251 0.0332734340058671 0.0334941348630437 0.0332188906691081 0.0334782940413519 0.00183699932240751 0.00161028959040934 3146569 1266537 1443 577 0 False 293 251 26 {X=0,Y=0,Width=0,Height=0} +13 345 251 0.0333357496094965 0.033362780336595 0.0333409628442817 0.0333562218661784 0.00169199627458321 0.0015162672356612 3152462 1261570 1443 577 0 False 345 251 26 {X=0,Y=0,Width=0,Height=0} +14 398 251 0.0332612733162058 0.0331290026007773 0.0332341496910048 0.0331425955596246 0.00157703032507373 0.00161188346226471 3145419 1252730 1443 577 0 False 398 251 26 {X=0,Y=0,Width=0,Height=0} +15 451 251 0.0334146989216799 0.0336441863192687 0.0333867399099718 0.0336308842603189 0.00182246799020909 0.00177161256998539 3159928 1272211 1443 577 0 False 451 251 26 {X=0,Y=0,Width=0,Height=0} +16 504 251 0.033330335458969 0.033378885612739 0.0333104448004883 0.0334325169756619 0.00242667412029357 0.00245149374917101 3151950 1262179 1443 577 0 False 504 251 26 {X=0,Y=0,Width=0,Height=0} +17 557 252 0.0333938142590008 0.0336455614824206 0.0333409628442817 0.0335088120851453 0.00229453689621071 0.00227519322038001 3157953 1272263 1443 577 0 False 557 252 26 {X=0,Y=0,Width=0,Height=0} +18 609 252 0.0334450054752183 0.0335065642223009 0.0334325169756619 0.033524071107042 0.00217083437264695 0.00227877676410095 3162794 1267007 1443 577 0 False 609 252 26 {X=0,Y=0,Width=0,Height=0} +19 662 252 0.0334863835436049 0.0334694083717553 0.0334477759975586 0.0334630350194553 0.00163933729450739 0.00165678875489304 3166707 1265602 1443 577 0 False 662 252 26 {X=0,Y=0,Width=0,Height=0} +20 715 252 0.0368068228448178 0.033512011984018 0.0337682154573892 0.0334630350194553 0.0159376739707308 0.00180401796362009 3480711 1267213 1443 577 0 False 715 252 26 {X=0,Y=0,Width=0,Height=0} +21 240 303 0.0332478859830657 0.0332772028758364 0.0331578545815213 0.0332951857785916 0.00209733096136621 0.00227641787793265 3144153 1258334 1443 577 0 False 240 303 26 {X=0,Y=0,Width=0,Height=0} +22 292 303 0.033421138799944 0.033245415450672 0.0333867399099718 0.0332494087129015 0.00188359546355255 0.00158023896750518 3160537 1257132 1443 577 0 False 292 303 26 {X=0,Y=0,Width=0,Height=0} +23 345 303 0.033367060741746 0.0332736591861758 0.0333714808880751 0.0332951857785916 0.00174353990935726 0.00164793024607295 3155423 1258200 1443 577 0 False 345 303 26 {X=0,Y=0,Width=0,Height=0} +24 398 303 0.0332777272580431 0.0336499249808833 0.0332951857785916 0.0336308842603189 0.00163680685268699 0.00168374126290928 3146975 1272428 1443 577 0 False 398 303 26 {X=0,Y=0,Width=0,Height=0} +25 451 303 0.033369418858089 0.0334820492945744 0.0333409628442817 0.0335393301289387 0.00172475029722751 0.00161274329465728 3155646 1266080 1443 577 0 False 451 303 26 {X=0,Y=0,Width=0,Height=0} +26 504 304 0.033416676355564 0.0337102734868941 0.0334325169756619 0.0337071793698024 0.00194089595001168 0.0019601726829041 3160115 1274710 1443 577 0 False 504 304 26 {X=0,Y=0,Width=0,Height=0} +27 556 304 0.0334756081151137 0.0333391381085609 0.0334630350194553 0.0332036316472114 0.00208317906559138 0.0020936930660681 3165688 1260676 1443 577 0 False 556 304 26 {X=0,Y=0,Width=0,Height=0} +28 609 304 0.0335814801367559 0.0335077013764458 0.0336308842603189 0.0334477759975586 0.00215770486109056 0.00225893902233569 3175700 1267050 1443 577 0 False 609 304 26 {X=0,Y=0,Width=0,Height=0} +29 662 304 0.033475851328907 0.0333592366469344 0.0335088120851453 0.0332951857785916 0.00168692516494086 0.00152988806122706 3165711 1261436 1443 577 0 False 662 304 26 {X=0,Y=0,Width=0,Height=0} +30 715 304 0.0335121007586103 0.0333662975808103 0.0334782940413519 0.0333409628442817 0.0018179589780723 0.00157946834707209 3169139 1261703 1443 577 0 False 715 304 26 {X=0,Y=0,Width=0,Height=0} +31 240 355 0.0333471277852143 0.0332730509409356 0.0332646677347982 0.0332036316472114 0.00250917582278803 0.00261355778870794 3153538 1258177 1443 577 0 False 240 355 26 {X=0,Y=0,Width=0,Height=0} +32 292 355 0.0332849602247634 0.0336564570058546 0.0332799267566949 0.0336003662165255 0.00210103067576644 0.00188210033506171 3147659 1272675 1443 577 0 False 292 355 26 {X=0,Y=0,Width=0,Height=0} +33 345 355 0.0334467396953092 0.0334604433658229 0.0334477759975586 0.0335088120851453 0.00204526959625568 0.00210958658524874 3162958 1265263 1443 577 0 False 345 355 26 {X=0,Y=0,Width=0,Height=0} +34 398 356 0.0334045368149282 0.0335334592400981 0.0334019989318685 0.0334782940413519 0.00179235762646885 0.00173088517976673 3158967 1268024 1443 577 0 False 398 356 26 {X=0,Y=0,Width=0,Height=0} +35 451 356 0.033632607905897 0.0335342526034549 0.0336461432822156 0.0336003662165255 0.00162099762891789 0.00142200344705638 3180535 1268054 1443 577 0 False 451 356 26 {X=0,Y=0,Width=0,Height=0} +36 503 356 0.0335198307274297 0.0334081607206067 0.0334782940413519 0.0332951857785916 0.00181801176968193 0.00182656821464898 3169870 1263286 1443 577 0 False 503 356 26 {X=0,Y=0,Width=0,Height=0} +37 556 356 0.0334512867357912 0.0335385896564723 0.0333867399099718 0.0336003662165255 0.00202410754653888 0.00202700926407607 3163388 1268218 1443 577 0 False 556 356 26 {X=0,Y=0,Width=0,Height=0} +38 609 356 0.0333535465144529 0.033523489307247 0.0332951857785916 0.0334782940413519 0.00198439831427057 0.00181300310421005 3154145 1267647 1443 577 0 False 609 356 26 {X=0,Y=0,Width=0,Height=0} +39 662 356 0.0334913006920331 0.0334396308004283 0.0334477759975586 0.0334172579537652 0.00177939123589957 0.00162832624579259 3167172 1264476 1443 577 0 False 662 356 26 {X=0,Y=0,Width=0,Height=0} +40 715 356 0.0334728481672863 0.0334987363705134 0.0334782940413519 0.0334477759975586 0.00152244003673133 0.00157743592786538 3165427 1266711 1443 577 0 False 715 356 26 {X=0,Y=0,Width=0,Height=0} +41 239 407 0.0332165219782524 0.0333680429801954 0.0331425955596246 0.0332951857785916 0.00254381726377321 0.00269520689019631 3141187 1261769 1443 577 0 False 239 407 26 {X=0,Y=0,Width=0,Height=0} +42 292 407 0.0337661957254541 0.0334194000348286 0.0334325169756619 0.0334325169756619 0.00306449168316468 0.00211360511858283 3193168 1263711 1443 577 0 False 292 407 26 {X=0,Y=0,Width=0,Height=0} +43 345 408 0.0334323160599196 0.0334252180327789 0.0334325169756619 0.0334935530632486 0.00198189230612422 0.00194177656225606 3161594 1263931 1443 577 0 False 345 408 26 {X=0,Y=0,Width=0,Height=0} +44 398 408 0.0335639264455927 0.0334675571905893 0.0336003662165255 0.0334782940413519 0.00197952397706572 0.00194833644150073 3174040 1265532 1443 577 0 False 398 408 26 {X=0,Y=0,Width=0,Height=0} +45 450 408 0.0334946739616 0.0336907567483157 0.0335088120851453 0.0336919203479057 0.00199095354888656 0.00197892515543974 3167491 1273972 1443 577 0 False 450 408 26 {X=0,Y=0,Width=0,Height=0} +46 503 408 0.03357814916524 0.0334639077191478 0.033524071107042 0.0334019989318685 0.00195555803272584 0.00180425320745117 3175385 1265394 1443 577 0 False 503 408 26 {X=0,Y=0,Width=0,Height=0} +47 556 408 0.0336225198207345 0.0337752235003747 0.0336156252384222 0.0337987335011826 0.00203299636750756 0.00191419232765663 3179581 1277166 1443 577 0 False 556 408 26 {X=0,Y=0,Width=0,Height=0} +48 609 408 0.0335138244041883 0.0335816957321944 0.0335088120851453 0.0336308842603189 0.00213152572967622 0.00199758402461964 3169302 1269848 1443 577 0 False 609 408 26 {X=0,Y=0,Width=0,Height=0} +49 662 408 0.0335634294434935 0.033551521479189 0.0335088120851453 0.0334325169756619 0.00170483747323868 0.00154239340132865 3173993 1268707 1443 577 0 False 662 408 26 {X=0,Y=0,Width=0,Height=0} +50 714 409 0.0332811639746865 0.0335485331438782 0.0333104448004883 0.0334935530632486 0.00162209186526855 0.00147967318062036 3147300 1268594 1443 577 0 False 714 409 26 {X=0,Y=0,Width=0,Height=0} +51 239 459 0.0333070292328704 0.0333004748676372 0.033325703822385 0.0333867399099718 0.0023555252389219 0.00231111860061919 3149746 1259214 1443 577 0 False 239 459 26 {X=0,Y=0,Width=0,Height=0} +52 292 460 0.0336242117427743 0.033489427573793 0.0336003662165255 0.0335088120851453 0.00190997772129537 0.00183159601854838 3179741 1266359 1443 577 0 False 292 460 26 {X=0,Y=0,Width=0,Height=0} +53 345 460 0.0334575891453896 0.0336390823483397 0.0334630350194553 0.0335851071946288 0.00168764331464027 0.00161165204002662 3163984 1272018 1443 577 0 False 345 460 26 {X=0,Y=0,Width=0,Height=0} +54 398 460 0.0336433516108499 0.0336343486136438 0.0335545891508354 0.0336156252384222 0.00190333825521022 0.0017306954750615 3181551 1271839 1443 577 0 False 398 460 26 {X=0,Y=0,Width=0,Height=0} +55 450 460 0.0334487488527315 0.0335126731201487 0.033524071107042 0.0334172579537652 0.00235617150988683 0.00235910001358522 3163148 1267238 1443 577 0 False 450 460 26 {X=0,Y=0,Width=0,Height=0} +56 503 460 0.0334709870530424 0.0338836233803652 0.0334477759975586 0.0338597695887694 0.00232744344817503 0.00235594666841464 3165251 1281265 1443 577 0 False 503 460 26 {X=0,Y=0,Width=0,Height=0} +57 556 460 0.0335933024420092 0.0337911701038473 0.0335698481727321 0.0337834744792859 0.00221992239943608 0.00224101047552353 3176818 1277769 1443 577 0 False 556 460 26 {X=0,Y=0,Width=0,Height=0} +58 609 460 0.0335429360377861 0.0334997412974321 0.0335545891508354 0.0335393301289387 0.00216694226848803 0.00217104980892209 3172055 1266749 1443 577 0 False 609 460 26 {X=0,Y=0,Width=0,Height=0} +59 661 461 0.0335415296275905 0.0332909809528003 0.0335545891508354 0.0331578545815213 0.00197178613260669 0.00191670205521442 3171922 1258855 1443 577 0 False 661 461 26 {X=0,Y=0,Width=0,Height=0} +60 714 461 0.0334654565828748 0.0334027129588896 0.0334630350194553 0.0334325169756619 0.00185724775251954 0.00173076174743572 3164728 1263080 1443 577 0 False 714 461 26 {X=0,Y=0,Width=0,Height=0} +61 239 512 0.0333259681852037 0.0332850042821787 0.0333409628442817 0.0332951857785916 0.00212234169963387 0.00199254924588447 3151537 1258629 1443 577 0 False 239 512 26 {X=0,Y=0,Width=0,Height=0} +62 292 512 0.0332194193947456 0.0335079129400076 0.0331883726253147 0.033524071107042 0.00175878497058136 0.00157201928601765 3141461 1267058 1443 577 0 False 292 512 26 {X=0,Y=0,Width=0,Height=0} +63 345 512 0.0335282163160396 0.033551415697408 0.0334782940413519 0.0334325169756619 0.00160852881719615 0.00151087048043624 3170663 1268703 1443 577 0 False 345 512 26 {X=0,Y=0,Width=0,Height=0} +64 397 512 0.0336009583892395 0.0334540435680777 0.0335851071946288 0.0334935530632486 0.00158831947150412 0.0014677015125296 3177542 1265021 1443 577 0 False 397 512 26 {X=0,Y=0,Width=0,Height=0} +65 450 512 0.0336257027490719 0.033364287726973 0.033676661326009 0.0334172579537652 0.00217670489028106 0.00213979116483327 3179882 1261627 1443 577 0 False 450 512 26 {X=0,Y=0,Width=0,Height=0} +66 503 512 0.0336817899646922 0.0333810012483572 0.0337224383916991 0.0334477759975586 0.00254695974547183 0.00267089201442201 3185186 1262259 1443 577 0 False 503 512 26 {X=0,Y=0,Width=0,Height=0} +67 556 513 0.0340262547174884 0.0336712400097372 0.0338445105668727 0.0337224383916991 0.0027276154377322 0.00218688012068679 3217761 1273234 1443 577 0 False 556 513 26 {X=0,Y=0,Width=0,Height=0} +68 609 513 0.0335298447910029 0.0337283886168755 0.033524071107042 0.0337529564354925 0.00226006206311343 0.00227883243670528 3170817 1275395 1443 577 0 False 609 513 26 {X=0,Y=0,Width=0,Height=0} +69 661 513 0.0334692845564899 0.0335590848765242 0.0334477759975586 0.0335851071946288 0.00201132672380641 0.00215810994448537 3165090 1268993 1443 577 0 False 661 513 26 {X=0,Y=0,Width=0,Height=0} +70 714 513 0.0336063936887924 0.0334883697559839 0.0335698481727321 0.0334325169756619 0.00214549343772812 0.00196581311603044 3178056 1266319 1443 577 0 False 714 513 26 {X=0,Y=0,Width=0,Height=0} +71 239 564 0.0333966588029303 0.0331869974621628 0.0333409628442817 0.0330968184939345 0.00214487542404002 0.00222247036874955 3158222 1254923 1443 577 0 False 239 564 26 {X=0,Y=0,Width=0,Height=0} +72 292 564 0.0334303703495738 0.0333153636533007 0.0334325169756619 0.0332494087129015 0.00165062098089969 0.00154724358057395 3161410 1259777 1443 577 0 False 292 564 26 {X=0,Y=0,Width=0,Height=0} +73 344 564 0.033462664911509 0.0334471677523183 0.0334935530632486 0.0334630350194553 0.00164591987370408 0.00166685212221625 3164464 1264761 1443 577 0 False 344 564 26 {X=0,Y=0,Width=0,Height=0} +74 397 564 0.0335212371376253 0.0335747670255446 0.0335088120851453 0.0336003662165255 0.00176052539521159 0.00171925780491268 3170003 1269586 1443 577 0 False 397 564 26 {X=0,Y=0,Width=0,Height=0} +75 450 564 0.0334836764683411 0.0336726680637795 0.0334935530632486 0.0337071793698024 0.0021343548527941 0.00221895915357156 3166451 1273288 1443 577 0 False 450 564 26 {X=0,Y=0,Width=0,Height=0} +76 503 565 0.0335457594326901 0.0335112715115516 0.0334477759975586 0.0334630350194553 0.002606077435481 0.00282896522440711 3172322 1267185 1443 577 0 False 503 565 26 {X=0,Y=0,Width=0,Height=0} +77 556 565 0.0336551210435394 0.0335091558759333 0.033524071107042 0.0334782940413519 0.00233808105177863 0.00218377815375666 3182664 1267105 1443 577 0 False 556 565 26 {X=0,Y=0,Width=0,Height=0} +78 608 565 0.0334379205516766 0.0337596735785805 0.0334019989318685 0.0337987335011826 0.00200982706232688 0.00215361374822012 3162124 1276578 1443 577 0 False 608 565 26 {X=0,Y=0,Width=0,Height=0} +79 661 565 0.0336204049181847 0.0335489033801114 0.0335851071946288 0.0335088120851453 0.00190129901719017 0.00186282725872409 3179381 1268608 1443 577 0 False 661 565 26 {X=0,Y=0,Width=0,Height=0} +80 714 565 0.0336101793643565 0.0334818377310125 0.0336156252384222 0.0333562218661784 0.00209538314051639 0.00190751883211434 3178414 1266072 1443 577 0 False 714 565 26 {X=0,Y=0,Width=0,Height=0} +81 239 619 0.0332326481101945 0.0356302060224932 0.0332494087129015 0.0353398947127489 0.00195075067930092 0.00317335333460537 3142712 2010457 1443 861 0 True 239 616 32 {X=0,Y=0,Width=0,Height=0} +82 292 616 0.0332944772862374 0.033416543926744 0.0333714808880751 0.0334019989318685 0.00164291412745612 0.00161871943819512 3148559 1263603 1443 577 0 False 292 616 26 {X=0,Y=0,Width=0,Height=0} +83 344 616 0.0332809947824825 0.0333529690764153 0.0332951857785916 0.0334019989318685 0.00182190633325676 0.00195372255147719 3147284 1261199 1443 577 0 False 344 616 26 {X=0,Y=0,Width=0,Height=0} +84 397 616 0.0334467819933602 0.0333874010461025 0.0334782940413519 0.0332646677347982 0.00200358693768645 0.00190154987498409 3162962 1262501 1443 577 0 False 397 616 26 {X=0,Y=0,Width=0,Height=0} +85 450 617 0.0336260940060437 0.0336187986918496 0.0336156252384222 0.0335851071946288 0.002140504853101 0.00201410865169748 3179919 1271251 1443 577 0 False 450 617 26 {X=0,Y=0,Width=0,Height=0} +86 503 617 0.0336110676234274 0.0336230564085314 0.0335545891508354 0.0335698481727321 0.0021019582503513 0.00189569785105253 3178498 1271412 1443 577 0 False 503 617 26 {X=0,Y=0,Width=0,Height=0} +87 555 617 0.0336865379209165 0.0334447876622478 0.0336614023041123 0.0334325169756619 0.0019117786979369 0.0018755104766585 3185635 1264671 1443 577 0 False 555 617 26 {X=0,Y=0,Width=0,Height=0} +88 608 617 0.0334257281384771 0.0333875597187739 0.0333867399099718 0.0333714808880751 0.00180500847716478 0.00190901076722263 3160971 1262507 1443 577 0 False 608 617 26 {X=0,Y=0,Width=0,Height=0} +89 661 617 0.0335927208438081 0.0336564041149642 0.0335851071946288 0.0336461432822156 0.00163427960905965 0.00144097717047298 3176763 1272673 1443 577 0 False 661 617 26 {X=0,Y=0,Width=0,Height=0} +90 714 617 0.033536496159522 0.0336109179491716 0.0335545891508354 0.0336003662165255 0.00187033959324287 0.0017532550929833 3171446 1270953 1443 577 0 False 714 617 26 {X=0,Y=0,Width=0,Height=0} +91 239 673 0.0332262716790069 0.035055768534993 0.0332341496910048 0.0347905699244678 0.00238594427053632 0.00323856544906579 3142109 1978044 1443 861 0 True 239 668 32 {X=0,Y=0,Width=0,Height=0} +92 278 666 0.0333185131537157 0.0333415065148956 0.0333409628442817 0.0332799267566949 0.00193610280284784 0.00178117717333207 3150832 919900 1443 421 0 True 291 668 23 {X=0,Y=0,Width=0,Height=0} +93 344 668 0.0334345578566224 0.0334336276843614 0.0334630350194553 0.0333867399099718 0.00202613022639684 0.00213750289728586 3161806 1264249 1443 577 0 False 344 668 26 {X=0,Y=0,Width=0,Height=0} +94 397 669 0.033435879670716 0.0332887859808464 0.0334172579537652 0.0332188906691081 0.00193852893759642 0.0019066326236314 3161931 1258772 1443 577 0 False 397 669 26 {X=0,Y=0,Width=0,Height=0} +95 450 669 0.0335833518255125 0.0333083556103153 0.0334935530632486 0.0331883726253147 0.0020030082592182 0.0021103034777108 3175877 1259512 1443 577 0 False 450 669 26 {X=0,Y=0,Width=0,Height=0} +96 503 669 0.0334974339094275 0.0335765388703749 0.033524071107042 0.0335545891508354 0.00179032702705438 0.0016981657681331 3167752 1269653 1443 577 0 False 503 669 26 {X=0,Y=0,Width=0,Height=0} +97 555 669 0.0336642045499908 0.0337823373251411 0.0336308842603189 0.0338139925230793 0.00159644871868455 0.00154008295933051 3183523 1277435 1443 577 0 False 555 669 26 {X=0,Y=0,Width=0,Height=0} +98 608 669 0.0334469934836151 0.0333954669068971 0.0334325169756619 0.0332799267566949 0.00155291249914259 0.00152960525062938 3162982 1262806 1443 577 0 False 608 669 26 {X=0,Y=0,Width=0,Height=0} +99 661 669 0.0335572856515864 0.0336405368478272 0.0335393301289387 0.0336308842603189 0.00156101222887416 0.00150293148004909 3173412 1272073 1443 577 0 False 661 669 26 {X=0,Y=0,Width=0,Height=0} +100 714 673 0.0333654322667827 0.0352596120539893 0.0333409628442817 0.0349126420996414 0.00174676372782094 0.00266969759546073 3155269 1989546 1443 861 0 True 714 670 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv new file mode 100644 index 0000000..05beab7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.235902559858931 0.926189718556114 0.235492484931716 1 0.00681518850116134 0.191326172562474 20901750 52260843 1352 861 78 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.231895644542439 0.230650773482993 0.231692988479438 0.230487525749599 0.0048753844726169 0.00392191088699134 20546724 8721758 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.230594203467771 0.230171767133574 0.230609597924773 0.230258640421149 0.00389550893197819 0.0037058143049793 20431412 8703645 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.230382484538954 0.230700993383482 0.230365453574426 0.230609597924773 0.00385698257858304 0.00375571688040156 20412653 8723657 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.230701795372905 0.230722440639562 0.230685893034257 0.23080796520943 0.00477256034603059 0.00493813745775712 20440945 8724468 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.232521061287545 0.231220725718552 0.230975814450294 0.23099107347219 0.0128337128625964 0.00627702986849241 20602138 8743310 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.231187612382922 0.231613070343959 0.231296253910124 0.231799801632715 0.00553759508704291 0.00544617711349035 20483990 8758146 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.231026038301951 0.231020375025503 0.23089951934081 0.231372549019608 0.00437092744907399 0.00447800327204005 20469674 8735734 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.23228592337172 0.231574142648583 0.232272831311513 0.231479362172885 0.0039538163745307 0.00329771166770487 20581304 8756674 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.234345259297281 0.94478805599618 0.23440909437705 1 0.00445904761478172 0.139956043860832 20763768 53310266 1352 861 80 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.230762538017763 0.230932867047243 0.230548561837186 0.231403067063401 0.00505026906184962 0.00527125777639043 20446327 8732425 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.230872669331127 0.231041002472781 0.23089951934081 0.230975814450294 0.00399707975777583 0.00403543965118042 20456085 8736514 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.231171382742769 0.230518652038633 0.231143663691157 0.230441748683909 0.00349847502706736 0.00328570504032904 20482552 8716762 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.231031670145092 0.230696524103238 0.230838483253223 0.230640115968566 0.00371947332660975 0.00364463259519002 20470173 8723488 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.231463798422 0.231637981953364 0.231280994888228 0.231525139238575 0.00419502889281381 0.00378684002053356 20508461 8759088 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.232154765758213 0.231876228969425 0.231921873807889 0.231601434348058 0.00709884728000684 0.00547387169366647 20569683 8768097 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.232054250337346 0.232140551194481 0.232028686961166 0.232043945983062 0.00485886419594895 0.00441046108367047 20560777 8778092 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.231547384454668 0.232161046414533 0.231555657282368 0.231876096742199 0.00408694074437051 0.00456718023104628 20515867 8778867 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.23170848451277 0.231497239293859 0.231662470435645 0.231479362172885 0.0034491618008501 0.00323533150172024 20530141 8753766 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.231379456209993 0.232049261517553 0.231372549019608 0.232074464026856 0.00364403870246796 0.00374049028304727 20500988 8774640 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.230793688092049 0.230503419462182 0.230640115968566 0.230731670099947 0.00490607570299168 0.0049217149929204 20449087 8716186 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.231212645304939 0.23097943747629 0.231097886625467 0.230914778362707 0.00424724965907632 0.00353006131285255 20486208 8734186 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.232343302711456 0.231778486603861 0.231784542610819 0.231616693369955 0.00725008706010064 0.00347814834019044 20586388 8764401 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.232064193531348 0.231690343934916 0.232028686961166 0.231662470435645 0.00405968591481992 0.00401519973074749 20561658 8761068 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.232246060305641 0.232261565551846 0.232349126420996 0.232150759136339 0.00408064629133924 0.00405596438656696 20577772 8782668 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.23293640689762 0.232632410030281 0.233020523384451 0.232394903486687 0.00460312331125609 0.00476510603667537 20638939 8796691 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.232834491980662 0.232215338913587 0.232852674143587 0.232318608377203 0.00424907935543975 0.00437454892754822 20629909 8780920 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.231944604333111 0.232292903404441 0.231967650873579 0.232257572289616 0.00432420478583312 0.004399012322406 20551062 8783853 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.231928081250229 0.232012951921255 0.231967650873579 0.231982909895476 0.00384493760850004 0.00378051358508701 20549598 8773267 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.231907754698131 0.231672572595722 0.231723506523232 0.231631952391852 0.00341796980026993 0.00337680541127729 20547797 8760396 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.230651910109012 0.242490399311678 0.23076218814374 0.2323338673991 0.00529448073870217 0.0353818395841786 20436525 9169458 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.231257226027196 0.231489094096729 0.231296253910124 0.231479362172885 0.00453826854590555 0.0041991484448444 20490158 8753458 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.232527517027579 0.23145616951742 0.232364385442893 0.231097886625467 0.00478381256766488 0.00452377701888647 20602710 8752213 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.233022363044635 0.232992332539838 0.232913710231174 0.233096818493935 0.00419344422375568 0.00426822471935464 20646555 8810301 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.232913495792257 0.232904771670687 0.232822156099794 0.232745860990311 0.00422999460977717 0.0039360158546614 20636909 8806990 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.23321295409698 0.233176022602393 0.233157854581521 0.233112077515831 0.00430780812822701 0.00460210039432648 20663442 8817247 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.232991506413078 0.233420193398186 0.232898451209277 0.233142595559625 0.0039803056743918 0.00373951731239298 20643821 8826480 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.232642354710862 0.233095654894345 0.232730601968414 0.233066300450141 0.00397446912077179 0.00368460327876473 20612885 8814208 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.232161797097445 0.232543923570548 0.232227054245823 0.232257572289616 0.00382263923380724 0.00414873850800995 20570306 8793345 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.231833163813726 0.2316433239333 0.231738765545129 0.231570916304265 0.00411143479665106 0.003447786783286 20541188 8759290 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.231040597575802 0.231277080962334 0.231265735866331 0.231784542610819 0.00591714852405946 0.00630913942532159 20470964 8745441 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.231710899772153 0.231985871785341 0.231845578698405 0.232074464026856 0.00518646186143834 0.00532300070728373 20530355 8772243 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.232698390985801 0.232788491048018 0.232623788815137 0.23270008392462 0.0049615532849216 0.004276513776111 20617850 8802593 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.233295806522826 0.23327646240337 0.233340962844282 0.233401998931868 0.00462397630695948 0.00482766220424489 20670783 8821045 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.233500505398669 0.233709321450866 0.233295185778592 0.233966582742046 0.00526634766751806 0.00505359508734324 20688920 8837413 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.233799444535487 0.233523912434371 0.233844510566873 0.233325703822385 0.00533954730405419 0.00530714162091518 20715407 8830402 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.2335490927428 0.233462426774215 0.233508812085145 0.233234149691005 0.00477630032310997 0.00454666526945476 20693225 8828077 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.232949916549402 0.232931534461258 0.233005264362554 0.232898451209277 0.00466402950501196 0.00473001111280265 20640136 8808002 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.232658787503674 0.232208912670396 0.232684824902724 0.232166018158236 0.00425362381889184 0.00431140989031021 20614341 8780677 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.231557282503635 0.231520802185557 0.231464103150988 0.231540398260472 0.00463124461219875 0.0048445191852246 20516744 8754657 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.230874125258512 0.231005909366963 0.23076218814374 0.23085374227512 0.00547791286751239 0.00563248499933743 20456214 8735187 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.231988541738617 0.231854940386016 0.232028686961166 0.231738765545129 0.00443915971865894 0.00394933537779999 20554955 8767292 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.233110813454846 0.232814672038794 0.233096818493935 0.232730601968414 0.00392211798652583 0.00386688943204508 20654392 8803583 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.233361266823862 0.233417416626437 0.233218890669108 0.233600366216526 0.00427508382358006 0.00413618329674702 20676583 8826375 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.233915151260698 0.233667114520282 0.233676661326009 0.233386739909972 0.00584264132820011 0.00558865316417918 20725659 8835817 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.234455052022881 0.233519786944915 0.234256504158083 0.233585107194629 0.00606041447053283 0.00577206332334266 20773496 8830246 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.233718330193496 0.233047206838686 0.233798733501183 0.232990005340658 0.00494666583514423 0.0046098025998611 20708220 8812376 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.233225944580858 0.232934179005781 0.233112077515831 0.232928969253071 0.00493246635605409 0.00539707105713739 20664593 8808102 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.232357196096038 0.232090410630329 0.232318608377203 0.231937132829786 0.00455543597599402 0.00458807839528133 20587619 8776196 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.231776664802177 0.232157291161311 0.231952391851682 0.231937132829786 0.00459956633964747 0.00450479700816211 20536182 8778725 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.231651680772233 0.231678020357439 0.231692988479438 0.231738765545129 0.00511976753517696 0.00508946043681045 20525108 8760602 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.232074757469585 0.232029929897092 0.232104982070649 0.232043945983062 0.00404516040349221 0.00382939714912604 20562594 8773909 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.233174919404826 0.233329644193724 0.233188372625315 0.233340962844282 0.00368023472415638 0.00357694453225253 20660072 8823056 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.233929022072762 0.234638111932727 0.233783474479286 0.234531166552224 0.00445786650409302 0.00352726368065024 20726888 8872534 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.233635116607369 0.233548506698433 0.233508812085145 0.233707179369802 0.00483825297582073 0.00464377831646189 20700847 8831332 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.234411791792903 0.2338604307249 0.23413443198291 0.233844510566873 0.00617971343052137 0.00626129886770942 20769663 8843127 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.234850951409044 0.234261185001889 0.233859769588769 0.234210727092393 0.0114233970657453 0.00507596315067961 20808574 8858281 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.234264867275854 0.232367135769197 0.233279926756695 0.23256275272755 0.00771939902671055 0.00428512106454183 20756645 8786660 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.232353099184094 0.231797712442542 0.232349126420996 0.231723506523232 0.00390396736516628 0.00350394846483024 20587256 8765128 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.231965811213395 0.231238391275965 0.231937132829786 0.231250476844434 0.00384965755203518 0.00401328484921027 20552941 8743978 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.231997480455586 0.23210104169931 0.232059205004959 0.231891355764096 0.00485472271735877 0.00459376387189441 20555747 8776598 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.232608292781805 0.232709524948567 0.232623788815137 0.232745860990311 0.00391573681970861 0.00381323255346387 20609867 8799607 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.233074437842735 0.233092164095574 0.233142595559625 0.233142595559625 0.0036026948076959 0.00336923617225045 20651169 8814076 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.23333345748218 0.233112262633948 0.233203631647211 0.233051041428244 0.00381219177218434 0.00382556338087155 20674119 8814836 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.233610535135704 0.233282015946868 0.233600366216526 0.233051041428244 0.00463875335913975 0.00421410082658538 20698669 8821255 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.233534014301044 0.233994324014091 0.233417257953765 0.233752956435492 0.00528545043365568 0.00599993663937718 20691889 8848190 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.23300192362995 0.232736181957357 0.232913710231174 0.23256275272755 0.00466406028295721 0.00448987672396601 20644744 8800615 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.23205562726092 0.23225744006239 0.232059205004959 0.232028686961166 0.00395127930913225 0.00418856936686019 20560899 8782512 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.231688406258366 0.232266590186439 0.231631952391852 0.232364385442893 0.00352824994273134 0.00327900257567739 20528362 8782858 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.23101222392118 0.23177943863989 0.231097886625467 0.231692988479438 0.00386020371785339 0.00358668364158804 20468450 8764437 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.238896330295524 0.980917869893512 0.238162813763638 1 0.00697868717017881 0.0717026910191187 21167008 48149055 1352 749 87 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.233380780765326 0.232430393274183 0.233203631647211 0.2323338673991 0.00417130509610842 0.00350214916054795 20678312 8789052 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.23254677138509 0.231871257225722 0.23224231326772 0.231799801632715 0.00372401078878598 0.0033758939653513 20604416 8767909 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.232733999132312 0.232301313056024 0.232776379034104 0.232455939574273 0.00378301549529737 0.00397947926450422 20621005 8784171 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.233423104235823 0.233648047354272 0.233340962844282 0.233508812085145 0.00442613062592003 0.00479621349136699 20682062 8835096 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.233098342138872 0.23329269990674 0.233188372625315 0.232913710231174 0.00444940132407603 0.00451017688238967 20653287 8821659 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.232623077780833 0.232347962821406 0.232532234683757 0.232364385442893 0.00369124178254426 0.00389916790206319 20611177 8785935 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.232210136143883 0.231414174150397 0.232089723048753 0.231235217822538 0.00398099060465407 0.00353968692997254 20574589 8750625 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.231817645207877 0.232141265221502 0.231815060654612 0.232181277180133 0.00355176199075148 0.00360691660946568 20539813 8778119 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.231515354052196 0.23164565113248 0.231372549019608 0.231662470435645 0.00375959179163077 0.00355988171425143 20513029 8759378 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.238403481946275 0.965625885249914 0.237720302128634 1 0.00762589607203561 0.122906953673802 21123340 47398437 1352 749 87 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.233808112382245 0.232098026918554 0.233386739909972 0.232089723048753 0.0048546117170898 0.00349382287725788 20716175 8776484 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.232201028133032 0.231986665148698 0.23228809033341 0.232196536202029 0.00426458682908067 0.00454908612480699 20573782 8772273 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.232145973762608 0.232241123222684 0.232150759136339 0.232196536202029 0.00434121380677712 0.00457136273689891 20568904 8781895 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.232225496742109 0.232670385689629 0.23224231326772 0.232791638056001 0.0045503357704176 0.00384798203291335 20575950 8798127 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.232453671036255 0.232646267443581 0.232547493705653 0.232227054245823 0.00465125784839728 0.0049437588620618 20596167 8797215 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.232948957217404 0.231718667006755 0.23228809033341 0.231433585107195 0.00968868843544423 0.00403160578112337 20640051 8762139 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.231537429974407 0.231121105726378 0.231525139238575 0.231158922713054 0.00397094645580549 0.00374117769792723 20514985 8739543 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.232272086418432 0.231162968866174 0.232257572289616 0.231204699778744 0.00426117927250275 0.00414193933774012 20580078 8741126 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.234743957675627 0.934939270067585 0.234683756771191 1 0.00506501398318473 0.160644637382947 20799094 52754542 1352 861 79 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv new file mode 100644 index 0000000..ad958a2 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.023706402875197 0.164003985068134 0.0236972610055695 0.181475547417411 0.00211464166564596 0.0513367062022258 2100466 9254029 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.0233244081598748 0.0233452456841364 0.0233463035019455 0.0233615625238422 0.00171381508481864 0.00162959776373255 2066620 882770 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.023213656102277 0.0233307006892609 0.0232089723048753 0.0233157854581521 0.00155304583556543 0.00141089797795247 2056807 882220 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0231920090578999 0.0230694196904058 0.0231937132829786 0.0231021591515984 0.00153225172781535 0.00152040748097393 2054889 872340 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0231669987084005 0.0232181224289242 0.023224231326772 0.0231479362172885 0.00188470098101116 0.00181259901172393 2052673 877963 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.0232854479944995 0.0232114581767267 0.0231631952391852 0.0230869001297017 0.00269056746107835 0.00254887066234889 2063168 877711 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.0233293289687113 0.0233522537271219 0.0233157854581521 0.0233005264362554 0.00203489408142288 0.0021430556652894 2067056 883035 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.0233763475228693 0.0231657604473723 0.0233463035019455 0.0231937132829786 0.00180970376099571 0.00188429159643126 2071222 875983 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.0232855382845699 0.0233683325578207 0.0233310444800488 0.0233463035019455 0.00154572302448131 0.00139406968242818 2063176 883643 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0235469957559152 0.154083848591159 0.0235141527428092 0.168139162279698 0.00151901833087174 0.0377736595161291 2086342 8694279 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.0231747749407133 0.0231693305824781 0.0231479362172885 0.0231326771953918 0.00196906164528215 0.00199562564567184 2053362 876118 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.023175801990264 0.0232467364006612 0.0232394903486687 0.0233310444800488 0.00159082738784877 0.00155254398599282 2053453 879045 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.023254433355319 0.0230099703295327 0.023224231326772 0.022919050888838 0.0014546503586383 0.00138141022457292 2060420 870092 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0232734168426194 0.0231197189272299 0.0232394903486687 0.0230869001297017 0.00150223937709303 0.00141250746705517 2062102 874242 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0234480942700567 0.0233333452337837 0.023422598611429 0.0233615625238422 0.00157802305605194 0.00157981787177082 2077579 882320 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.0233314394991068 0.0232779155805853 0.0232852674143587 0.0232394903486687 0.00213797902011644 0.00217132812641524 2067243 880224 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.0233398929069475 0.0234211705573867 0.0233310444800488 0.0234683756771191 0.00192383887908555 0.00183643693794132 2067992 885641 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.0232924906199903 0.0233020602720787 0.0232852674143587 0.0232089723048753 0.00169426335488157 0.00172662632569723 2063792 881137 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.0231812419670053 0.0232665969300276 0.0231479362172885 0.0233005264362554 0.00145042076185991 0.00130423306328232 2053935 879796 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.0232456752184907 0.0231890588846184 0.0232089723048753 0.0231784542610819 0.00143538577148217 0.00146824066422438 2059644 876864 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.02319003396261 0.0231981561177769 0.0231631952391852 0.0231631952391852 0.00198096809091584 0.00208419817134503 2054714 877208 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.023395658311675 0.02328830864056 0.0234073395895323 0.023224231326772 0.00166637900260134 0.00145352143887426 2072933 880617 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.0233879723694327 0.0234102485885074 0.0233310444800488 0.0233615625238422 0.00149991700066443 0.0014789872638472 2072252 885228 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.0235152813686891 0.0232496982905268 0.0235446707866026 0.0231937132829786 0.00163726499264291 0.00157091456163839 2083532 879157 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.0234860386721401 0.0234921236869341 0.0234836346990158 0.0234073395895323 0.00166068080822842 0.00163007080936415 2080941 888324 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.0233619011116062 0.0235565183460648 0.0233157854581521 0.0235294117647059 0.00197777897233138 0.00189087133297306 2069942 890759 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.0235549751408864 0.0235090223264349 0.0235294117647059 0.0234683756771191 0.00176010248357458 0.00187544785410957 2087049 888963 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.0232643991218388 0.0232767519809952 0.0232852674143587 0.0231784542610819 0.00167009877728894 0.00183929911783583 2061303 880180 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.0233390690100552 0.0230963147082029 0.0233005264362554 0.0229800869764248 0.00153671802716322 0.00143523178885421 2067919 873357 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.0232112747016703 0.0233252529275438 0.023270008392462 0.0232852674143587 0.00141554151909902 0.00139456797044489 2056596 882014 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.0233749141680018 0.0241924255220232 0.0234378576333257 0.0236057068741894 0.00208287029178247 0.00417095555638012 2071095 914805 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.0233004700049614 0.0233536817811642 0.0232852674143587 0.023270008392462 0.00183749427016836 0.00168796967633814 2064499 883089 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.0233977236970353 0.0232091309775466 0.0234988937209125 0.0230106050202182 0.00158728741229828 0.00174822608680481 2073116 877623 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0234818740426431 0.0233645773045982 0.0234378576333257 0.0233768215457389 0.0015835563926119 0.0016829379483167 2080572 883501 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.0233763023778341 0.0236126884717296 0.0233157854581521 0.0235904478522927 0.00166595582899398 0.00173816268024747 2071218 892883 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.0234051952003604 0.0233987977107236 0.0233005264362554 0.023422598611429 0.00179109255923179 0.00185980001319102 2073778 884795 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.0235603248275573 0.0236877670907326 0.0235294117647059 0.0236820019836728 0.0015415670217231 0.00151721600631713 2087523 895722 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.0234683418183427 0.023406837126073 0.0234073395895323 0.0232852674143587 0.0015071863581035 0.00152027830076399 2079373 885099 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.0233061582793963 0.0232624185496815 0.0232394903486687 0.0233005264362554 0.00158005178499552 0.00152671097403761 2065003 879638 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.0232893191812677 0.023274054545582 0.023270008392462 0.023270008392462 0.00149068361351824 0.00141064193567282 2063511 880078 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.0233674765234531 0.023391657440512 0.0233463035019455 0.0232852674143587 0.00234615890092941 0.00240077864482317 2070436 884525 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.0233837738811593 0.0232753503723981 0.0234378576333257 0.0231937132829786 0.00197822640590209 0.00215314742599666 2071880 880127 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.0234685675435187 0.0229886288552335 0.0234378576333257 0.0229648279545281 0.00176424547010442 0.00170480638084549 2079393 869285 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.0235066473807076 0.0234862527980934 0.0234531166552224 0.0234988937209125 0.00185204954572143 0.00189547218378042 2082767 888102 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.0235119970673785 0.023456316554095 0.0234683756771191 0.0234531166552224 0.00210654079867351 0.00210422880938584 2083241 886970 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.0235001352093804 0.0234703061946208 0.0235294117647059 0.0233920805676356 0.00206014021270434 0.0020000635307076 2082190 887499 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.0234807792755396 0.0237588260020609 0.0234988937209125 0.0237277790493629 0.00189580598643053 0.00176186365502479 2080475 898409 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.023560505407698 0.0234043248087763 0.023575188830396 0.0233615625238422 0.00185972616595516 0.00186387808199589 2087539 885004 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.0232516795081719 0.0230160792273805 0.0231784542610819 0.0229343099107347 0.00172006422394153 0.00159279159951554 2060176 870323 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.0232135206671714 0.0230801300957233 0.0231937132829786 0.0230869001297017 0.00185945471578454 0.00193017074718595 2056795 872745 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.0232384181540827 0.0232319533967786 0.023224231326772 0.0231937132829786 0.0021767628428168 0.00228527137538421 2059001 878486 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.0232162519418008 0.023190751393113 0.0232547493705653 0.0231021591515984 0.0017330423130632 0.00162462787761972 2057037 876928 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.0234553513344647 0.0234334147985274 0.0234531166552224 0.0234073395895323 0.00160065544565391 0.00157777761657145 2078222 886104 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.0234908917634238 0.0236296664475662 0.0235141527428092 0.0235294117647059 0.0015876018136654 0.00164206612214227 2081371 893525 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.0235579885719858 0.0233335303519003 0.0236209658960861 0.0233615625238422 0.00226036471602567 0.00214399802028793 2087316 882327 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.0235631238197395 0.0236649446715006 0.0235904478522927 0.0237125200274662 0.00224817502818802 0.00234014738497014 2087771 894859 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.023540314290706 0.023624668258418 0.0235141527428092 0.0236209658960861 0.00199120513746831 0.00183960226565195 2085750 893336 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.023528113844944 0.0233412259764617 0.0235141527428092 0.0233920805676356 0.0019503870566494 0.00197254227372387 2084669 882618 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.0233600275926455 0.0231555525055142 0.023422598611429 0.0231021591515984 0.00179517394068361 0.00185272486719567 2069776 875597 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.0233692484660846 0.0232069360055927 0.0233463035019455 0.0231784542610819 0.00176806839256347 0.001712533595476 2070593 877540 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.0232770848767292 0.0233341650425858 0.0232089723048753 0.0233310444800488 0.00206235842926573 0.0020487877139673 2062427 882351 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.0235161616968755 0.0233088831969476 0.0234988937209125 0.0233005264362554 0.00159052177293269 0.00168287937703448 2083610 881395 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.0233402540672291 0.0234417980046647 0.0233310444800488 0.0234683756771191 0.00149612122773054 0.00142916079022146 2068024 886421 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.0234969073393638 0.0237400232905036 0.0234836346990158 0.0237582970931563 0.00149795790949005 0.0014122999868698 2081904 897698 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.0235517472708698 0.0235065629000287 0.0234836346990158 0.0234683756771191 0.00196018522593736 0.00175209137418352 2086763 888870 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.0234798876610944 0.0236294548840043 0.023422598611429 0.0235599298084993 0.00233487112875894 0.00230490688299487 2080396 893517 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.0237557238261501 0.0237002228954351 0.0237125200274662 0.0236667429617761 0.00222227584672942 0.0018077816337834 2104836 896193 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.0234120346731928 0.0233116864141418 0.0233157854581521 0.0233768215457389 0.00182352404398171 0.0017411579975317 2074384 881501 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.023277604044634 0.0231333118860773 0.0233157854581521 0.0230411230640116 0.00159115124942927 0.00144573307442927 2062473 874756 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.0233571383103929 0.0231449478819777 0.0233463035019455 0.0231479362172885 0.00155917365578631 0.00164639580376067 2069520 875196 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.023374677156567 0.0232630796858122 0.0233463035019455 0.0232089723048753 0.0019694803627342 0.0019322104195207 2071074 879663 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.0233478271468834 0.0234646468693419 0.0233615625238422 0.0233920805676356 0.00159991496357402 0.00145485265340968 2068695 887285 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.0234447535374521 0.0234155905684435 0.023422598611429 0.0233768215457389 0.00148733338802953 0.00138088494318454 2077283 885430 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.0235324139095465 0.023590024725169 0.0235446707866026 0.0237277790493629 0.00157204320414402 0.00168531846945898 2085050 892026 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.0235318947416417 0.0234987350482411 0.023575188830396 0.023575188830396 0.00179197285086136 0.00171859436663546 2085004 888574 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.0234955191295315 0.0235220599309324 0.0234378576333257 0.0233920805676356 0.00212140433819544 0.00226386450941773 2081781 889456 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.0235665999874497 0.0235942295509603 0.0235446707866026 0.0236209658960861 0.00177057344504017 0.00177026077617051 2088079 892185 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.0232667692361866 0.023466974068522 0.023270008392462 0.0234073395895323 0.00155119244850239 0.00156552404513448 2061513 887373 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.0232885291431517 0.0232508089992263 0.0232852674143587 0.0231631952391852 0.00140292665286808 0.00130772684244682 2063441 879199 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.0232769494416236 0.0233570403527082 0.0232852674143587 0.023270008392462 0.00144498191380853 0.00138705046565525 2062415 883216 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0240019109893399 0.175458868226734 0.0239414053559167 0.18129243915465 0.00199430480597365 0.0313661275199504 2126649 8612524 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.0234819191876783 0.0233725902745024 0.0234836346990158 0.0233920805676356 0.00161241046210085 0.00138260251062801 2080576 883804 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.0233413149755562 0.0230048663586037 0.0233005264362554 0.0229648279545281 0.00150169536500555 0.00141010989659304 2068118 869899 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.0233272184383159 0.0235161625966465 0.0233310444800488 0.0234531166552224 0.00159169525098665 0.0016175364025619 2066869 889233 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.0234278128629943 0.0233825337619082 0.0234378576333257 0.0233768215457389 0.00168877073745169 0.00177865152836204 2075782 884180 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.0234174746499341 0.0233063708796509 0.0234378576333257 0.0233463035019455 0.00172904979708107 0.00180660645944152 2074866 881300 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.0233814489118466 0.0233611393967186 0.0233615625238422 0.0233463035019455 0.00152397856984213 0.00152592143605747 2071674 883371 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.0234620440859327 0.0234185524583091 0.0234683756771191 0.0233920805676356 0.00145758862187308 0.0014345562911819 2078815 885542 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.0232874118035306 0.0233294048624447 0.023270008392462 0.0232394903486687 0.00144981599747221 0.00148340540511515 2063342 882171 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.0232988334974355 0.0232088400776491 0.0233310444800488 0.0231326771953918 0.00136989245126732 0.00124680764801936 2064354 877612 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.0241590157118266 0.175747506173639 0.0240634775310903 0.185214007782101 0.0022698058479168 0.0398389563990336 2140569 8626692 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.0235302582341158 0.0234539893549149 0.0234836346990158 0.0234988937209125 0.0016081466256793 0.00140577831167995 2084859 886882 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.0233896540219938 0.0232662002483492 0.0234531166552224 0.023270008392462 0.00169217157376812 0.00170227390056704 2072401 879781 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.0232675479880438 0.0233692052575132 0.0232852674143587 0.0233157854581521 0.00175880518681905 0.0016792627859549 2061582 883676 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.0233136410689803 0.0232016998074375 0.0232852674143587 0.0231326771953918 0.0017808879069735 0.00172595471572813 2065666 877342 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.0232144348541341 0.0234814926179523 0.0232394903486687 0.023422598611429 0.00185892727277088 0.00179523754180316 2056876 887922 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.0235129563993765 0.0233243802278513 0.023422598611429 0.023224231326772 0.00192561750017799 0.00172279526425156 2083326 881981 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.0232626836105013 0.0232788676166135 0.0232852674143587 0.0233005264362554 0.00153313811684118 0.00152584010806781 2061151 880260 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.0232964972418641 0.023245202564838 0.023270008392462 0.0232547493705653 0.00168739207643613 0.00167959423790222 2064147 878987 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.0235918247758662 0.153408517245752 0.0236209658960861 0.167132066834516 0.00180070819051984 0.0400863298628798 2090314 8656173 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv new file mode 100644 index 0000000..fa30b0d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.32602488258905 0.382843967994334 0.326146334019989 0.389364461738003 0.00623877765224056 0.0370103010703607 28886887 21602214 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.325593487918963 0.325749546559785 0.325444419012741 0.325658045319295 0.00490159145063655 0.00452842777938231 28848664 12317794 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.32508826983007 0.324819486696553 0.325062943465324 0.32466620889601 0.00436575621627188 0.00417753870613833 28803900 12282625 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.325234043148722 0.325073865434203 0.325337605859464 0.325246051728084 0.00426382977676298 0.00384402940410702 28816816 12292244 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.324813731584776 0.324662585870014 0.324681467917906 0.32462043183032 0.00498175842470049 0.00465020843983762 28779575 12276692 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.329177992427372 0.325051942160109 0.325566491187915 0.325230792706188 0.0303976198271663 0.00653574096025685 29166263 12291415 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.324969594818795 0.325048900933908 0.324696726939803 0.325047684443427 0.00656672894647687 0.00693717289243641 28793385 12291300 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.324845073525462 0.325192103019819 0.32489509422446 0.325200274662394 0.0059076176346395 0.00627304518563719 28782352 12296715 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.324412730809636 0.324754060665058 0.324330510414282 0.324834058136873 0.00446740959532975 0.00429443075160285 28744045 12280151 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.324058037554349 0.380640465986781 0.324025329976349 0.383154039826047 0.00458788167657752 0.027429235692641 28712618 21477880 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.325684816325167 0.326583239220605 0.325352864881361 0.326482032501717 0.00543141121193339 0.0050647837365503 28856756 12349319 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.325782758479028 0.326159847642501 0.325642786297398 0.325993743801022 0.00485810221643691 0.00464052826999172 28865434 12333309 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.325547067536521 0.32520035399873 0.325642786297398 0.325276569771878 0.00430093905861708 0.00383554129326726 28844551 12297027 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.325292291530385 0.325749863905128 0.325383382925155 0.325291828793774 0.00442407878297392 0.00411539850089958 28821977 12317806 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.325963620776287 0.324783468000152 0.326009002822919 0.324483100633249 0.00437532331188324 0.00415448845435385 28881459 12281263 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.325906659028127 0.325938816611283 0.325612268253605 0.326115815976196 0.00641267994772826 0.00556962180350806 28876412 12324951 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.32569324716049 0.325219368273849 0.325520714122225 0.325078202487221 0.00566911782160962 0.00542092139775736 28857503 12297746 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.325296681885058 0.325902401233204 0.325017166399634 0.325703822384985 0.0058068965023938 0.00635768767457458 28822366 12323574 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.325125638632954 0.325255704315593 0.324971389333944 0.325017166399634 0.00458176708800832 0.00441029722972934 28807211 12299120 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.324345656573591 0.325584870772348 0.324345769436179 0.325566491187915 0.00438593795269721 0.00423719541914432 28738102 12311567 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.325864922443087 0.32618351631598 0.325627527275502 0.326009002822919 0.0064572181151017 0.00610310911570625 28872714 12334204 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.32619717861588 0.32605028416292 0.326176852063783 0.326039520866712 0.00545944527356544 0.00498386876342144 28902153 12329166 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.327067270165497 0.325827877968551 0.326817730983444 0.325673304341192 0.00581272172453436 0.00531292110634242 28979246 12320756 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.325845679371834 0.326805989205763 0.325764858472572 0.326665140764477 0.00471860587001295 0.00459439427247752 28871009 12357742 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.326029532527675 0.326142023412417 0.326207370107576 0.325764858472572 0.00421321406926031 0.00435543360407707 28887299 12332635 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.326205395012286 0.32679059795664 0.32623788815137 0.32651255054551 0.00476019792447482 0.00473826515281645 28902881 12357160 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.326318223741503 0.326229319827116 0.326344701304646 0.326176852063783 0.0054627233636666 0.00578338543105571 28912878 12335936 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.325524980328051 0.32603283016907 0.325490196078431 0.325917448691539 0.00515925685489962 0.00533801564175856 28842594 12328506 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.325166032153197 0.325542769623545 0.325200274662394 0.325459678034638 0.00457180606192341 0.00431125630187044 28810790 12309975 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.32528594865294 0.325064873982826 0.325123979552911 0.324864576180667 0.00406665321202586 0.00407899958587764 28821415 12291904 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.325678529879016 0.330748608407615 0.325825894560159 0.327595941100175 0.00681917919869537 0.015034845620199 28856199 12506827 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.325960076891024 0.326284009007848 0.325993743801022 0.325978484779126 0.00606198414501868 0.00592081717530552 28881145 12338004 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.326635796491599 0.32612150174692 0.326680399786374 0.326131074998093 0.00559751551382609 0.00551393784664002 28941016 12331859 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.326883462154691 0.326738156638752 0.326848249027237 0.326848249027237 0.00513902449870403 0.00493805481814012 28962960 12355177 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.327065046772514 0.326698250461903 0.326985580224308 0.32660410467689 0.00450679214486222 0.00439475217175402 28979049 12353668 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.326317038684329 0.326424302094783 0.326405737392233 0.326497291523613 0.00476746285466396 0.00461553631593972 28912773 12343309 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.326181061838315 0.326595298343629 0.326024261844816 0.32660410467689 0.0050307010801637 0.00536289124890581 28900725 12349775 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.325512813741065 0.325669496197079 0.325566491187915 0.325459678034638 0.00505634400064718 0.00518599316526574 28841516 12314767 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.325272156844687 0.325609570818192 0.325123979552911 0.325658045319295 0.00442567070262355 0.00464049963973264 28820193 12312501 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.325268782253306 0.324850586540141 0.325413900968948 0.324834058136873 0.00412839359396651 0.00385892692599895 28819894 12283801 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.326381426790779 0.326090454794222 0.326222629129473 0.326146334019989 0.00638954580314998 0.00693878396361994 28918478 12330685 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.326556465378498 0.327083401926207 0.326710917830167 0.327321278706035 0.00566972801348703 0.00503382794820934 28933987 12368232 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.327537162264349 0.327287402090698 0.327687495231556 0.327306019684138 0.00488142399012265 0.00454329303311337 29020880 12375946 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.326775576806828 0.326663104465194 0.326802471961547 0.326436255436027 0.00470455942891784 0.0049006765471824 28953401 12352339 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.326061743510288 0.326675507379006 0.326131074998093 0.326573586633097 0.00581714067387301 0.00599949797283609 28890153 12352808 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.326182845067205 0.326875196935925 0.326268406195163 0.326802471961547 0.0059812254323885 0.00566773654046464 28900883 12360359 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.3264128138765 0.326520457733633 0.326192111085679 0.326527809567407 0.00553269309961705 0.00582387466523427 28921259 12346945 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.32571430731941 0.326019025646661 0.325749599450675 0.325978484779126 0.00557473504432492 0.00556752165208834 28859369 12327984 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.325159982718481 0.325657278401383 0.324971389333944 0.325612268253605 0.00519606568186696 0.00506547053711293 28810254 12314305 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.325235826377612 0.324700852429259 0.325200274662394 0.324864576180667 0.00443624832396546 0.00458617282256543 28816974 12278139 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.325972954512314 0.325597934822291 0.325871671625849 0.325398641947051 0.00591528855219186 0.00556532656747023 28882286 12312061 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.326188713921781 0.326436784344931 0.326024261844816 0.32623788815137 0.00503403891150096 0.00419557965851248 28901403 12343781 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.326861149221045 0.326694336536009 0.327016098268101 0.326848249027237 0.00423475555499536 0.00401232019844625 28960983 12353520 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.326534863479156 0.326555683066677 0.326634622720684 0.32674143587396 0.00418635315473965 0.00402991445694004 28932073 12348277 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.326142699844656 0.326417532060805 0.326115815976196 0.32646677347982 0.00597152638401644 0.0053127762625004 28897326 12343053 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.326455927385114 0.326236433651882 0.326543068589303 0.32674143587396 0.00690148487111528 0.0070336968887177 28925079 12336205 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.326225992434595 0.326672598380031 0.326268406195163 0.326527809567407 0.00567674454215317 0.00569386085651497 28904706 12352698 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.326448331732942 0.326948292146536 0.326390478370336 0.326726176852064 0.00572070993002422 0.00602834652043644 28924406 12363123 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.325232101912208 0.325776203568575 0.325169756618601 0.325490196078431 0.00554675719989376 0.00516842274519596 28816644 12318802 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.325607607028721 0.325701865422038 0.325566491187915 0.325505455100328 0.00528906626463522 0.00531962409619971 28849915 12315991 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.325978924943219 0.326332800854294 0.325993743801022 0.326482032501717 0.00583251979096448 0.00548898311305861 28882815 12339849 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.32605129243464 0.325630489165367 0.326161593041886 0.325719081406882 0.00468091155281332 0.00437927834237882 28889227 12313292 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.326257176367658 0.326403489529389 0.326222629129473 0.32642099641413 0.00445438157309689 0.00426038953511401 28907469 12342522 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.326722576535507 0.326569143798298 0.32664988174258 0.32651255054551 0.00466964625650578 0.00464748633971258 28948705 12348786 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.326739968660317 0.326634622720684 0.326710917830167 0.326436255436027 0.00547617410558648 0.00555370402928607 28950246 12351262 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.326175802441714 0.326499301377451 0.326176852063783 0.326588845654994 0.00695238009139454 0.00705763262558559 28900259 12346145 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.326954599443903 0.326268115295265 0.32664988174258 0.32646677347982 0.0077888747078602 0.00643757015418551 28969263 12337403 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.326080128825872 0.326067182802421 0.326146334019989 0.326024261844816 0.00549557315706091 0.00536491424617185 28891782 12329805 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.326187133845549 0.325579396565186 0.325871671625849 0.325322346837568 0.0051305399339121 0.00548089798142795 28901263 12311360 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.325425469384217 0.325638475689826 0.325398641947051 0.325276569771878 0.00528950876750865 0.00524500700101856 28833777 12313594 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.32526517065049 0.324984294711215 0.325185015640497 0.325139238574807 0.00549612709132834 0.005281880469269 28819574 12288857 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.325715672956724 0.325522353739829 0.325947966735332 0.325658045319295 0.00472055564626373 0.00452819587806574 28859490 12309203 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.325702197163718 0.325671611832697 0.325749599450675 0.326009002822919 0.0044905850308366 0.0043928652783027 28858296 12314847 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.326592479830327 0.326587576273623 0.3265583276112 0.326543068589303 0.00526142854130703 0.0050750015766402 28937178 12349483 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.325991542980556 0.326407905918742 0.325810635538262 0.32628366521706 0.00527734580984404 0.00572803720861155 28883933 12342689 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.326109394094939 0.326831112378729 0.325932707713436 0.327077134355688 0.00585971522142829 0.00570105754976427 28894375 12358692 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.326150250351793 0.326143689475467 0.32628366521706 0.326115815976196 0.00529242980597398 0.00524801118612941 28897995 12332698 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.326271239046122 0.32620546603552 0.326253147173266 0.32628366521706 0.00507668195035381 0.00544172534827881 28908715 12335034 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.325772792712508 0.325637047635784 0.325841153582055 0.325551232166018 0.00472096253387308 0.00444056159440295 28864551 12313540 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.325432895742507 0.325814258564258 0.325459678034638 0.326009002822919 0.00502041257027433 0.00475926084345901 28834435 12320241 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.324929652748904 0.383066356474587 0.324925612268254 0.389440756847486 0.00616447587418636 0.0275037912626366 28789846 18803086 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.325377480211802 0.325153307551669 0.325276569771878 0.325108720531014 0.00499060978920978 0.00426324150671706 28829525 12295248 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.325279921790741 0.325121149890271 0.325291828793774 0.325200274662394 0.00507510599633255 0.0050663218906004 28820881 12294032 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.325626816241197 0.325498129712 0.325459678034638 0.325490196078431 0.00518143993819764 0.00488615242427055 28851617 12308287 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.326300594605259 0.326401955693566 0.326314183260853 0.326482032501717 0.00537276461952178 0.00571056226311893 28911316 12342464 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.325836797086159 0.326032195478384 0.325825894560159 0.325963225757229 0.00496139639924113 0.00463183063606683 28870222 12328482 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.326217335874096 0.326396745940856 0.32628366521706 0.326390478370336 0.0043719596457451 0.00413124685475027 28903939 12342267 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.325879470430679 0.325743437661937 0.325963225757229 0.325780117494469 0.00422657422322847 0.00468237826778895 28874003 12317563 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.32546549045792 0.326447864986482 0.325398641947051 0.32632944228275 0.00414363316941241 0.004204084220729 28837323 12344200 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.324970396143169 0.325222673954502 0.324925612268254 0.325062943465324 0.00465269891891069 0.00400824219803438 28793456 12297871 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.324049358421332 0.378564374584337 0.324071107042039 0.381445029373617 0.00696290110833136 0.0308639678856542 28711849 18582103 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.324500515330577 0.324718438650336 0.32457465476463 0.324635690852216 0.00594712347703399 0.00514998761228385 28751823 12278804 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.324944200736496 0.32484006125294 0.324834058136873 0.324650949874113 0.00561395279178955 0.00579017633087012 28791135 12283403 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.324840976613517 0.32497622885042 0.324498359655146 0.325154497596704 0.00632882633791547 0.00587994569735733 28781989 12288552 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.325568590432052 0.325784851229164 0.325413900968948 0.325597009231708 0.0059114055762824 0.00561785636044974 28846458 12319129 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.325916421641988 0.326435805863458 0.325902189669642 0.326390478370336 0.00522786828006651 0.00504541861304901 28877277 12343744 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.326140803753178 0.325309838141975 0.325871671625849 0.32489509422446 0.00476273514165645 0.00409440705660703 28897158 12301167 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.325440581684749 0.325571383595282 0.325322346837568 0.325429159990845 0.00418055641604728 0.00383880119851208 28835116 12311057 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.325476607422837 0.325256841469737 0.325474937056535 0.325490196078431 0.00444901750702445 0.00425188231630801 28838308 12299163 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.324769681316682 0.376627697676774 0.324742504005493 0.379095140001526 0.00489022122092214 0.0264727424965022 28775672 21251457 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv new file mode 100644 index 0000000..863c612 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.0341242517774729 0.0401362253167377 0.0341039139391165 0.040161745632105 0.00232103093659491 0.00455428343384941 3023522 2264712 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.0339665488832698 0.0339275228194441 0.0339818417639429 0.0338902876325628 0.0018787220569197 0.00189670551245778 3009549 1282925 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.034092018222342 0.0339177644501549 0.0340886549172198 0.0338750286106661 0.00165059572470021 0.00161005788781984 3020666 1282556 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0340302033828981 0.0339913092333346 0.0340123598077363 0.0339665827420462 0.0014983663997885 0.00148519517624363 3015189 1285337 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0339913560801108 0.0338703213214154 0.0339665827420462 0.0338597695887694 0.00182069413034231 0.00174538408831041 3011747 1280762 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.0344716202507987 0.0340048228558463 0.0341039139391165 0.0341191729610132 0.00406079320679463 0.00257111662354886 3054300 1285848 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.0338043992030998 0.034089368944241 0.0337376974135958 0.0338750286106661 0.00255319564397016 0.00266431355619333 2995182 1289045 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.033912431272327 0.0338593464616457 0.0338750286106661 0.0337529564354925 0.0023050019096045 0.00233469607884661 3004754 1280347 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.0340520084348984 0.0338370000604278 0.0340428778515297 0.0337834744792859 0.00181824336618605 0.00169819548907395 3017121 1279502 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0339057159483414 0.0397010507724016 0.0338750286106661 0.039810788128481 0.00184723346054177 0.0033375559267788 3004159 2240157 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.0340199554599083 0.0341552709937498 0.0338902876325628 0.0340581368734264 0.00207619172855078 0.00204812482965723 3014281 1291537 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.0338733130993286 0.0341718522879079 0.0338750286106661 0.0341954680704967 0.00188416845122721 0.00195167484041066 3001288 1292164 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.033974641130829 0.0340927804066754 0.0339208056763561 0.034027618829633 0.00162377476883329 0.00144467717527598 3010266 1289174 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0340482501107182 0.0342584082301399 0.0340581368734264 0.0341802090486 0.00168194626783612 0.00163922032367958 3016788 1295437 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0340345260200182 0.0341798917032572 0.0340123598077363 0.0341802090486 0.00170597664188722 0.0015904239447928 3015572 1292468 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.0341025821605782 0.0341097583825119 0.0340581368734264 0.0341039139391165 0.00211130661588777 0.00208299773025539 3021602 1289816 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.0340163551433513 0.0341877724459353 0.0340428778515297 0.0341496910048066 0.00215511601287191 0.00196658508642782 3013962 1292766 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.0341679521715439 0.0341778289585294 0.0341649500267033 0.0341649500267033 0.00219479624064669 0.00239331610073379 3027394 1292390 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.034038589073186 0.0340412646793708 0.0340428778515297 0.0340428778515297 0.00173059889679859 0.00166686743058635 3015932 1287226 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.0338436189524275 0.0340396250617666 0.0338139925230793 0.034027618829633 0.00171787560898591 0.00168337204690377 2998657 1287164 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.0339607816050234 0.0340869095178347 0.0339208056763561 0.034027618829633 0.00237132485641644 0.00221584950268535 3009038 1288952 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.0339838281454916 0.0340673927792563 0.0339208056763561 0.0340733958953231 0.00213360176423082 0.00205801267982297 3011080 1288214 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.0341464969935664 0.0341802883849357 0.0341649500267033 0.0342412451361868 0.0019237097184265 0.00204352910563597 3025493 1292483 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.0342016529403187 0.0342977326071943 0.0342259861142901 0.0342870222018769 0.00170953598286098 0.00177950999640886 3030380 1296924 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.0340961489930626 0.0339959636316948 0.0340733958953231 0.0339208056763561 0.00166918281712877 0.00172015672535269 3021032 1285513 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.0342540098948888 0.0344080630046865 0.0342565041580835 0.0343633173113603 0.00185399005786897 0.00175539903308173 3035019 1301096 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.0340863976654599 0.0340375887624841 0.0340581368734264 0.0339208056763561 0.00211152605430263 0.0020129570604241 3020168 1287087 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.0342103997908882 0.0339584375449159 0.0341954680704967 0.0337987335011826 0.0021072390368633 0.00206176140976831 3031155 1284094 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.0340770074981389 0.0340557567833559 0.0340733958953231 0.0340428778515297 0.00178892248458059 0.00183918323638487 3019336 1287774 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.0340267385014467 0.0338659578229528 0.0340428778515297 0.0338597695887694 0.00157772285042434 0.00153082883776045 3014882 1280597 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.034155571145641 0.0344283202157314 0.0341039139391165 0.0342412451361868 0.00256285669913527 0.00297839056432449 3026297 1301862 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.0342335704802032 0.0340751677401534 0.0342870222018769 0.0340886549172198 0.00244337579237153 0.00217725679003911 3033208 1288508 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.0342688964702451 0.0342115469011955 0.0342870222018769 0.0342259861142901 0.00201250794822005 0.00214775963712464 3036338 1293665 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.034109681217363 0.03402552963946 0.0340733958953231 0.0339360646982528 0.00186468979686093 0.00185921473694305 3022231 1286631 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.0342018673792359 0.0343384057019553 0.0342412451361868 0.0343022812237736 0.001753505186351 0.00166927854223963 3030399 1298462 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.034200738753356 0.0342559223582884 0.0342259861142901 0.0341496910048066 0.00175762747741221 0.00169162542643479 3030299 1295343 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.0341881432885359 0.0339655778151276 0.0341344319829099 0.0339360646982528 0.00199302764927029 0.00201306118248758 3029183 1284364 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.0339417868314641 0.0342025025589274 0.0339665827420462 0.0342870222018769 0.00205667353282797 0.00197373880004632 3007355 1293323 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.0340486225572586 0.0339736436759222 0.0339818417639429 0.0339971007858396 0.00179987978762103 0.00176324628207338 3016821 1284669 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.0340132852809579 0.0340992859862016 0.0340581368734264 0.0340123598077363 0.00156120516905259 0.00152949136551468 3013690 1289420 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.0341140151407419 0.034133982410341 0.0341039139391165 0.0341039139391165 0.00255911356751465 0.00270934427272999 3022615 1290732 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.0342182437407537 0.0340954778420887 0.0341802090486 0.0341191729610132 0.00213960239444386 0.00200834544146117 3031850 1289276 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.0342017432303891 0.0344453510824584 0.0342107270923934 0.0344396124208438 0.00183098562665207 0.00183256532917925 3030388 1302506 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.0342991323575685 0.0341452746154535 0.0343022812237736 0.0342412451361868 0.00186193975675809 0.00193668616617461 3039017 1291159 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.0342579036541746 0.0342316718850142 0.034332799267567 0.0341191729610132 0.00224655876685899 0.00217447099275466 3035364 1294426 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.0341453345089101 0.0340639813168219 0.0342107270923934 0.0341191729610132 0.00221058133246784 0.00211680984932526 3025390 1288085 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.0340821088871162 0.0343161650825184 0.0340581368734264 0.0342107270923934 0.00209115323186559 0.00209096392383115 3019788 1297621 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.0340344583024654 0.0340736867952206 0.0340581368734264 0.0339818417639429 0.00220062186957151 0.00211521427193083 3015566 1288452 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.0338709768437571 0.0342922055091416 0.0338597695887694 0.0342412451361868 0.00188736750036673 0.00189042218534418 3001081 1296715 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.0340240523718524 0.0339479122577151 0.0339971007858396 0.0338597695887694 0.00174361931800719 0.00159408915623382 3014644 1283696 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.0340244925359456 0.034195626743168 0.0339208056763561 0.0340886549172198 0.00213884147763342 0.00209518982482096 3014683 1293063 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.034081894448199 0.0341184853794373 0.0341039139391165 0.0339360646982528 0.00182843284184399 0.00176372743214498 3019769 1290146 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.0341253916896116 0.0342901956553042 0.0340733958953231 0.0341954680704967 0.00155621355080601 0.00167074295825717 3023623 1296639 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.0342894938925539 0.0343208194808786 0.0342107270923934 0.0343480582894636 0.00165903070319864 0.00156218495148747 3038163 1297797 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.0342004340243684 0.0340326170187812 0.0341802090486 0.034027618829633 0.00222082213922199 0.00204497742580406 3030272 1286899 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.0341341498264399 0.0340837096189621 0.0340581368734264 0.0341649500267033 0.00251960892476392 0.00264256528707953 3024399 1288831 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.0340558119041138 0.0340450199325932 0.0340733958953231 0.0340733958953231 0.00215816163483128 0.00204361388130941 3017458 1287368 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.0340674254644183 0.0342710755984042 0.0339971007858396 0.0342412451361868 0.00213890080998603 0.0021412675604105 3018487 1295916 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.0340894223828182 0.0340384085712861 0.0341344319829099 0.0340123598077363 0.00202971527388642 0.0020464294832029 3020436 1287118 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.0340165131509745 0.0337812001709962 0.0339971007858396 0.0336308842603189 0.00194849135385621 0.00205853217145821 3013976 1277392 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.0341452780776161 0.0339648373426612 0.0341039139391165 0.0339665827420462 0.00220770364691834 0.00208072641550592 3025385 1284336 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.0339782075886095 0.0340928861884563 0.0339971007858396 0.0341191729610132 0.00183987052638846 0.00156546392125131 3010582 1289178 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.0341999600014988 0.034045231496155 0.0341954680704967 0.0339971007858396 0.00159563810275765 0.00161613341699175 3030230 1287376 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.0340961941380978 0.0340025221021114 0.0341039139391165 0.0339818417639429 0.00166387947477575 0.00157681555004101 3021036 1285761 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.0339547321703069 0.0340703282236766 0.0338597695887694 0.0340886549172198 0.00208128907460067 0.0020095436201641 3008502 1288325 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.0340609358656086 0.0342448946076283 0.034027618829633 0.0342870222018769 0.00258313033988683 0.00271527073160601 3017912 1294926 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.0339681515320193 0.0340472413499924 0.0339208056763561 0.0339665827420462 0.00242778485310757 0.00246798907492788 3009691 1287452 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.0341412940282599 0.0340205578957571 0.0341496910048066 0.0340428778515297 0.00213694289721513 0.00207737761362831 3025032 1286443 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.0341547923937839 0.0339971272312849 0.0341649500267033 0.0339055466544594 0.00184547533724883 0.00207389017720102 3026228 1285557 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.0339053435018011 0.0340803774928634 0.0338902876325628 0.0341191729610132 0.00191765062415591 0.00192091086081286 3004126 1288705 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.0339374190493088 0.0340081020910546 0.0339208056763561 0.0340428778515297 0.00212420478854122 0.00216733416537328 3006968 1285972 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.0339317872061679 0.0338889389148561 0.0338597695887694 0.0337987335011826 0.00176354620963306 0.00165766926152841 3006469 1281466 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.034054954148445 0.0340585600005501 0.0340581368734264 0.0339971007858396 0.00179754475530556 0.00158465387701523 3017382 1287880 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.0341032141910709 0.0341240389229352 0.0341039139391165 0.0341496910048066 0.00191032564902607 0.00203399426853756 3021658 1290356 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.0342862321637609 0.0340406299886853 0.0342870222018769 0.0339360646982528 0.00206830127557944 0.00215443937528605 3037874 1287202 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.0340782151278304 0.0342063900393759 0.034027618829633 0.0341802090486 0.00224926453498847 0.00226880386711209 3019443 1293470 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.0341351091584379 0.0341433176525066 0.0340581368734264 0.0342107270923934 0.00199044966619715 0.00195358597499592 3024484 1291085 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.034230658625433 0.0343901858837122 0.0343022812237736 0.0344090943770504 0.00190022233615257 0.00203762497266253 3032950 1300420 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.0341242856362493 0.034136177382295 0.0341649500267033 0.0341039139391165 0.00168018978443553 0.00177290563386227 3023525 1290815 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.0340964988670853 0.0340356582449824 0.0340428778515297 0.034027618829633 0.00182872735100724 0.00184115179496205 3021063 1287014 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0339691221502761 0.0399139749721482 0.0339971007858396 0.0402532997634852 0.00230215377732994 0.00361431822548196 3009777 1959206 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.0338028529856443 0.0339295326732815 0.0337376974135958 0.034027618829633 0.00189008921576892 0.00175246041611455 2995045 1283001 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.0341426596655746 0.0339190602769711 0.0341039139391165 0.0339971007858396 0.00197129635595983 0.0019020939652506 3025153 1282605 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.0339658265627067 0.0339609498622126 0.0339208056763561 0.0339513237201495 0.00198758565272469 0.0018446257635207 3009485 1284189 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.0340713305099628 0.0342669501089486 0.0340886549172198 0.0342412451361868 0.00205697702582422 0.00212052755285061 3018833 1295760 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.0340202263301195 0.0341247793954016 0.0339665827420462 0.034027618829633 0.00182259145861686 0.00189349594780799 3014305 1290384 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.0340738473456751 0.0339954347227902 0.0339665827420462 0.0339818417639429 0.00167760778513347 0.00165035226447378 3019056 1285493 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.0341205047395515 0.0343018580966499 0.0340733958953231 0.0342870222018769 0.0015912959364071 0.00141242456954788 3023190 1297080 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.0340101815597881 0.0338695279580586 0.034027618829633 0.0338750286106661 0.00154522613661214 0.00155174390449074 3013415 1280732 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.033953490681839 0.0338724105115885 0.0338902876325628 0.0338597695887694 0.00169935208879333 0.00158611011706509 3008392 1280841 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.0336270130735507 0.0395399150241572 0.0336308842603189 0.0398413061722744 0.00258558820882341 0.00432052138986467 2979465 1940845 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.0337759578309255 0.0337643544223859 0.0337529564354925 0.0337224383916991 0.00218433673886516 0.00187305824071368 2992662 1276755 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.0339567862694084 0.0340178340148986 0.0339818417639429 0.0340123598077363 0.0021841991872496 0.00221338728849513 3008684 1286340 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.0340086579148501 0.0340308980648413 0.0338902876325628 0.0339971007858396 0.00245412687159757 0.00236468327966334 3013280 1286834 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.0338976349870411 0.0340906383256119 0.033829251544976 0.0343175402456703 0.00224687062588509 0.00222856707543198 3003443 1289093 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.0341198727090588 0.0338104488334187 0.034027618829633 0.0337224383916991 0.00199152457444443 0.00198681988887274 3023134 1278498 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.0340238830779704 0.0341947540434755 0.0339971007858396 0.0342107270923934 0.00170021669014599 0.00164048623703019 3014629 1293030 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.0341306623724709 0.0340759082126198 0.0341191729610132 0.0341344319829099 0.00159513812764771 0.00153211234547034 3024090 1288536 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.0340688249605094 0.0339877390982288 0.0340581368734264 0.0338750286106661 0.00168844098793522 0.00173362495044375 3018611 1285202 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.0340215581086578 0.0393444043651436 0.0339665827420462 0.0395513847562371 0.00183573501284853 0.00330325923858247 3014423 2220033 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv new file mode 100644 index 0000000..807b65d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.238031351421143 0.943967187963414 0.237170977340352 1 0.00781607760771129 0.146418893834762 22509912 53263948 1443 861 77 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.233745385084364 0.232571162379133 0.232974746318761 0.2323338673991 0.00818824370103412 0.00436733067397709 22104601 8794375 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.231396489716471 0.231535928980228 0.231311512932021 0.231616693369955 0.00378117512336024 0.00380794188211606 21882473 8755229 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.231034407825436 0.230889866753302 0.231036850537881 0.230792706187533 0.00450064908050634 0.00478483772105436 21848232 8730799 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.231109518589491 0.230621181029783 0.231189440756847 0.230685893034257 0.00553645177969946 0.00648851323428812 21855335 8720639 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.23106900763115 0.231496816166735 0.231113145647364 0.231586175326162 0.00592949372536015 0.00547836203323846 21851504 8753750 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.231268506388671 0.231589877688494 0.231433585107195 0.231418326085298 0.00513590366585538 0.00493446363572452 21870370 8757269 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.231000569384639 0.231497847539099 0.23099107347219 0.231372549019608 0.00452414425032521 0.00476832704851138 21845032 8753789 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.232239764810147 0.232097233555197 0.23224231326772 0.232043945983062 0.00393573944613744 0.00342919450823167 21962219 8776454 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.235345192543636 0.934144524913189 0.235019455252918 1 0.00535088673133168 0.158671704381925 22255890 52709698 1443 861 76 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.231781824961042 0.231868480453973 0.231692988479438 0.231662470435645 0.00481448974348531 0.00455044699178023 21918913 8767804 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.231866738298416 0.232248316383786 0.231815060654612 0.231631952391852 0.0035144848015919 0.00507854107040475 21926943 8782167 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.231565798240094 0.231588211625444 0.231494621194781 0.231692988479438 0.00365550509123441 0.00322393629539831 21898484 8757206 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.231456933631344 0.230700808265365 0.231418326085298 0.230609597924773 0.00373066383516919 0.00352525428138466 21888189 8723650 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.231743037648279 0.232061426422358 0.231631952391852 0.232196536202029 0.00484813180286334 0.00476898741751031 21915245 8775100 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.23202474266791 0.231742917480029 0.232013427939269 0.231601434348058 0.0055974988186467 0.00546226696061508 21941885 8763056 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.231809350417728 0.231839073118879 0.231845578698405 0.231769283588922 0.00445766818202342 0.0041120681825985 21921516 8766692 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.231660778513605 0.23145733311701 0.231540398260472 0.231479362172885 0.00396181759951931 0.0037286966620815 21907466 8752257 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.231520148068557 0.23140811814344 0.231555657282368 0.231494621194781 0.00335847240838844 0.00329611693401762 21894167 8750396 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.231885740697826 0.231547432748902 0.231891355764096 0.231494621194781 0.00400577636996884 0.00401397879470852 21928740 8755664 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.231884693821064 0.231619364359923 0.231860837720302 0.231586175326162 0.00454443297557744 0.00430739512618062 21928641 8758384 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.232345943492659 0.232145073365615 0.232227054245823 0.232303349355306 0.00376278983245842 0.00331660747476883 21972260 8778263 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.231827559728681 0.232164246313406 0.231891355764096 0.232303349355306 0.00412102071022871 0.00447423964330022 21923238 8778988 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.231933400026785 0.231887018711078 0.231921873807889 0.231891355764096 0.00392471559976745 0.00390620120801739 21933247 8768505 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.232172912740548 0.232812741521293 0.232104982070649 0.232669565880827 0.00452236564942523 0.00464899860449508 21955897 8803510 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.232647295956978 0.233235154617923 0.232455939574273 0.233173113603418 0.00484134402075812 0.0047743761640222 22000758 8819483 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.233123656607291 0.233215346979448 0.233218890669108 0.233325703822385 0.00442387968989071 0.0045822977911098 22045806 8818734 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.232265534897716 0.232361582225699 0.232089723048753 0.23224231326772 0.00422271972638633 0.00418389264760087 21964656 8786450 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.232475883105318 0.231999967207648 0.232547493705653 0.231998168917372 0.00343208150779161 0.0033204318581288 21984548 8772776 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.231698666992785 0.231881941185594 0.231647211413748 0.231647211413748 0.00369983905039056 0.00350701730991664 21911049 8768313 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.233645910642935 0.231889927710053 0.232639047837034 0.231738765545129 0.00834339372836898 0.00565941298782009 22095194 8768615 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.232339968892956 0.231874642242711 0.23224231326772 0.231876096742199 0.00409366248211401 0.00380762259152478 21971695 8768037 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.232549312521846 0.233070346603261 0.232455939574273 0.232867933165484 0.00419457531261956 0.0041692803953239 21991492 8813251 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.232962310691768 0.232781509450478 0.232684824902724 0.232776379034104 0.00394197844479232 0.00392440425045112 22030548 8802329 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.233497000354405 0.233164968406288 0.233478294041352 0.233112077515831 0.00481146138332624 0.00394792890362398 22081112 8816829 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.233422746125882 0.233005449480671 0.233554589150835 0.233051041428244 0.00429172743320365 0.0042368487974179 22074090 8810797 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.233257001213055 0.233779507662502 0.233234149691005 0.233813992523079 0.00386922390299735 0.00415179492222766 22058416 8840067 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.23327548546134 0.232986435205552 0.233203631647211 0.232806897077897 0.00394886692619395 0.00414016653927678 22060164 8810078 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.232709336623276 0.232717405691245 0.232715342946517 0.23256275272755 0.00376879669846968 0.00376133769740657 22006625 8799905 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.231755758787116 0.232049975544575 0.231876096742199 0.232074464026856 0.00352241629727206 0.00354750645154161 21916448 8774667 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.232821267840723 0.232327070919676 0.232303349355306 0.232364385442893 0.0066515469905979 0.00584363452120096 22017210 8785145 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.232568198601616 0.23247175395052 0.232547493705653 0.232547493705653 0.00446340963995756 0.00454080911104342 21993278 8790616 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.232534984057071 0.232385383126404 0.232440680552377 0.232196536202029 0.00465123206823217 0.00454247779264248 21990137 8787350 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.23351252373912 0.233305261493224 0.233463035019455 0.233173113603418 0.00465843955125229 0.0043517610927115 22082580 8822134 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.233979145263192 0.23416574339006 0.234103913939117 0.23399710078584 0.00474439037820289 0.00498392513784465 22126707 8854672 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.233741504238185 0.233576909106608 0.233646143282216 0.233264667734798 0.00484956857255855 0.00471332194250817 22104234 8832406 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.234085450839857 0.234324283834203 0.234058136873426 0.234622720683604 0.00419938796759392 0.00395782072920004 22136760 8860667 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.233767126282576 0.234032934364124 0.233646143282216 0.23404287785153 0.00433058014156549 0.00404182983119163 22106657 8849650 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.232800076517174 0.232809092049851 0.232822156099794 0.232745860990311 0.00436882735045731 0.00401973872500543 22015206 8803372 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.231936942488556 0.231761640855251 0.231982909895476 0.231708247501335 0.00435362736813195 0.00457673204977394 21933582 8763764 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.232538061240281 0.231579458183074 0.232639047837034 0.231479362172885 0.00525858689140308 0.0053463340780927 21990428 8756875 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.232319771573605 0.232955890716313 0.232272831311513 0.232959487296864 0.00417092873068883 0.00446175439189078 21969785 8808923 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.233442308974467 0.232958984833405 0.233661402304112 0.233066300450141 0.00427139601502263 0.00403736283877643 22075940 8809040 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.234080142434457 0.234685740179583 0.234027618829633 0.234332799267567 0.00493340524557749 0.00466947784404587 22136258 8874335 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.234045257116898 0.23359214168306 0.234027618829633 0.233539330128939 0.00565541605786926 0.00630293768683896 22132959 8832982 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.234379887572838 0.234354034960085 0.23422598611429 0.23427176317998 0.00520949448649856 0.00586642057857678 22164604 8861792 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.234619347414037 0.234616876240209 0.234668497749294 0.23431754024567 0.00487759920852314 0.00507394951649119 22187249 8871731 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.23369866688704 0.234020769459319 0.233615625238422 0.233981841763943 0.00496448932378441 0.00509283554474588 22100183 8849190 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.232559887034595 0.232484527100565 0.232578011749447 0.23265430685893 0.00446947712890671 0.00482340608606103 21992492 8791099 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.23206528534979 0.232210710960672 0.232013427939269 0.231937132829786 0.00497530100343972 0.00530330287426723 21945719 8780745 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.232085747031959 0.232012290785124 0.231921873807889 0.231860837720302 0.00462979355245498 0.00433329523228389 21947654 8773242 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.233069504527504 0.232775215434514 0.232990005340658 0.232730601968414 0.00400593700289736 0.00399317310837065 22040685 8802091 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.233852959602559 0.233615731020203 0.233859769588769 0.233661402304112 0.0038850681834158 0.00358986809852647 22114774 8833874 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.234356581346739 0.234443923028416 0.234348058289464 0.234256504158083 0.00414996699049541 0.00373890353997098 22162400 8865191 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.234619231094397 0.234279405913651 0.234393835355154 0.234424353398947 0.00577722090168867 0.0059277122425888 22187238 8858970 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.234701627697737 0.234241826935982 0.234653238727398 0.234500648508431 0.00526193184328205 0.0052698348433276 22195030 8857549 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.234451455875123 0.234930572111506 0.234531166552224 0.234958419165332 0.00456628458255214 0.00455679162909527 22171372 8883593 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.233376440334554 0.233731165388624 0.233295185778592 0.233813992523079 0.00437446565655663 0.0043572743735533 22069711 8838239 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.232392619391933 0.232214995122799 0.232349126420996 0.231998168917372 0.00394446270152825 0.00404448829660188 21976674 8780907 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.232310138192491 0.231886569138509 0.232364385442893 0.231860837720302 0.0042447055252152 0.00502785012161026 21968874 8768488 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.232806664438617 0.232327282483238 0.232623788815137 0.231815060654612 0.00455288287741297 0.00494733915339483 22015829 8785153 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.232785515413119 0.233223650849249 0.232745860990311 0.232959487296864 0.00361655058891965 0.00386097627768653 22013829 8819048 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.233930407333932 0.233640801302279 0.233829251544976 0.233356221866178 0.00363101221074365 0.00395118008491641 22122098 8834822 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.234030495097101 0.234276840705464 0.2341802090486 0.234470130464637 0.00407032228858961 0.00421468921166913 22131563 8858873 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.234578899902773 0.234282896712421 0.234699015793088 0.234210727092393 0.00524413548373611 0.00493710452042966 22183424 8859102 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.234431089363568 0.233925380738381 0.234164950026703 0.23399710078584 0.00550032689098538 0.00574876751875778 22169446 8845583 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.234035866949577 0.2343714096176 0.233936064698253 0.234393835355154 0.00420936422872248 0.00436322272251658 22132071 8862449 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.232539784885859 0.232471674614184 0.232547493705653 0.23228809033341 0.0037090618254977 0.00410488827326312 21990591 8790613 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.232141569884761 0.232449698449199 0.232211795223926 0.23242542153048 0.00346154138616971 0.00318987295676497 21952933 8789782 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.231591155921666 0.231678549266344 0.231662470435645 0.231433585107195 0.00426205486578991 0.00412983270915137 21900882 8760622 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.242271762757 0.98346975285987 0.241443503471427 1 0.00743591373386109 0.0641741145277954 22910915 48274316 1443 749 86 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.235354307773626 0.234287207319993 0.234485389486534 0.234302281223774 0.00519242001004262 0.00332570273475311 22256752 8859265 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.233338911388808 0.233113902251552 0.233340962844282 0.232959487296864 0.00356015093831284 0.00398453465086948 22066162 8814898 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.233754013886767 0.23343807051916 0.233508812085145 0.233432516975662 0.00405293995233443 0.00396987965797912 22105417 8827156 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.23377048897763 0.233793391521246 0.233829251544976 0.23404287785153 0.00464876455546306 0.00508148881211916 22106975 8840592 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.234054055111505 0.234220882143361 0.233783474479286 0.234027618829633 0.00453626511138784 0.00407105073920094 22133791 8856757 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.233304216412479 0.233022030774829 0.233203631647211 0.232883192187381 0.00389014773863844 0.00386356099495206 22062881 8811424 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.233397124081491 0.232389111934182 0.23237964446479 0.23242542153048 0.0150520956996059 0.00345095878691603 22071667 8787491 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.231912303873851 0.232239959623094 0.231921873807889 0.232166018158236 0.00362237141286652 0.00330066826675117 21931252 8781851 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.232006935188441 0.231761878864258 0.231937132829786 0.231631952391852 0.00395286220384651 0.00367767013058688 21940201 8763773 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.241704937150119 0.983268472304009 0.240161745632105 1 0.00906019959735573 0.0614960981880205 22857312 48264436 1443 749 86 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.235348100534642 0.234295035171781 0.234287022201877 0.23440909437705 0.0057579393863381 0.00391543563412727 22256165 8859561 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.232447881795559 0.232777886424482 0.23256275272755 0.23265430685893 0.00402420227174488 0.00421670401215223 21981900 8802192 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.23312838341449 0.232935950850611 0.233203631647211 0.232959487296864 0.00399554337483767 0.00361963161404228 22046253 8808169 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.233253691390565 0.233703503452916 0.233234149691005 0.233783474479286 0.00453166125756429 0.00455082844266822 22058103 8837193 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.233417300251816 0.232904851007023 0.233508812085145 0.232639047837034 0.00458504627001155 0.00462762208767446 22073575 8806993 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.232857866229347 0.232555030657544 0.232669565880827 0.232349126420996 0.00388014735233505 0.00356097538350805 22020671 8793765 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.232867309269232 0.232042888165253 0.23224231326772 0.231692988479438 0.00523098959367313 0.00402750473961797 22021564 8774399 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.232120706371107 0.231345336656468 0.232028686961166 0.231601434348058 0.00395118846352471 0.00360897010568219 21950960 8748022 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.235418315299295 0.929592214602459 0.235294117647059 1 0.0056581819119766 0.167336136098595 22262805 52452831 1443 861 77 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv new file mode 100644 index 0000000..b0b93f5 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.0239759522890674 0.162283401861583 0.0239566643778134 0.18651102464332 0.00210763733123286 0.0487222666134949 2267334 9156944 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.0235062958798367 0.0231254575888445 0.0234073395895323 0.0231021591515984 0.00175712299700204 0.0017182296662069 2222920 874459 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.0232013903792343 0.0233502438732845 0.0232547493705653 0.0233157854581521 0.00161526784851389 0.00152990323383705 2194086 882959 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.0232763742491369 0.0235029927649229 0.0233005264362554 0.0234836346990158 0.00180739052557434 0.00161586573887629 2201177 888735 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.0235078609077236 0.0232410770753823 0.0234988937209125 0.0233005264362554 0.00227123196173069 0.0024159830984572 2223068 878831 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.0233946713232591 0.0235237259939818 0.0233920805676356 0.0234836346990158 0.00237969276311146 0.00219895292177899 2212364 889519 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.0233548159847084 0.0230481046615519 0.0233157854581521 0.0229953459983215 0.00202428205264485 0.00198408445872189 2208595 871534 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.023429799854611 0.0232656448939994 0.0233615625238422 0.0233310444800488 0.00178528986336143 0.00186782033146736 2215686 879760 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.0235582590354849 0.0235129626977739 0.0235904478522927 0.0235599298084993 0.00147576700701466 0.00131948147130318 2227834 889112 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.0239390260905482 0.163916666600208 0.0239566643778134 0.187106126497292 0.00183239101680414 0.0506214728830916 2263842 9249102 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0232657362893115 0.0235501978846553 0.0231937132829786 0.0236057068741894 0.00175214143011803 0.00177665324260195 2200171 890520 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0233119469100243 0.0234621874429357 0.0233157854581521 0.0233768215457389 0.00140160897095065 0.0016693717298339 2204541 887192 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.0233703922419876 0.02343777829699 0.023422598611429 0.0234531166552224 0.00144745400324626 0.00140863958733292 2210068 886269 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.0234393274905978 0.0233816081713252 0.0234531166552224 0.0233920805676356 0.00145708659477696 0.00140684331782992 2216587 884145 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.0236299753809481 0.0233722993746049 0.0236057068741894 0.0233157854581521 0.00193548862367304 0.00192924749315752 2234616 883793 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.0235418262426731 0.0235406246334827 0.0235294117647059 0.0234378576333257 0.00215390542700357 0.00222018406719432 2226280 890158 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.0235016219452017 0.023297114973821 0.0234683756771191 0.023270008392462 0.00185301368573228 0.00160377156098485 2222478 880950 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.023277421125899 0.0234508423469328 0.0232547493705653 0.0233920805676356 0.00162514459686732 0.00157315824401208 2201276 886763 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.0234877904825261 0.0232486140272724 0.0234988937209125 0.023224231326772 0.00143971661173163 0.00135899005968997 2221170 879116 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.0233219503990848 0.0235145758699328 0.0233310444800488 0.0235141527428092 0.00154682869977982 0.00163832752415387 2205487 889173 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0232166282521055 0.0234133955964896 0.023224231326772 0.0233768215457389 0.00182863575763351 0.00200962006967754 2195527 885347 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.0233466418863535 0.0233280032538476 0.0233463035019455 0.0232852674143587 0.00142079950127011 0.00125042069899708 2207822 882118 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.0233870470995671 0.0235792085380707 0.0233920805676356 0.0235141527428092 0.00155539432222222 0.00178565824132865 2211643 891617 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0234877587589879 0.0234019182732605 0.0234836346990158 0.0233615625238422 0.00157492226414498 0.00148530171898761 2221167 884913 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0234505047505734 0.0234604420435506 0.023422598611429 0.0234836346990158 0.00172520827856622 0.00181805620892526 2217644 887126 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.0235654285551287 0.0235350181990943 0.0235599298084993 0.0234836346990158 0.00184242701034367 0.00193524537458042 2228512 889946 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.0233428879343276 0.0234121791060091 0.0232852674143587 0.0233463035019455 0.00176918472164416 0.00179557347973093 2207467 885301 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.0234247558120298 0.023625250058213 0.0233768215457389 0.023575188830396 0.00167625571439964 0.00159614213039129 2215209 893358 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.0235012624117683 0.0234274116824605 0.0234836346990158 0.0234378576333257 0.00139097526514973 0.00142329638241015 2222444 885877 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.0234729650156521 0.0235537415743159 0.023422598611429 0.0235294117647059 0.00146201964457674 0.00137097206803944 2219768 890654 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0236774760922163 0.0233004999908102 0.0236057068741894 0.0232852674143587 0.0020997459786858 0.00210977763586244 2239108 881078 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.0233793594287987 0.0234248200288282 0.0233615625238422 0.0233920805676356 0.00162980075210187 0.00145944076797823 2210916 885779 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.0234209807109784 0.0233585477430862 0.0233463035019455 0.0233615625238422 0.00162049258507992 0.00172177670768499 2214852 883273 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.023557286180312 0.02363590757264 0.0234836346990158 0.0236057068741894 0.00150456778644908 0.00149668045655592 2227742 893761 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.0236753083171028 0.0235758764119719 0.0236514839398795 0.0234988937209125 0.00172249130574837 0.00156263195856931 2238903 891491 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.0237006342751365 0.023587935534996 0.0236667429617761 0.023575188830396 0.00183960525865516 0.00159236498182304 2241298 891947 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.0235619389659216 0.0233996439649709 0.0236057068741894 0.0234073395895323 0.00156688610596495 0.00155705171581926 2228182 884827 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.0235865458570883 0.023603459011345 0.0235904478522927 0.0236057068741894 0.00153089706191619 0.0017014348073132 2230509 892534 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.0233975052926758 0.0235574174912026 0.0234073395895323 0.0235904478522927 0.001434887404613 0.00140197205010238 2212632 890793 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.0234245866198258 0.0235745541397105 0.023422598611429 0.0235294117647059 0.00143034934065916 0.00140346619900496 2215193 891441 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.0232813759936671 0.0234414542138767 0.0232547493705653 0.0234988937209125 0.00228741801943916 0.00246478424424233 2201650 886408 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.0234356264111357 0.0233303304530277 0.023422598611429 0.0232852674143587 0.0018343436417528 0.00183846099792949 2216237 882206 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.0235230564825438 0.023548082249037 0.0234836346990158 0.0234988937209125 0.0018231840855165 0.00180824831374153 2224505 890440 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.0235710436213984 0.0237440694436235 0.0235294117647059 0.0236972610055695 0.00191954548851756 0.00178475841492762 2229043 897851 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.02360913301632 0.0235658271427852 0.0235294117647059 0.0235446707866026 0.00196846064099182 0.00202182604611542 2232645 891111 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.0236770848352446 0.0235190715956216 0.0236972610055695 0.0235446707866026 0.00182986003294547 0.00183386786382041 2239071 889343 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.0236287804610075 0.0237131811635969 0.0236514839398795 0.0236057068741894 0.00172548107205689 0.0017428930833384 2234503 896683 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.0236327882013394 0.0237121762366783 0.0236514839398795 0.0238040741588464 0.00167185231403735 0.00161631386192761 2234882 896645 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.0236109095344618 0.0237238651234692 0.0236362249179828 0.0237125200274662 0.00169794181587081 0.00174015843771807 2232813 897087 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.0234912589227078 0.0233598171244572 0.0234531166552224 0.0233920805676356 0.00177580323952911 0.00188750224016325 2221498 883321 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.0234406387301787 0.0234623196701618 0.0234073395895323 0.023422598611429 0.00205740615866251 0.0021671017938337 2216711 887197 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.023437593270507 0.023401045573568 0.0233920805676356 0.0234073395895323 0.00167647350854737 0.00166835432205538 2216423 884880 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.0235883223752301 0.0235926428242466 0.0236209658960861 0.0236057068741894 0.00166769653692993 0.00178917484245903 2230677 892125 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.0237002958907285 0.0238741016978108 0.0236667429617761 0.0237582970931563 0.00201265315046651 0.00190165976965267 2241266 902768 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.0237940495207604 0.0236390016897317 0.0238193331807431 0.0234836346990158 0.00243390257972031 0.00240714195489357 2250132 893878 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.0236100529989292 0.0237783162951941 0.0235599298084993 0.023773556115053 0.00199587369421236 0.00228977867457425 2232732 899146 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.0235399757029421 0.0237785543042012 0.023575188830396 0.0237888151369497 0.00191366059418752 0.00220640004443112 2226105 899155 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.02355008493713 0.0237573186116829 0.0235141527428092 0.0237582970931563 0.00194088112821537 0.00204037247583155 2227061 898352 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.0235208358348665 0.023463615496978 0.0235446707866026 0.0233768215457389 0.00173002961600058 0.00172816482347921 2224295 887246 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0234607726024526 0.0233200167293887 0.0234531166552224 0.0233920805676356 0.00191023071109332 0.00208992059240281 2218615 881816 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.0234019994605941 0.0233276065721692 0.0233920805676356 0.0233463035019455 0.00185834990913067 0.00168170254593379 2213057 882103 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.0233030220212642 0.0234008340100062 0.0232394903486687 0.0234988937209125 0.00147735792368824 0.00157203406178216 2203697 884872 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.0235025630768364 0.0236731163140762 0.0235446707866026 0.0236820019836728 0.00143834312280938 0.00145170273645704 2222567 895168 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.0237765275531355 0.0237690868348095 0.0237582970931563 0.023773556115053 0.00165899183243595 0.00147815191919611 2248475 898797 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.0236821500268513 0.0238376334288411 0.0236514839398795 0.0238651102464332 0.00227939733381913 0.0022499536417403 2239550 901389 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.0236478251584683 0.0236739625683235 0.0236362249179828 0.0237125200274662 0.00220320600259796 0.00200111200827032 2236304 895200 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.0236062778978778 0.0235010886928664 0.0236209658960861 0.0234988937209125 0.00182501496384192 0.00170685013053723 2232375 888663 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.0236106240226176 0.0234780811555179 0.023575188830396 0.023422598611429 0.00175722266314402 0.00179135837962639 2232786 887793 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0235024467571961 0.0235105826077034 0.0234683756771191 0.0234988937209125 0.00158503085961964 0.0013587365570482 2222556 889022 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.0235138989545032 0.023308354288043 0.0234836346990158 0.0232547493705653 0.00170251421113321 0.00175363793203556 2223639 881375 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.0234430497190854 0.023343923411875 0.023422598611429 0.0233310444800488 0.00181714435879211 0.00184952688530645 2216939 882720 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.0233875441016663 0.0233764248640605 0.0233310444800488 0.0234073395895323 0.00140476402287348 0.00141961409604403 2211690 883949 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.0235444381473221 0.0234917270052556 0.0235446707866026 0.0233920805676356 0.00143601121101559 0.00155899753116117 2226527 888309 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.0237113674055766 0.0237648820090182 0.0236972610055695 0.0237277790493629 0.0015683595496942 0.00158618434524466 2242313 898638 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.0236847407824748 0.0238200472077643 0.0236209658960861 0.0238040741588464 0.00193955083936342 0.00197522034194014 2239795 900724 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.0237876202170091 0.0237547005126053 0.023773556115053 0.0238040741588464 0.00218972827655098 0.00231812666171339 2249524 898253 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.0237133765629989 0.0235879884258864 0.0237582970931563 0.0236820019836728 0.00169758513760154 0.00170366720444865 2242503 891949 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.0235466164969484 0.0235143907518162 0.0234988937209125 0.0235294117647059 0.0015682445110973 0.00159712532850367 2226733 889166 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0234965250300567 0.0235638437343931 0.0234836346990158 0.0234836346990158 0.00136070303478813 0.00141504466102957 2221996 891036 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0233790844914672 0.0233557974167825 0.0233310444800488 0.0233615625238422 0.00169200217271126 0.00166209130788627 2210890 883169 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.0244256228692026 0.176148885678858 0.0243991760128176 0.19159227893492 0.00182548598570411 0.0441924849734049 2309858 8646394 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.0236926716670365 0.0234920707960436 0.0236362249179828 0.0234378576333257 0.00144139807687461 0.0013164511020109 2240545 888322 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.023496218369187 0.0235335901450519 0.0234988937209125 0.023575188830396 0.00149508094179157 0.00148580133771148 2221967 889892 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.0235583013335359 0.0237292335488505 0.0235141527428092 0.0236667429617761 0.00160355260831457 0.00176616457811838 2227838 897290 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.0235724183080558 0.0235639230707287 0.0236057068741894 0.0234378576333257 0.00187878161260577 0.0019330609032771 2229173 891039 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.0236743143129044 0.0234773935739419 0.0236209658960861 0.0234073395895323 0.00177972840841815 0.00163763918739588 2238809 887767 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.0235505607902037 0.0236015284938433 0.0234988937209125 0.0235141527428092 0.00147358910732756 0.00153876692064386 2227106 892461 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.023537617586599 0.0232633176948193 0.0234531166552224 0.0232394903486687 0.00204110848430767 0.00146867728616165 2225882 879672 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.0234312908609086 0.0234905634056656 0.023422598611429 0.023422598611429 0.00140374459687525 0.00135682996975115 2215827 888265 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.0235753368735745 0.0233543164718497 0.0235446707866026 0.0232547493705653 0.00154721015226585 0.00137770954882334 2229449 883113 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.0242066141356597 0.169983792637023 0.0242313267719539 0.18628213931487 0.00200848153919831 0.0392425876107966 2289147 8343776 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.0236988471824819 0.0235734169855657 0.0236820019836728 0.023575188830396 0.00152527490792891 0.00150612629389114 2241129 891398 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.0234842374462425 0.0235598769176088 0.0235294117647059 0.0234988937209125 0.00162841602247412 0.00157547242282309 2220834 890886 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.0235792917413426 0.0236489187316923 0.0235904478522927 0.0236514839398795 0.0017071862096546 0.0015448371556156 2229823 894253 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.0235521786906543 0.023815498591185 0.0235294117647059 0.0237888151369497 0.00182314974485593 0.00181349130427443 2227259 900552 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.0236432781179863 0.0237534046857891 0.0235904478522927 0.0237125200274662 0.00165146899679889 0.00178774102757335 2235874 898204 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.0235320659674059 0.0234114121880975 0.0234988937209125 0.0233615625238422 0.00145840754362405 0.00140839003828405 2225357 885272 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.0235763097287474 0.0234553380726216 0.0235599298084993 0.0234836346990158 0.00159445776209051 0.00145536891646066 2229541 886933 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.0234037759787359 0.0234627163518403 0.0234378576333257 0.0234378576333257 0.00159716394621904 0.00172585098597823 2213225 887212 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0236338350781015 0.160959482334581 0.0236514839398795 0.184679942015717 0.00166240854504842 0.0491671565779677 2234981 9082241 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv new file mode 100644 index 0000000..77a8521 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.317364465544827 0.353422074913291 0.317494468604562 0.357305256733043 0.0057114337177593 0.0254891425648843 30012207 19942065 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.317606431545548 0.317061900456964 0.317479209582666 0.316868848706798 0.00510129164989201 0.00480657057234804 30035089 11989282 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.317131805115325 0.316702348183641 0.317082475013352 0.316807812619211 0.00427568518961427 0.00393126353644555 29990205 11975686 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.316877181422844 0.316594106976322 0.316792553597314 0.31644159609369 0.00468268502407103 0.00447733965134956 29966126 11971593 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.317264969954373 0.317001393278282 0.317082475013352 0.317097734035248 0.00628795524255745 0.0061084249615062 30002798 11986994 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.316876018226442 0.316799032731395 0.316884107728695 0.316670481422141 0.00675821993624035 0.00718467123094233 29966016 11979342 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.316765821229085 0.316919042161841 0.316899366750591 0.317067215991455 0.00666809621405007 0.00571842046489224 29955595 11983880 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.31705126962623 0.316519266366326 0.317296101319905 0.316609445334554 0.00577211728787444 0.00560694768894464 29982589 11968763 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.316681722129193 0.316286096875748 0.316716258487831 0.316182192721447 0.00458813912617194 0.00400062244956016 29947642 11959946 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.316405336089474 0.341383433256888 0.316319523918517 0.335072861829557 0.00544604105117975 0.0228598258364132 29921505 19262777 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.317171311494955 0.317855607604599 0.317097734035248 0.31792172121767 0.00519672993300455 0.00476132176527541 29993941 12019295 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.317583199341039 0.317349547564712 0.317555504692149 0.317311360341802 0.00418432427366993 0.00460693062914396 30032892 12000159 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.317279657952581 0.317738295609567 0.317219806210422 0.317723353933013 0.00399016254019456 0.00434933883297174 30004187 12014859 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.317350221676154 0.317182015669191 0.317326619363699 0.317311360341802 0.00401505442613831 0.00390349721165117 30010860 11993824 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.317391959277974 0.317837280911056 0.317357137407492 0.3177843900206 0.00492055577454335 0.0047933655260567 30014807 12018602 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.3174912645272 0.318030147543106 0.317509727626459 0.3177843900206 0.00568260206686605 0.00586797031231669 30024198 12025895 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.317518335279837 0.317237075086156 0.317463950560769 0.317158770122835 0.00574768837503169 0.00548108700019748 30026758 11995906 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.317712314141703 0.317850265624663 0.317616540779736 0.317769130998703 0.00520192001648789 0.00501617677267447 30045102 12019093 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.31721452952856 0.317113389738823 0.317006179903868 0.317204547188525 0.00425790155999737 0.00432307371274983 29998028 11991229 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.316266778248925 0.31690563432111 0.31612115663386 0.316853589684901 0.00478674571989649 0.0048230277509309 29908402 11983373 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.317643738426526 0.317973580735763 0.317555504692149 0.31810482948043 0.00571075611393796 0.00587772903861634 30038617 12023756 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.318077452066923 0.317285972714383 0.31787594415198 0.317006179903868 0.00457994587707048 0.0044028372816993 30079632 11997755 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.317736466328822 0.31840194405757 0.31783016708629 0.318303196765087 0.00467759521240909 0.00473583147273858 30047386 12039954 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.317260993937579 0.317340714786005 0.317189288166629 0.317372396429389 0.0042545624811135 0.00439136391445209 30002422 11999825 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.317674869792059 0.317715790535678 0.317662317845426 0.317601281757839 0.00430060531951415 0.00437605048618205 30041561 12014008 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.318260359413941 0.318523513769284 0.318043793392844 0.318410009918364 0.005161043882764 0.00504560798436128 30096929 12044551 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.318344744025678 0.317794597962458 0.318425268940261 0.31792172121767 0.00549911987199896 0.00530725353792548 30104909 12016988 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.317924089908526 0.3176037147388 0.317799649042496 0.317158770122835 0.00518764701675155 0.00506960829827366 30065129 12009770 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.317738433188193 0.317278832444171 0.31783016708629 0.317112993057145 0.00431508510010249 0.00418010181488281 30047572 11997485 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.317200359681477 0.316970795898153 0.317311360341802 0.316700999465934 0.00428559861273916 0.00427679405686282 29996688 11985837 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.318603851311565 0.317701562886145 0.318562600137331 0.317341878385595 0.00682076256200748 0.00740382510702146 30129412 12013470 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.318593371969431 0.318112577995882 0.318532082093538 0.318028534370947 0.00525253251390875 0.00513876019993737 30128421 12029012 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.317869514848229 0.318679012987226 0.317814908064393 0.318760967421988 0.00510222465319391 0.00523456009354803 30059968 12050431 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.318136669338317 0.318963142850758 0.31810482948043 0.318959334706645 0.00458335160840108 0.00432586814734177 30085232 12061175 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.318407260545049 0.318392027015609 0.318272678721294 0.318440527962158 0.0042036002955744 0.00393138979621026 30110821 12039579 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.318265255413344 0.318444256769935 0.318165865568017 0.318410009918364 0.00498004105871197 0.00477460347789134 30097392 12041554 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.31818034207597 0.318234782398282 0.318242160677501 0.318028534370947 0.00485199984216981 0.00524385010252985 30089362 12033633 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.318298776618758 0.317778995149773 0.318516823071641 0.31773861295491 0.00483611726819509 0.00473719418581496 30100562 12016398 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.317714143532409 0.317787113901458 0.317753871976806 0.318135347524224 0.00403796077921891 0.00422035787859477 30045275 12016705 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.317405959932854 0.317592396088243 0.317524986648356 0.317647058823529 0.00410807955937497 0.00402027512396998 30016131 12009342 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.317924840698931 0.317883005085856 0.317845426108186 0.317479209582666 0.00645364878551331 0.00677384748681269 30065200 12020331 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.319036221988843 0.31908444810802 0.319188220035096 0.319310292210269 0.00507712736213397 0.0049807276969302 30170300 12065762 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.318740135631873 0.318757106386985 0.318684672312505 0.318669413290608 0.00497957002850021 0.0051383044418577 30142300 12053384 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.319125460301931 0.319037930569864 0.318989852750439 0.318883039597162 0.00528238799040352 0.00554539889102207 30178739 12064003 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.318730671442963 0.318034881277802 0.318623636224918 0.31801327534905 0.00569101096634412 0.00577992582790244 30141405 12026074 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.318245237860711 0.317622676123029 0.318257419699397 0.317509727626459 0.00517508536177772 0.00493143890546109 30095499 12010487 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.318376499287463 0.318682133549763 0.318440527962158 0.318608377203021 0.00542811704664061 0.00572491484380012 30107912 12050549 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.31771653337229 0.317963822366473 0.317647058823529 0.31805905241474 0.00529857657374915 0.00522588696020338 30045501 12023387 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.317709712811567 0.317550638730227 0.317677576867323 0.317341878385595 0.00435548660533477 0.00407171514492684 30044856 12007763 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.317421821701977 0.318018987565219 0.317387655451286 0.31787594415198 0.00421165797787713 0.00419808016726818 30017631 12025473 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.318353319955517 0.317927856560963 0.318333714808881 0.31783016708629 0.00520445628100063 0.00523458954514079 30105720 12022027 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.318327666187588 0.318551387268554 0.318410009918364 0.318455786984054 0.0043598589396199 0.00456900702600709 30103294 12045605 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.31905340557206 0.318852151317135 0.318898298619059 0.318822003509575 0.00416863624540003 0.00402617176074984 30171925 12056978 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.318808415260693 0.318807749414597 0.318944075684749 0.318944075684749 0.00472255544809463 0.00509635992354417 30148757 12055299 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.318097088937098 0.317751862122969 0.31787594415198 0.317601281757839 0.00635245167332245 0.00678637724987521 30081489 12015372 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.31827039462654 0.317822286343612 0.318501564049744 0.317799649042496 0.00606114583847433 0.00621338670337815 30097878 12018035 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.318537009816479 0.31901899563108 0.318638895246815 0.318745708400092 0.00548078344999623 0.0055152700878818 30123091 12063287 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.317974826420695 0.318336650253301 0.317845426108186 0.318638895246815 0.00573034497284936 0.00543143009951566 30069927 12037485 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.317765123258371 0.317995133773624 0.317586022735943 0.31805905241474 0.00510307933032208 0.00495009198858382 30050096 12024571 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.317288265605958 0.317659726191794 0.317311360341802 0.317250324254215 0.00503593069966237 0.00529222473145724 30005001 12011888 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.318152435936826 0.317936662894224 0.317998016327153 0.317891203173877 0.00504951484388143 0.00512678569802816 30086723 12022360 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.318011022977835 0.318092849693742 0.31792172121767 0.31792172121767 0.00430163632615793 0.0042417390273465 30073350 12028266 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.318907509019663 0.318734204631417 0.318944075684749 0.318699931334401 0.00430617499024155 0.00390612526063185 30158128 12052518 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.318284765389366 0.318096314047067 0.318287937743191 0.318074311436637 0.00456304209713231 0.00448809379260604 30099237 12028397 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.318270468648129 0.318466232934919 0.318211642633707 0.318410009918364 0.00611491310800635 0.00590470692357957 30097885 12042385 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.318495071298917 0.317715737644787 0.318501564049744 0.317341878385595 0.00682031751399236 0.00690551919185821 30119125 12014006 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.318545934705239 0.318898827527963 0.318410009918364 0.319005111772335 0.00588341517907963 0.00602461716073699 30123935 12058743 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.318677872900807 0.318013513358057 0.318455786984054 0.317769130998703 0.00552910835731967 0.00530285684167713 30136412 12025266 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.318415276025713 0.318150632991566 0.318303196765087 0.31805905241474 0.0052507863029948 0.00498412538689241 30111579 12030451 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.317990751636895 0.317129495014967 0.317982757305257 0.317158770122835 0.00551830946939341 0.00599316644018105 30071433 11991838 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.318109545713116 0.318233936144035 0.318043793392844 0.318120088502327 0.00505545566109123 0.00554497687056648 30082667 12033601 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.317564419006397 0.317546486795326 0.317479209582666 0.317479209582666 0.00401538847293858 0.00409342414104965 30031116 12007606 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.318192809426501 0.318187577278549 0.318272678721294 0.318211642633707 0.00473691853227402 0.00477796867069317 30090541 12031848 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.318617598178138 0.318634161512119 0.318532082093538 0.318486305027848 0.00485393196114926 0.0050071534904166 30130712 12048735 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.318584838337642 0.318412548681106 0.318440527962158 0.318516823071641 0.00586707779455438 0.00566433683392172 30127614 12040355 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.318591976133748 0.318027926125707 0.318623636224918 0.31819638361181 0.00630253781062603 0.00634947367598142 30128289 12025811 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.318283158063428 0.31855440204931 0.31815060654612 0.318562600137331 0.00537103617058047 0.00506994021653684 30099085 12045719 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.318694548907412 0.318229096627558 0.318822003509575 0.318303196765087 0.00542815661131051 0.005220049334938 30137989 12033418 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.318175615268772 0.318289894706138 0.318211642633707 0.318120088502327 0.00460223836721288 0.00434341574982157 30088915 12035717 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.317917227049752 0.318130984025761 0.317891203173877 0.318242160677501 0.00557139422136455 0.0055868299183192 30064480 12029708 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.316865401415642 0.357971438329869 0.317006179903868 0.361257343404288 0.00517811715108171 0.0329372954868992 29965012 17571284 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.317806088920761 0.317479183137221 0.317799649042496 0.317433432516976 0.004471653975729 0.00396792414499722 30053970 12005061 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.317366728490555 0.317938646302616 0.317372396429389 0.318089570458534 0.00509225061806077 0.00567996381145388 30012421 12022435 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.31839133532885 0.318211457515591 0.318379491874571 0.318211642633707 0.00512927912399129 0.00495542657692082 30109315 12032751 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.318400006429304 0.318283151117604 0.318516823071641 0.318410009918364 0.00539624958207988 0.00516335311032493 30110135 12035462 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.318442061266506 0.318385653663309 0.318410009918364 0.318455786984054 0.00483231813795639 0.0044125062889045 30114112 12039338 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.318069394288209 0.318269690385983 0.317906462195773 0.318181124589914 0.00459645491135457 0.00461734237423788 30078870 12034953 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.318553696397597 0.317776509277922 0.318318455786984 0.318043793392844 0.0057830969465113 0.00415328275631192 30124669 12016304 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.31766864140405 0.318291666550968 0.317677576867323 0.318394750896468 0.00397654685113454 0.00379069242704221 30040972 12035784 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.317682356547085 0.317761990728491 0.317616540779736 0.3177843900206 0.00497073466256491 0.00492602802000244 30042269 12015755 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.316246168523578 0.349637628788742 0.316044861524376 0.350514991989013 0.00582457086634961 0.0276235774261763 29906453 17162213 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.317218198884484 0.317971332872918 0.317082475013352 0.317952239261463 0.004709650430291 0.00493957550092732 29998375 12023671 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.317249224504889 0.317386280288134 0.317311360341802 0.317433432516976 0.00548120026664153 0.00518172737112968 30001309 12001548 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.318287768550987 0.317709787419611 0.318181124589914 0.317601281757839 0.00533374749003639 0.00550918674882427 30099521 12013781 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.31802835460423 0.317883851340103 0.31787594415198 0.317799649042496 0.00513009592969699 0.00524295959882244 30074989 12020363 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.318378878552831 0.318720214990891 0.318333714808881 0.319005111772335 0.00466174286808918 0.00481105861680096 30108137 12051989 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.317730237940812 0.318271250667252 0.317753871976806 0.318028534370947 0.00403937471527715 0.00384434104272858 30046797 12035012 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.318344744025678 0.317790789818345 0.318272678721294 0.317708094911116 0.00425933224119566 0.00393099428519848 30104909 12016844 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.317908312735504 0.317473603148277 0.31787594415198 0.317463950560769 0.00438920309032834 0.00420572952963299 30063637 12004850 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.31727249900745 0.335205213020642 0.317265583276112 0.329533836881056 0.00471482723947093 0.0173385063967847 30003510 18914167 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv new file mode 100644 index 0000000..c79a32d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.0331852742930793 0.0369530267581393 0.0332036316472114 0.0368963149462119 0.00218637413211887 0.00344948762953823 3138232 2085098 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.033212958367456 0.0330404632501531 0.0331883726253147 0.0329442282749676 0.00193922321435884 0.00190665846557234 3140850 1249382 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.0332226763446722 0.0331795134011633 0.0331883726253147 0.0332036316472114 0.00166615957348352 0.00170894038267663 3141769 1254640 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.0330992083338158 0.0331580132541927 0.0331120775158312 0.0330968184939345 0.0017549194464965 0.00169780951124859 3130093 1253827 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.0331607625725273 0.0330735729475789 0.0331120775158312 0.0329594872968643 0.00235418606363661 0.0022459776684521 3135914 1250634 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.0329952291499556 0.033192577451106 0.0329594872968643 0.0332036316472114 0.00261317484223607 0.00281191675989823 3120260 1255134 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.0330213481964455 0.0328294285972318 0.0329900053406577 0.0328374151216907 0.00250809988077945 0.00227867028680989 3122730 1241402 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.0331333005629183 0.0332618909630492 0.0330510414282445 0.0332341496910048 0.00221935060851064 0.00217257644823782 3133317 1257755 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.0331606991254508 0.0332076513548861 0.0331578545815213 0.0332036316472114 0.00173165077406769 0.00151094298107468 3135908 1255704 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.0329628182683802 0.0356038350299469 0.0329137102311742 0.0352025635156786 0.00209702130123925 0.00315786406279289 3117195 2008969 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0331124053257265 0.0331894833340143 0.0331120775158312 0.0330663004501411 0.00194104132430702 0.00194177874053779 3131341 1255017 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0331378899014514 0.0333629919001568 0.0331120775158312 0.0333562218661784 0.0016636743906449 0.00164663372345763 3133751 1261578 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.0331225251344272 0.0332384867440222 0.0331425955596246 0.0332494087129015 0.0015013889619833 0.00164265531344283 3132298 1256870 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.0330564873023101 0.0331876850437388 0.0330205233844511 0.0332188906691081 0.00151917302276618 0.00152541298005182 3126053 1254949 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.0333024821923884 0.0332111421536562 0.0332646677347982 0.0331425955596246 0.00190618316477686 0.00172561079157258 3149316 1255836 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.0332328913239877 0.0334061508667693 0.0332036316472114 0.0333562218661784 0.00219100370379149 0.00224268915369757 3142735 1263210 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.0331671918762786 0.0330179581762639 0.0331425955596246 0.0329137102311742 0.00226185954355237 0.00215895221511869 3136522 1248531 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.033230268844826 0.0332183353147583 0.0332341496910048 0.0332799267566949 0.00208072333116877 0.00193246281285671 3142487 1256108 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.0330162407067877 0.0333015591308916 0.0330205233844511 0.0332951857785916 0.00166816932380609 0.00154611208667997 3122247 1259255 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.0330491697394879 0.0330536859727673 0.0330357824063478 0.0330357824063478 0.00188410722179046 0.00170543429348983 3125361 1249882 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0332358416130446 0.0331434418138719 0.0331883726253147 0.0332799267566949 0.00222067491438291 0.00230772962290893 3143014 1253276 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.0331730818798798 0.0332590613004098 0.0331273365377279 0.0332494087129015 0.00173735932197209 0.00171341315532993 3137079 1257648 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.0331231067326284 0.0331625089798815 0.0331120775158312 0.0331120775158312 0.00184062878449249 0.00199894633421722 3132353 1253997 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.033178379710767 0.0334521394960212 0.0332036316472114 0.0334782940413519 0.00157899177410423 0.00165659991944638 3137580 1264949 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0333583684922664 0.0330723564570984 0.0334019989318685 0.0330815594720378 0.00174765857132437 0.00163242603805199 3154601 1250588 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.0331531066252971 0.0334192149167121 0.0331883726253147 0.0334782940413519 0.00191432953947592 0.00193404523734943 3135190 1263704 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.0331908364867852 0.0332689518969252 0.0332036316472114 0.0332951857785916 0.00209195936616784 0.00204046640511876 3138758 1258022 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.0332285346247351 0.0332381693986795 0.0332799267566949 0.0332036316472114 0.00205841544773356 0.00188287027333655 3142323 1256858 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.0332089929251751 0.0332409461704285 0.0331883726253147 0.0331883726253147 0.00169166495937719 0.0016359391878962 3140475 1256963 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.0333274168934503 0.0330633650057208 0.033325703822385 0.0330205233844511 0.00174879426157248 0.00155897707321059 3151674 1250248 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0331870931092721 0.033243908060294 0.0331425955596246 0.033325703822385 0.00253612088724783 0.00273958550481596 3138404 1257075 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.0332406530163454 0.0334069706755714 0.0332188906691081 0.0334172579537652 0.00195713126956454 0.00187711292308676 3143469 1263241 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.0332703568226571 0.0332662809069571 0.0332494087129015 0.0331120775158312 0.00198857009788413 0.00194497289780858 3146278 1257921 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0333472018068035 0.0333611671644361 0.033325703822385 0.0333714808880751 0.00168018495613589 0.00158122115297967 3153545 1261509 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.0333578080430907 0.0334580632757523 0.0333714808880751 0.0334477759975586 0.00166463064406568 0.0016060046653049 3154548 1265173 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.0333218229762061 0.0333650017539942 0.0332799267566949 0.0334325169756619 0.001871511715489 0.00182453393046084 3151145 1261654 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.0331870085131701 0.0331960682498761 0.0331578545815213 0.0333714808880751 0.0019763001578337 0.00197734026731586 3138396 1255266 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.0332101032490138 0.0331480433213417 0.0331578545815213 0.0331120775158312 0.00180571920057977 0.00183158110642923 3140580 1253450 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.033102274942513 0.033023881955995 0.0330815594720378 0.0330205233844511 0.00168767573999783 0.00156346793919268 3130383 1248755 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.033198344390837 0.0331361164255437 0.0331578545815213 0.0331425955596246 0.00153548857825438 0.00149900669295902 3139468 1252999 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.0332587142841206 0.0332131784529388 0.0332188906691081 0.0330815594720378 0.00254400006873599 0.00271789610556443 3145177 1255913 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.0332620135320982 0.0334093507656419 0.0332036316472114 0.0333714808880751 0.00200782271093052 0.00193349720717945 3145489 1263331 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.0333549106265975 0.0333015591308916 0.033325703822385 0.0332188906691081 0.0018711561078603 0.00198058816437115 3154274 1259255 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.0333742408359025 0.0335978538992288 0.0334019989318685 0.0335698481727321 0.00196986416237473 0.00207418205744856 3156102 1270459 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.0333168952532651 0.0334647804188403 0.0333867399099718 0.0335545891508354 0.00210047477643872 0.00223830551892985 3150679 1265427 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.033163934926352 0.0332402850342978 0.0331273365377279 0.0332494087129015 0.00204685332611097 0.00197625064759359 3136214 1256938 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.0332807409941766 0.0333204411787846 0.0332188906691081 0.033173113603418 0.00213144747673173 0.00225302564794004 3147260 1259969 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.0331165399602113 0.033269163460487 0.0331120775158312 0.0332646677347982 0.00201534080424767 0.00203410542441874 3131732 1258030 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.0333142093270269 0.0334982603524993 0.0332799267566949 0.0334630350194553 0.00172170016064248 0.00155809512936573 3150425 1266693 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.0333016150823429 0.0332880719538252 0.0332799267566949 0.0332951857785916 0.00165041428326346 0.00155010219236365 3149234 1258745 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.0332653339291014 0.0329990761283709 0.0333104448004883 0.032974746318761 0.00206876499667539 0.00214847327152455 3145803 1247817 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.0333327252988503 0.0333628067820402 0.0333409628442817 0.0333409628442817 0.00170837900237201 0.001809889523703 3152176 1261571 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.033411875526776 0.0330859229705005 0.0334172579537652 0.0331273365377279 0.0015794253731674 0.00158026199232667 3159661 1251101 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.0333106880142815 0.033434500384054 0.0332799267566949 0.0333562218661784 0.00187187599015151 0.00176663101296067 3150092 1264282 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.0333568669114561 0.0333565656569663 0.0333867399099718 0.0334325169756619 0.00242188960342902 0.00277413245445108 3154459 1261335 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.0333062255699015 0.0333116348455236 0.0332341496910048 0.0332036316472114 0.00240778126235958 0.00236272188784981 3149670 1259636 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.033320226224781 0.033052257918725 0.033325703822385 0.0329442282749676 0.00204596249973194 0.00207269973697705 3150994 1249828 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.0332483935596776 0.0333465957241153 0.0332341496910048 0.0334172579537652 0.00211596941631843 0.00209721887832143 3144201 1260958 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.0331421937281402 0.0331971789585757 0.0330510414282445 0.0331578545815213 0.00189880317531932 0.00187139880746692 3134158 1255308 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0333190524538659 0.0334144811820162 0.0333409628442817 0.0334630350194553 0.00192360378244151 0.00218965615611354 3150883 1263525 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.0332415835734673 0.0331408501602396 0.0332036316472114 0.0330205233844511 0.00187476130693166 0.00193784033321392 3143557 1253178 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.0333131624502648 0.0333338225740701 0.0333104448004883 0.0332494087129015 0.00160739245459762 0.00165096410886295 3150326 1260475 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.0333808710553961 0.0333826408659614 0.0333562218661784 0.0333867399099718 0.00158945654846712 0.00157497023988628 3156729 1262321 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.0332468708298418 0.0334308244671673 0.0332341496910048 0.0334019989318685 0.00168985940037036 0.00168747316534446 3144057 1264143 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.0333219815938974 0.0334402654911137 0.0333409628442817 0.0334782940413519 0.00233056921621406 0.00224466950508188 3151160 1264500 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.0332480974733206 0.0332970105143123 0.0332188906691081 0.0332951857785916 0.00261187351499271 0.00257233554752629 3144173 1259083 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.0334254532011456 0.0331953277774097 0.0333714808880751 0.0330205233844511 0.00226242333275053 0.0022886837737707 3160945 1255238 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.0332025001743473 0.0332855596365285 0.0331578545815213 0.033325703822385 0.00211314639782174 0.0020321167014864 3139861 1258650 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0331809704663905 0.0332549622563994 0.0331578545815213 0.0332036316472114 0.00200904624569368 0.00186483975835858 3137825 1257493 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.033180230250498 0.0331438913864408 0.0331273365377279 0.0330968184939345 0.00203663597294427 0.00208586682641019 3137755 1253293 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.0330882954366589 0.0330839924529988 0.0330815594720378 0.0330205233844511 0.0019331780855545 0.00216691755338453 3129061 1251028 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.0332478965575784 0.0332134164619459 0.0332646677347982 0.0332188906691081 0.00159930209225129 0.00151751666748596 3144154 1255922 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.0333037405594055 0.0334535675500635 0.0332188906691081 0.0333867399099718 0.00178824008298989 0.00190758959339542 3149435 1265003 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.0333585376844704 0.0333809483574668 0.0333104448004883 0.0333562218661784 0.00190754695405797 0.00167649481467161 3154617 1262257 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.0334298416239364 0.0332119090715679 0.0334325169756619 0.0332646677347982 0.00233240718021687 0.00229767305564543 3161360 1255865 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.0332995107543059 0.0333993808327909 0.0332646677347982 0.0335545891508354 0.00236039498142514 0.00262295379143428 3149035 1262954 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.0331587216915667 0.0333439511795925 0.0331578545815213 0.0332799267566949 0.00199848431225986 0.0017838975066002 3135721 1260858 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.0332368250427303 0.0332538779931451 0.0332646677347982 0.0331425955596246 0.0019694278003492 0.00200998101399251 3143107 1257452 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0332228984094399 0.0332272738752455 0.0331578545815213 0.0332036316472114 0.00167555577083687 0.00171680692501688 3141790 1256446 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0331626025377456 0.0331031125098989 0.0330815594720378 0.0330510414282445 0.00212859324751418 0.00204559326709808 3136088 1251751 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.0331601703998133 0.0375380495119609 0.0331578545815213 0.0375677119096666 0.00197896647624415 0.00398508052047181 3135858 1842582 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.0332017388094294 0.0332009606572434 0.0331883726253147 0.033173113603418 0.00179479360596502 0.00160576375706609 3139789 1255451 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.0331549360160026 0.0332388569802554 0.0330968184939345 0.0333104448004883 0.00190793489911658 0.00197946020011807 3135363 1256884 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.0332772725539949 0.0332984121229094 0.0332494087129015 0.0333714808880751 0.00190674647550209 0.00196336089271942 3146932 1259136 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.0334098980928919 0.0332322191735031 0.0334782940413519 0.0332188906691081 0.00198425250138108 0.00204892222379115 3159474 1256633 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.0332842517324092 0.0331984747853919 0.0332341496910048 0.0331425955596246 0.00187677320701019 0.00178518825994155 3147592 1255357 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.033062853158985 0.0331510052112072 0.0330663004501411 0.0330968184939345 0.00173507976604539 0.00164288613667525 3126655 1253562 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.0331714216813782 0.0332338852365525 0.033173113603418 0.0332036316472114 0.0016913372568404 0.0015028073919175 3136922 1256696 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.0332405789947561 0.0332377727170011 0.033173113603418 0.0333104448004883 0.00159127399627429 0.00155636351361322 3143462 1256843 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.0331122678570607 0.0331412997328084 0.033173113603418 0.0330357824063478 0.00200219603259664 0.00192323492474659 3131328 1253195 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.0331866172561984 0.036609490154111 0.0331578545815213 0.0364080262455177 0.00230900723472479 0.00376660150297606 3138359 1797003 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.0331626448357966 0.0330268702913058 0.0331883726253147 0.0329594872968643 0.00177749486992229 0.00204445198011597 3136092 1248868 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.033185580953949 0.0331297959641342 0.0331578545815213 0.0330815594720378 0.0021382632688321 0.00214490232510807 3138261 1252760 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.0332020348957863 0.0334228379427083 0.0331273365377279 0.0334019989318685 0.0021453507029088 0.00205196695527602 3139817 1263841 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.0333192745186336 0.0334585921846569 0.0333714808880751 0.0333714808880751 0.00196291489042536 0.00207988752666339 3150904 1265193 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.0333613928029126 0.0333715073335203 0.0332799267566949 0.0332646677347982 0.00176625887616713 0.00164981704720983 3154887 1261900 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.0332703991207081 0.0329705414929697 0.0332494087129015 0.0329289692530709 0.00149613045665297 0.00154650155649573 3146282 1246738 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.0332642024562372 0.0332638479259961 0.0332341496910048 0.0333104448004883 0.0015446932215617 0.00145812121830406 3145696 1257829 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.0330836109275111 0.0332315580373724 0.0331120775158312 0.0331883726253147 0.00164267211243371 0.0015218036385385 3128618 1256608 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0331671178546894 0.0351914161001467 0.0331273365377279 0.0350041962310216 0.00178933087174856 0.00237955962591969 3136515 1985698 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv new file mode 100644 index 0000000..3fb3f1f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.235009552746791 0.926876675822966 0.234439612420844 1 0.00672146510561116 0.186548068111262 20006355 52299605 1299 861 78 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.23218531806045 0.23105935561177 0.232181277180133 0.230930037384604 0.00585307358311123 0.00576967639039484 19765928 8737208 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.231999989662864 0.231669901605754 0.231525139238575 0.231708247501335 0.00576133115216565 0.00510347994163382 19750151 8760295 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.231988148943794 0.231517522950349 0.231891355764096 0.231494621194781 0.00479719306626904 0.00425742849203508 19749143 8754533 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.23240174009234 0.232405164319435 0.232486457618067 0.232196536202029 0.00380769123613483 0.00433490714691075 19784352 8788098 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.232767451507821 0.232848125527008 0.232593270771344 0.232791638056001 0.00354968475517585 0.00385433900967495 19815485 8804848 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.232830590262782 0.232773470035129 0.232913710231174 0.232806897077897 0.00417007957776029 0.00386055543284803 19820860 8802025 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.233032516811207 0.233492759699892 0.232867933165484 0.233478294041352 0.00568912654161725 0.00575885036934554 19838050 8829224 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.234302715853343 0.233842818058378 0.234164950026703 0.23395132372015 0.00615172005343887 0.00575657884818439 19946182 8842461 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.236689959874881 0.900090322421715 0.236743724727245 1 0.00564912480561646 0.2216518192923 20149408 50788168 1299 861 76 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.230277540934029 0.230379945678411 0.230212863355459 0.230319676508736 0.00399958874687597 0.00382625426475535 19603519 8711517 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.231389264637898 0.230774643948442 0.231662470435645 0.23062485694667 0.00431296162345977 0.00425116927203745 19698160 8726442 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.231800365476481 0.231233525314043 0.231921873807889 0.230869001297017 0.0050005607834452 0.00500247434229179 19733157 8743794 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.232301845771932 0.231968285564264 0.232394903486687 0.231876096742199 0.00441451601621135 0.00455887362424416 19775848 8771578 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.232848504049074 0.233505109722813 0.232852674143587 0.233646143282216 0.00346934645065204 0.00350336647983219 19822385 8829691 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.232884918958912 0.233300051740514 0.232791638056001 0.233112077515831 0.00359782314047056 0.00370423943322844 19825485 8821937 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.233758418671968 0.233292038770609 0.233722438391699 0.233264667734798 0.00379945294531678 0.00360995552549402 19899846 8821634 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.234076226860894 0.237950615511126 0.233920805676356 0.235141527428092 0.00459664618002859 0.0199483977018852 19926901 8997792 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.233955623028859 0.234231777666795 0.233920805676356 0.234241245136187 0.00525293534398089 0.00568501937101436 19916634 8857169 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.234351699780447 0.234467300801998 0.23440909437705 0.234454871442741 0.00472706388877161 0.00428676881959504 19950352 8866075 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.230574134501289 0.230213471600699 0.230395971618219 0.230426489662013 0.0043351683826245 0.00450201693358392 19628768 8705222 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.231541161798904 0.231506019181675 0.231448844129091 0.231509880216678 0.0043973469955895 0.00421035077374379 19711091 8754098 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.23226498448578 0.232264527441711 0.232211795223926 0.232150759136339 0.00470753938537151 0.00442228008461566 19772710 8782780 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.233144862681431 0.232368907614027 0.233081559472038 0.232318608377203 0.00470875514138008 0.0047387659237267 19847614 8786727 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.233286551920936 0.233262869444523 0.233249408712902 0.233249408712902 0.00371764544311531 0.00347300674278143 19859676 8820531 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.234283216256462 0.233909936598367 0.234058136873426 0.233569848172732 0.00408472369040678 0.00437990617731229 19944522 8844999 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.234516753295975 0.234727576873934 0.234531166552224 0.234714274814984 0.00409010538979244 0.00391984978609127 19964403 8875917 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.234818386216886 0.234877443212043 0.234683756771191 0.234790569924468 0.00460676271390534 0.00467157275206069 19990081 8881584 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.234411467219562 0.234435804276731 0.234378576333257 0.23431754024567 0.00458994013126303 0.00464323672998989 19955440 8864884 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.234697970332773 0.234432101914399 0.234683756771191 0.234485389486534 0.00420299391614817 0.00439011462776051 19979830 8864744 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.230892741468882 0.231278403234595 0.230838483253223 0.231128404669261 0.00437293712477778 0.00496585824481538 19655891 8745491 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.231232727512574 0.231895957271565 0.231174181734951 0.231769283588922 0.00430786400178621 0.00445754057266553 19684834 8768843 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.232761742589698 0.23220007989169 0.232730601968414 0.232013427939269 0.00509357931440414 0.00484653976642785 19814999 8780343 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.233172397051966 0.233228675483843 0.233173113603418 0.233203631647211 0.00487829804276625 0.00520761598549737 19849958 8819238 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.233845931923031 0.233420828088871 0.233661402304112 0.233417257953765 0.00422548736844055 0.00404510174507221 19907296 8826504 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.234486352719633 0.234292231954587 0.234378576333257 0.23431754024567 0.00436152851817885 0.00428246418717972 19961815 8859455 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.234990734461127 0.235583721717753 0.235019455252918 0.235339894712749 0.00394152470588817 0.00402619080837519 20004753 8908291 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.235089595067965 0.235405743871367 0.234866865033951 0.235416189822232 0.00424953408800666 0.00425734424542243 20013169 8901561 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.235024764781708 0.234725487683761 0.234973678187228 0.234699015793088 0.00439403342122136 0.00410303986744775 20007650 8875838 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.235379093601178 0.234664768941517 0.235278858625162 0.234561684596017 0.00397363977016438 0.00350722270420571 20037814 8873542 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.23223157674269 0.23190695857678 0.231326771953918 0.231906614785992 0.0109307464922767 0.00560777065483034 19769866 8769259 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.232146917950689 0.232860925122499 0.2323338673991 0.23270008392462 0.00514352014917911 0.00469739346777891 19762659 8805332 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.233015777699427 0.23284196373827 0.233005264362554 0.232730601968414 0.00591740439409707 0.00646944027720477 19836625 8804615 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.233478435002293 0.232911197913878 0.233310444800488 0.23270008392462 0.00545583451002043 0.0062107131415624 19876011 8807233 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.234687057606567 0.234560653223653 0.234607461661707 0.234576943617914 0.00449419351382111 0.00435617795722347 19978901 8869605 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.235391874059857 0.234917243607111 0.235370412756542 0.234988937209125 0.00447011955469016 0.00521330538643195 20038902 8883089 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.235637827408951 0.235694263678807 0.235538261997406 0.235614557106889 0.0049221172045025 0.00486649688222248 20059840 8912471 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.23567488838977 0.235927195160378 0.235477225909819 0.235538261997406 0.00529486337117927 0.00551349862639631 20062995 8921279 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.23551226645048 0.235299776972338 0.235492484931716 0.235202563515679 0.00485766741510233 0.00514849149620869 20049151 8897554 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.23530393792597 0.235731075738565 0.235233081559472 0.235461966887922 0.00455011906339501 0.00460507458288393 20031416 8913863 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.232050030797029 0.231950620006852 0.231860837720302 0.231952391851682 0.00529893438901102 0.00531335333538228 19754411 8770910 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.232932575503819 0.232086734713442 0.232745860990311 0.231982909895476 0.00645794285219949 0.00530293522142892 19829542 8776057 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.233745168343485 0.2329213265194 0.233463035019455 0.232745860990311 0.0064363191244817 0.00610170962238957 19898718 8807616 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.233403643476184 0.233303172303051 0.233401998931868 0.233142595559625 0.00484475122041775 0.00492884333077094 19869644 8822055 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.237271071355427 0.288374621945832 0.235416189822232 0.238849469748989 0.0145943998196755 0.0933392063372024 20198878 10904510 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.23656929730912 0.237583526285913 0.236285954070344 0.236957351033799 0.00467771436228706 0.00561929625486252 20139136 8983911 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.236107685466569 0.235798749632904 0.23588921950103 0.23575188830396 0.00484683762467202 0.00445235758027898 20099839 8916422 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.236389807043853 0.235783966629022 0.236194399938964 0.235873960479133 0.0058725711560391 0.00640040027863537 20123856 8915863 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.235796807857257 0.23564880395846 0.235675593194476 0.235812924391546 0.00515085596230774 0.0050848538675272 20073374 8910752 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.235642009250209 0.235249927308082 0.235599298084993 0.235095750362402 0.00504024554495551 0.00504231833334183 20060196 8895669 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.23269571413544 0.232363380515974 0.232547493705653 0.232318608377203 0.00424674899911352 0.00379962466790273 19809378 8786518 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.232785318307132 0.232877585752992 0.232822156099794 0.232715342946517 0.00460044522476391 0.00419747882583428 19817006 8805962 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.23342582133095 0.232827022061716 0.233554589150835 0.232684824902724 0.0052544756344859 0.00557348183766879 19871532 8804050 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.233683086795584 0.233873230320391 0.233752956435492 0.23413443198291 0.00438669666915927 0.00420450936711722 19893433 8843611 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.23531902074669 0.23512219580763 0.235309376668956 0.234943160143435 0.00373088200476797 0.00375902638024811 20032700 8890839 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.236077390610932 0.235821968733815 0.2360265506981 0.235858701457237 0.0037410259083828 0.0035040001219631 20097260 8917300 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.236037616131993 0.236147750173581 0.235904478522927 0.236346990157931 0.00408909304228237 0.00384295197289937 20093874 8929619 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.235914897885838 0.23646620622502 0.235858701457237 0.236392767223621 0.00576346688690989 0.00554609393083115 20083427 8941661 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.23571636614675 0.235881391649242 0.23575188830396 0.23575188830396 0.00549029027253944 0.0056991071003456 20066526 8919547 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.234824459284108 0.234548118082615 0.234866865033951 0.234485389486534 0.00442270650915901 0.00412267381517127 19990598 8869131 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.232485576612183 0.231999226735182 0.232410162508583 0.231921873807889 0.00422135118398148 0.00433666375671144 19791489 8772748 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.233280032477401 0.233344506533942 0.233066300450141 0.233203631647211 0.0047121440603776 0.00465288744967927 19859121 8823618 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.23387062358125 0.233622527499627 0.233936064698253 0.233691920347906 0.00481199880571634 0.00505016663749621 19909398 8834131 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.23388138359977 0.234401583870606 0.233981841763943 0.234424353398947 0.00436433313231066 0.00506458829671463 19910314 8863590 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.234678188814009 0.234958419165332 0.234668497749294 0.234912642099641 0.00358977324042168 0.00347894100171838 19978146 8884646 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.235754543068354 0.235170538081507 0.23579766536965 0.235080491340505 0.00372898579653129 0.00390901454266872 20069776 8892667 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.236302540474438 0.235980958750527 0.236270695048447 0.236285954070344 0.0048466312230286 0.00398045282787388 20116427 8923312 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.236009235995809 0.235982704149912 0.236209658960861 0.235919737544823 0.00510385479585863 0.00498668166680596 20091458 8923378 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.23553438557152 0.23542629198231 0.235400930800336 0.23566033417258 0.00503872511754141 0.0052854085470096 20051034 8902338 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.23479508067459 0.234367125455473 0.234790569924468 0.234714274814984 0.00417721281931095 0.00439073107313444 19988097 8862287 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.237828430917363 0.982034895488433 0.237293049515526 1 0.00573935638922631 0.064716224398096 20246326 48203885 1299 749 87 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.240628843204622 0.23408344516451 0.235477225909819 0.23404287785153 0.0248258967738021 0.00393217284334097 20484725 8851560 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.233695232930026 0.233708766096516 0.233676661326009 0.233844510566873 0.00449491152899033 0.00439084731799203 19894467 8837392 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.233825844988894 0.233467398517918 0.233966582742046 0.233066300450141 0.00436956105693865 0.00477188564488073 19905586 8828265 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.233881324866045 0.234360170303378 0.23399710078584 0.234302281223774 0.00348517683762129 0.00373641214127987 19910309 8862024 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.234746789805446 0.235091809991063 0.234790569924468 0.235095750362402 0.00371731300552207 0.00370700809802911 19983986 8889690 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.235457244696389 0.23491137271827 0.235263599603265 0.235019455252918 0.00441603988279925 0.00392723194145735 20044467 8882867 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.23559092265573 0.23534925640036 0.235614557106889 0.235507743953613 0.00463436824772434 0.00484102627834958 20055847 8899425 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.235121992590975 0.234229133122272 0.234927901121538 0.23436331731136 0.00470974444480177 0.00387012426456644 20015927 8857069 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.234788537737564 0.234473118799948 0.234683756771191 0.234454871442741 0.00379267974811975 0.0036663639755498 19987540 8866295 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.239465386835294 0.934182433214974 0.237811856260014 1 0.0127356511400714 0.164973946353693 20385680 52711837 1299 861 78 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.235381912820004 0.233282915092006 0.234943160143435 0.233173113603418 0.00714764667441553 0.00414146788905371 20038054 8821289 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.233287644368232 0.233355031821143 0.233218890669108 0.233188372625315 0.00491784875942705 0.00491624290707397 19859769 8824016 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.233107778207121 0.233412339100953 0.233249408712902 0.233493553063249 0.0049048893592411 0.00518399270330007 19844457 8826183 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.233392812977193 0.23355400735104 0.233401998931868 0.233554589150835 0.00382796946034537 0.00350724160904872 19868722 8831540 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.234138167447855 0.23347110088025 0.23427176317998 0.233524071107042 0.0043262353654266 0.00409807648153932 19932174 8828405 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.234452745281876 0.234265257600454 0.23431754024567 0.23404287785153 0.00439535639087955 0.00438853458614254 19958954 8858435 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.2348516177588 0.234668101067616 0.234699015793088 0.234775310902571 0.0048861022989055 0.00431538347405065 19992910 8873668 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.234751335795804 0.234504826888777 0.234699015793088 0.234546425574121 0.00470353711829005 0.00458661419301777 19984373 8867494 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.238228301867621 0.932957351742696 0.238117036697948 1 0.00471572878561635 0.167725526604356 20280367 52642711 1299 861 79 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv new file mode 100644 index 0000000..8f48899 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.0236803809328478 0.144564877293804 0.0236362249179828 0.161043717097734 0.00201911811134317 0.0405969026503411 2015910 8157165 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.0233710891341257 0.0232800047707583 0.0233005264362554 0.0233310444800488 0.002206980013401 0.00230554896419873 1989580 880303 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.0232826713836896 0.023282860878843 0.0233310444800488 0.0233310444800488 0.00227958872628051 0.00211410956897827 1982053 880411 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.0235364950520067 0.023428046373146 0.0235599298084993 0.0235141527428092 0.00190190813216443 0.00178658007738954 2003661 885901 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.023430457183907 0.0235675989876155 0.023422598611429 0.0236057068741894 0.00164796612346258 0.00167335873902973 1994634 891178 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.0236573455656889 0.0237540393764746 0.0236514839398795 0.0236972610055695 0.00153610007449607 0.00137610061426318 2013949 898228 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.0235477954208016 0.0234943451043332 0.0235599298084993 0.0234531166552224 0.0016972908327945 0.00157203555167405 2004623 888408 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.0235115567121401 0.0236950395881704 0.0235446707866026 0.023575188830396 0.00224946830407574 0.0024582137849478 2001538 895997 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.0237741669457987 0.0235984608221968 0.0236820019836728 0.0234683756771191 0.00240280108640747 0.00225544815123099 2023894 892345 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.0239931380213771 0.148624734130152 0.02392614633402 0.168810559243153 0.00195880347780608 0.0516173851506385 2042535 8386245 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.0232727453840725 0.0234266976554394 0.023270008392462 0.0235141527428092 0.00160606794246844 0.00150668242633163 1981208 885850 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.0232875815231452 0.0235460723951997 0.0231937132829786 0.0235141527428092 0.00174709729103547 0.00158931837920801 1982471 890364 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.0236131543105885 0.023320757201855 0.0236362249179828 0.023270008392462 0.00189626846568717 0.0019386614798366 2010187 881844 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.0235429322683264 0.0235913205519852 0.0235294117647059 0.0236057068741894 0.00186882856294801 0.00187926470003268 2004209 892075 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.0235525528525708 0.0234883684337116 0.023575188830396 0.0235141527428092 0.00144139829758886 0.00144145629261365 2005028 888182 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.0235066935596649 0.023735659792041 0.0235446707866026 0.0238040741588464 0.00148970475253249 0.00141263290722606 2001124 897533 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.0237700085980301 0.0236929768434426 0.0237888151369497 0.0237277790493629 0.00142034833431197 0.00151954634536949 2023540 895919 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.0236846567480675 0.0239825809141371 0.0236514839398795 0.0237277790493629 0.00184223006381998 0.00275755775736111 2016274 906870 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.0236510962972909 0.023947461362874 0.023575188830396 0.0238803692683299 0.00210408433738034 0.00216469949674762 2013417 905542 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.023572710267178 0.0237133662817135 0.0235599298084993 0.0236514839398795 0.00183215697939335 0.0015972033187818 2006744 896690 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.0231629015705574 0.0233552420624327 0.0231479362172885 0.0233157854581521 0.0017790503310149 0.00183378226050992 1971857 883148 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.023227355960971 0.0230605075753639 0.0232089723048753 0.0229953459983215 0.00172715055698146 0.00170141931341648 1977344 872003 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.0234590252680123 0.023588173544003 0.0233768215457389 0.0236362249179828 0.00187833114733149 0.00182669946828706 1997066 891956 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.023492162835965 0.0236532557847097 0.0234836346990158 0.023575188830396 0.00191527209284057 0.0019760477231213 1999887 894417 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.0236267687881699 0.0236394777077458 0.0236209658960861 0.0236514839398795 0.00142082492265942 0.0014160356788978 2011346 893896 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.0236062119842291 0.0237335177109775 0.0236209658960861 0.0236667429617761 0.00160477026384902 0.00168626995252892 2009596 897452 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.0238767395240912 0.0237549649670576 0.0238651102464332 0.023773556115053 0.0016421399078785 0.00155454361256392 2032626 898263 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.0237673185934001 0.0236921570346405 0.0236820019836728 0.0236362249179828 0.00180827642864339 0.00179761601738241 2023311 895888 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.0238189807783898 0.0236614803181757 0.0237582970931563 0.0236209658960861 0.00187452083940349 0.00188116164754117 2027709 894728 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.0238341458263257 0.0236455866055936 0.0238651102464332 0.0235599298084993 0.00166331851550653 0.00171563316207869 2029000 894127 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.0233942184752455 0.023379148744919 0.0234378576333257 0.0233310444800488 0.00189018825648777 0.00191079033340979 1991549 884052 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.0233334643095413 0.0233728547289547 0.0233310444800488 0.0233463035019455 0.00169633344647475 0.00173751806116737 1986377 883814 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.0233714650299692 0.0231812839237213 0.0233157854581521 0.0231784542610819 0.00206913269406375 0.00198326098290219 1989612 876570 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.0236905771076025 0.0235527366473972 0.0236362249179828 0.0234836346990158 0.0019916124749566 0.00226180191663421 2016778 890616 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.0236464328394826 0.0236541813752927 0.0236057068741894 0.0236362249179828 0.001667299507492 0.00159315349617136 2013020 894452 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.0238163377607403 0.0239447374820154 0.0238193331807431 0.0239414053559167 0.00165440864297282 0.00175792269773894 2027484 905439 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.0237142937859777 0.0237891324822925 0.0237125200274662 0.0237888151369497 0.00157167289427152 0.0015563833844663 2018797 899555 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.0239069873927471 0.0238419440364133 0.0239108873121233 0.0238193331807431 0.00168782419997438 0.0016680348034966 2035201 901552 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.0238517189570089 0.0239322552318677 0.0238498512245365 0.0238651102464332 0.0016960869219612 0.00169330793714308 2030496 904967 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.0237226927087307 0.0235915585609923 0.0237277790493629 0.0235599298084993 0.00153858067935151 0.00148392184753537 2019512 892084 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.0234897312597274 0.0233298015441231 0.0233920805676356 0.0233005264362554 0.00227954776911534 0.00220869999278272 1999680 882186 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.0235961802639059 0.0232431398201101 0.0236209658960861 0.023224231326772 0.00219676708642147 0.00195863464819603 2008742 878909 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.0235777848610651 0.023356670116475 0.023575188830396 0.0232547493705653 0.00234551098071052 0.00246152652086528 2007176 883202 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.02361384736855 0.0235430311689984 0.0236514839398795 0.0234988937209125 0.00226713795740447 0.00241554675222049 2010246 890249 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.0235451289096618 0.0236467237597384 0.0235904478522927 0.0236209658960861 0.00181366313192512 0.00203134582598772 2004396 894170 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.0238499686919876 0.0237630837187426 0.0237888151369497 0.0236820019836728 0.001789698205771 0.00197286712244813 2030347 898570 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.023842474268608 0.0240766738082592 0.0238040741588464 0.0241092545967803 0.00196030001579302 0.00190740719241067 2029709 910428 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.0238050961256709 0.0239896682934582 0.0237582970931563 0.02392614633402 0.00209625786647027 0.00199403221333312 2026527 907138 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.0237837170495724 0.0237186024798687 0.0237277790493629 0.0236514839398795 0.00193496881588159 0.00202709821761163 2024707 896888 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.0237429206038085 0.0236476229048761 0.0236667429617761 0.0236667429617761 0.00183631205117946 0.00179185451351352 2021234 894204 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.0234029580536066 0.0235041299190677 0.0233310444800488 0.0233615625238422 0.00206051723438109 0.00207073163897019 1992293 888778 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.0235519655153153 0.0235226417307275 0.0234988937209125 0.0234836346990158 0.00224759979299917 0.00227787682468266 2004978 889478 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.0236017717145778 0.023519812068088 0.0235904478522927 0.0233768215457389 0.00231076650990485 0.00241069418742239 2009218 889371 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.0237489349373044 0.0237573450571281 0.0237430380712596 0.0237277790493629 0.00198788040568102 0.00190929383184378 2021746 898353 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.0239316555574762 0.0293908595814294 0.023773556115053 0.0250553139543755 0.00220184385617904 0.00971650473850309 2037301 1111377 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.0240507910463724 0.0240826504788807 0.0240634775310903 0.0240482185091936 0.0016301717325501 0.00167168332477082 2047443 910654 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.0238695152758491 0.0238156043729659 0.0238651102464332 0.0237430380712596 0.00184663576766115 0.00180502459136686 2032011 900556 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.023906658483884 0.0237160372716816 0.0238345922026398 0.0238040741588464 0.002312996923817 0.00257192619983212 2035173 896791 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.0239476311308245 0.0237990495242531 0.0239414053559167 0.0237430380712596 0.00206282316671229 0.00198554099212833 2038661 899930 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.023804567522141 0.0237938397715431 0.0238040741588464 0.0237430380712596 0.00200518193081518 0.00196775795395474 2026482 899733 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.0234913992975329 0.0231190049002088 0.0235141527428092 0.0231021591515984 0.00153900619201589 0.00144883839412711 1999822 874215 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.0234654154973516 0.0236265723304744 0.0234836346990158 0.0236820019836728 0.0018534935121879 0.00171257475828968 1997610 893408 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.0235539154750034 0.0235426080418748 0.0234988937209125 0.0234836346990158 0.00215930008564719 0.00216571795166266 2005144 890233 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.023598987735987 0.0237012278223538 0.0236209658960861 0.0237582970931563 0.00172712298217562 0.00182604898123813 2008981 896231 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.0238064470013585 0.0237066226931803 0.0237888151369497 0.0237277790493629 0.00143105021660712 0.00163294466255366 2026642 896435 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.0238234915285117 0.0239799892605047 0.0238498512245365 0.0239719233997101 0.0014640581393501 0.0013946779082157 2028093 906772 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.0238651337399234 0.0239822900142395 0.0238345922026398 0.0238803692683299 0.00155692572189675 0.00153188928713699 2031638 906859 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.0238599886655656 0.023871800944076 0.0238803692683299 0.02392614633402 0.00223103788850219 0.0022036669574562 2031200 902681 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.0238308097507147 0.0239369096302279 0.023773556115053 0.02392614633402 0.00225562138909531 0.00234142583378441 2028716 905143 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.0238382454403687 0.0238050790857651 0.0238040741588464 0.0237430380712596 0.00169274120242457 0.00162453562981925 2029349 900158 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.0233382569815458 0.0234227572841004 0.0233157854581521 0.023422598611429 0.00157794504605953 0.00172705767525179 1986785 885701 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.0235893671517426 0.0233248298004202 0.0235904478522927 0.0233463035019455 0.00184558564915939 0.00189207961065585 2008162 881998 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.0235296584463532 0.0238176142268033 0.0235599298084993 0.0238651102464332 0.00189819635725653 0.00206073205613439 2003079 900632 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.0235649221751706 0.0239206721268577 0.0235904478522927 0.0238651102464332 0.00176344552013216 0.00177208699086908 2006081 904529 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.0235906710404497 0.0237137365179467 0.0236209658960861 0.0236667429617761 0.00139732285974602 0.00147904091793981 2008273 896704 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.0238137064898359 0.0237116208823285 0.023773556115053 0.0236820019836728 0.00154678168786754 0.00146740761812627 2027260 896624 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.0238347918973067 0.0239300602599138 0.0237430380712596 0.0238498512245365 0.00174570788922518 0.00156952376214288 2029055 904884 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.0238900368395547 0.0238111879836128 0.0238956282902266 0.0238193331807431 0.0020257397859089 0.001909547207958 2033758 900389 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.0238630075790587 0.0241106826508227 0.0238193331807431 0.0240177004654002 0.00208252615903852 0.00209771183717801 2031457 911714 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.0237637945698674 0.0234220697025244 0.0236820019836728 0.0234378576333257 0.00163421650112129 0.00181009304740125 2023011 885675 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.0239374114625796 0.163350701930287 0.0239108873121233 0.168825818265049 0.0017900758976501 0.0259991066289261 2037791 8018186 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.024381450174448 0.0236072407100126 0.0239719233997101 0.0236209658960861 0.00295728901247094 0.0016455329849329 2075592 892677 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.0235192743236767 0.023717941343738 0.0234988937209125 0.0237582970931563 0.00187368197544291 0.00189149566950143 2002195 896863 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.0236336171405685 0.0236567730289251 0.0236057068741894 0.0236514839398795 0.00172741624106085 0.0019523754028778 2011929 894550 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.0234816729925826 0.0237481420421887 0.0234378576333257 0.0237582970931563 0.00142818963600819 0.00138547333951645 1998994 898005 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.0237922099462862 0.0238205761166688 0.0237277790493629 0.0238956282902266 0.00144819961312206 0.00157462864329274 2025430 900744 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.0238007733234708 0.0238291444409228 0.0238345922026398 0.0236820019836728 0.00169748348302751 0.00154900229821035 2026159 901068 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.0237936195556993 0.0239089567946216 0.0237888151369497 0.02392614633402 0.00190919175708034 0.0018530301509658 2025550 904086 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.0236717823154279 0.0237972247885323 0.0236667429617761 0.0236820019836728 0.00170411918361472 0.00153048633116496 2015178 899861 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.0237285190943048 0.0237912745633559 0.0237277790493629 0.0237888151369497 0.00150345479235511 0.00145155925043323 2020008 899636 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.0241974843992947 0.146860234714239 0.024124513618677 0.161821927214466 0.00225692715059991 0.0395169285318589 2059931 8286682 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.0237020066905936 0.0234455532578871 0.0236972610055695 0.0233920805676356 0.00184518968936886 0.00184437459472728 2017751 886563 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.0233889794269268 0.023456660344883 0.023422598611429 0.0235446707866026 0.00202718847901487 0.0020730095171761 1991103 886983 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.0236390676302992 0.0236204369871815 0.0236514839398795 0.0236057068741894 0.00192529848705705 0.00201062795244538 2012393 893176 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.0234636652323304 0.0233976605565788 0.0233920805676356 0.0233463035019455 0.00155429084309895 0.00141225517908317 1997461 884752 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.0236961450647842 0.0237995784331576 0.0236514839398795 0.0238040741588464 0.00169969538637651 0.00160160769818821 2017252 899950 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.0237356963555665 0.0237837640569111 0.0237582970931563 0.0238193331807431 0.00181181973509915 0.00153974936976883 2020619 899352 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.0238082912403406 0.0235550902920225 0.0237430380712596 0.0236362249179828 0.00191148893289021 0.00175254926132689 2026799 890705 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.0237999275578229 0.0237820186575261 0.0238651102464332 0.0238040741588464 0.00186518205732694 0.0019230693378997 2026087 899286 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.0240344630706708 0.148804865022786 0.0240329594872969 0.16401922636759 0.00151811935158965 0.0383411270600846 2046053 8396409 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv new file mode 100644 index 0000000..c641fd3 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.325025083705837 0.347324190503129 0.324956130312047 0.347234302281224 0.00510072482643945 0.0113875946322403 27669374 19597988 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.325635374101235 0.325736932082411 0.325734340428779 0.325703822384985 0.0057390509787925 0.00603045195188622 27721328 12317317 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.325702095613454 0.326259890761799 0.325673304341192 0.326298924238956 0.00647065953141683 0.00579584215561168 27727008 12337092 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.325667372234912 0.325430297144989 0.325810635538262 0.325261310749981 0.00537890555527896 0.00525458194551402 27724052 12305722 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.325482149558032 0.325381875534776 0.325474937056535 0.325352864881361 0.00467266420756771 0.00438314275304513 27708284 12303891 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.324845346758923 0.324983210447961 0.324879835202564 0.324925612268254 0.00401879312419853 0.00424315216038022 27654073 12288816 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.32510186043187 0.325107398258753 0.32498664835584 0.325230792706188 0.00433367648831836 0.00409561067268919 27675910 12293512 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.324851830962223 0.325357730843283 0.32475776302739 0.325337605859464 0.00586615972655302 0.00531948394119882 27654625 12302978 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.325152582877251 0.325266044484677 0.325291828793774 0.325383382925155 0.00675935347176438 0.00721270425987752 27680228 12299511 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.324582912726441 0.352809108838562 0.324345769436179 0.352849622339208 0.00634912267900773 0.0158349210847111 27631732 19907478 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.32431351287411 0.323386328683298 0.324116884107729 0.323308155947204 0.00451486419981418 0.00430323502157353 27608798 12228432 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.325210964200443 0.325441033995752 0.325490196078431 0.325337605859464 0.00487373377967028 0.00448992048271504 27685198 12306128 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.325456882309302 0.325359158897325 0.325352864881361 0.325444419012741 0.00496190439838748 0.00477533648548815 27706133 12303032 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.325982490419208 0.325014521855111 0.325810635538262 0.324971389333944 0.00521022396020489 0.00478968137898668 27750878 12290000 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.325543467567501 0.325789267618518 0.325429159990845 0.325551232166018 0.00438255551734103 0.00403811469469989 27713504 12319296 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.325173398109585 0.32505902953943 0.325169756618601 0.325047684443427 0.00420685830047982 0.00420721693809942 27682000 12291683 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.32530159033896 0.32537769715443 0.325230792706188 0.325322346837568 0.00414065587041835 0.00376399501299998 27692913 12303733 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.325653299634271 0.326880724033978 0.325566491187915 0.326009002822919 0.00502462100557673 0.00912437922783447 27722854 12360568 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.325214182808603 0.32550273121947 0.325368123903258 0.325413900968948 0.00556532443898556 0.00551432152660318 27685472 12308461 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.324730369617796 0.325886533966067 0.32480354009308 0.325841153582055 0.006017671234102 0.00600309484576019 27644285 12322974 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.324443443621761 0.324635056161531 0.324376287479973 0.324315251392386 0.00533770354794305 0.00553403587754035 27619859 12275651 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.325061310667754 0.324891709207471 0.325017166399634 0.324650949874113 0.00513268845658782 0.00505550945670513 27672458 12285356 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.325595693596256 0.325323510437158 0.325459678034638 0.325505455100328 0.00565389833556407 0.00592983079364714 27717950 12301684 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.325955085262868 0.325674970404241 0.326085297932403 0.325474937056535 0.005957047188078 0.00653752068787232 27748545 12314974 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.326307616830337 0.326606696330523 0.326176852063783 0.326405737392233 0.00485952680547015 0.00441927066064396 27778556 12350206 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.326242986238747 0.326407773691516 0.326146334019989 0.326482032501717 0.00493619351281209 0.00476385062842931 27773054 12342684 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.326094025764019 0.326340602260636 0.325978484779126 0.326100556954299 0.00436294988244357 0.00400789946928437 27760373 12340144 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.32610929653266 0.326155219689586 0.326176852063783 0.32623788815137 0.00431072327395421 0.00434207349989995 27761673 12333134 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.326009449199233 0.325703769494095 0.326207370107576 0.325597009231708 0.00533865199850269 0.00535764526809963 27753173 12316063 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.325696962285841 0.32598533414944 0.325810635538262 0.326115815976196 0.00566811840671179 0.00501977406734732 27726571 12326710 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.32436260252192 0.324799017921946 0.324330510414282 0.32498664835584 0.00553739115237822 0.0055968041042412 27612977 12281851 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.325165621764322 0.324631433135535 0.325154497596704 0.324788281071183 0.00529241340348729 0.00514552987050477 27681338 12275514 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.325555754662885 0.325233357914375 0.325535973144121 0.325062943465324 0.00643237703583324 0.00587329155060836 27714550 12298275 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.326566656053482 0.325932231695421 0.326451514457923 0.325780117494469 0.00659207167359991 0.00727064324557289 27800608 12324702 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.326511387617744 0.326898468927726 0.326497291523613 0.327031357289998 0.00551484026602662 0.00548749147958901 27795903 12361239 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.326934000266534 0.326786393130849 0.326970321202411 0.326665140764477 0.00557898344782032 0.00513100086138939 27831880 12357001 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.326681668434845 0.326928696071622 0.326588845654994 0.327153429465171 0.00484028278263931 0.00453663796533086 27810399 12362382 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.32611465304843 0.326704227132524 0.326085297932403 0.32669565880827 0.00447869063394078 0.00425610615061552 27762129 12353894 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.32639457798438 0.326079532825343 0.326268406195163 0.326070038910506 0.00512162772050422 0.00495290954707056 27785959 12330272 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.325528678415409 0.326141044930944 0.325551232166018 0.326176852063783 0.00534826806115661 0.00566503618432079 27712245 12332598 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.324294025023974 0.324094511261066 0.324223697261006 0.324101625085832 0.00661126491442375 0.00636236017579014 27607139 12255211 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.325174608024331 0.325555304764583 0.325047684443427 0.325597009231708 0.00623829311260784 0.00641439169926875 27682103 12310449 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.32578674265871 0.325849721906309 0.325810635538262 0.325780117494469 0.00661734710481505 0.00655351542618676 27734214 12321582 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.326124015204282 0.327148140376126 0.326131074998093 0.327168688487068 0.00623528238103968 0.005893871617711 27762926 12370680 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.32715439269827 0.327682417706072 0.327107652399481 0.327672236209659 0.00486267146185384 0.00477271220272435 27850642 12390883 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.326692299239169 0.327274761167878 0.32664988174258 0.327168688487068 0.00472594839949463 0.00466912279491619 27811304 12375468 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.326823498635293 0.326760265030963 0.326787212939651 0.326634622720684 0.00552653972391163 0.00543246582208484 27822473 12356013 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.32619436646074 0.326672043025682 0.326268406195163 0.326482032501717 0.00623075414623026 0.00644816816806813 27768915 12352677 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.326006759194603 0.32547379990239 0.325978484779126 0.325642786297398 0.00566299819273266 0.00569913625975046 27752944 12307367 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.325828831246436 0.326375245793885 0.325963225757229 0.326253147173266 0.0055686546564977 0.00600335929881738 27737797 12341454 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.324219503673002 0.324270849489848 0.324071107042039 0.324147402151522 0.00520382390364551 0.00523533805316234 27600795 12261879 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.325035268133847 0.32541583148645 0.32494087129015 0.325337605859464 0.005530582959479 0.00552872374817211 27670241 12305175 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.325731474222972 0.325280166352429 0.325734340428779 0.325139238574807 0.00648286494086234 0.00665090245553341 27729509 12300045 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.326715076177936 0.326854913279435 0.326634622720684 0.326848249027237 0.00511705081569454 0.00510785678913435 27813243 12359592 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.327983959584619 0.343323496949981 0.327397573815518 0.330540932326238 0.00716818227153359 0.0272815837819975 27921263 12982330 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.327352501554535 0.327374513387279 0.327428091859312 0.327275501640345 0.00409931806038517 0.00406015540008201 27867507 12379240 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.32643771203242 0.326348218548862 0.326482032501717 0.326298924238956 0.00502420186138719 0.0047514544672401 27789631 12340432 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.326571096323134 0.32612210999216 0.326390478370336 0.32632944228275 0.00668351023573286 0.00695578749374323 27800986 12331882 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.326480716866264 0.326147788519477 0.326497291523613 0.326054779888609 0.00624907763394068 0.00576156848048173 27793292 12332853 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.326322711397802 0.32580865212987 0.32623788815137 0.325719081406882 0.00571386600772671 0.00551531032688981 27779841 12320029 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.32416544515201 0.323755507098685 0.324147402151522 0.323811703669795 0.00452679925920818 0.00423597609020838 27596193 12242392 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.325260394503862 0.325231824078551 0.325047684443427 0.325169756618601 0.00510274244431488 0.00489876360078727 27689406 12298217 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.325715557383349 0.326112483850097 0.325612268253605 0.326024261844816 0.00570513937611111 0.0052900705813357 27728154 12331518 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.325944724633682 0.325354028480951 0.325963225757229 0.325001907377737 0.0049739182610191 0.00587647837787844 27747663 12302838 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.326366021647019 0.326211786496929 0.326405737392233 0.32623788815137 0.00421120851716124 0.00409875796936229 27783528 12335273 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.326737359753408 0.327035429888563 0.326756694895857 0.327031357289998 0.00424691235592737 0.0042818460559312 27815140 12366418 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.326711563901148 0.32620313883634 0.32669565880827 0.326024261844816 0.00454684487403813 0.00485469808292073 27812944 12334946 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.326151690535759 0.326510540691673 0.325978484779126 0.326832990005341 0.00627906015144943 0.00611582833816227 27765282 12346570 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.326116485540667 0.326363424679868 0.326115815976196 0.32623788815137 0.00664067703637077 0.00710411786237432 27762285 12341007 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.326167325453499 0.326369718695832 0.326009002822919 0.326222629129473 0.00584909767790432 0.00553906873335436 27766613 12341245 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.324013183841906 0.324667108041148 0.324010070954452 0.324406805523766 0.00494276200523797 0.00581900526882934 27583231 12276863 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.324490700777335 0.324400247053349 0.324452582589456 0.324422064545663 0.00515924233565715 0.00498802542180163 27623882 12266772 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.324896022217324 0.32529888972765 0.324635690852216 0.325581750209812 0.00568297003910114 0.00537994991068534 27658387 12300753 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.325434845415477 0.325788553591496 0.325352864881361 0.325749599450675 0.00507756515637955 0.0055804686499345 27704257 12319269 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.325737559036938 0.325680973520308 0.325688563363088 0.325719081406882 0.00403538232448291 0.00376814133571543 27730027 12315201 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.325765633757749 0.326102963489815 0.325719081406882 0.326314183260853 0.00471828364774436 0.00503154047047101 27732417 12331158 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.326857364501442 0.326409651318127 0.326665140764477 0.326497291523613 0.00520302661352721 0.00483492511404251 27825356 12342755 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.326509097002448 0.326274647320237 0.32651255054551 0.326253147173266 0.00570062249328331 0.00559272091030838 27795708 12337650 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.326274408781914 0.325731219866242 0.326527809567407 0.325932707713436 0.00585170234654526 0.00582929380954414 27775729 12317101 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.326037770601691 0.325599389321779 0.326115815976196 0.325688563363088 0.00518784964026163 0.00524369180211175 27755584 12312116 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.322425446785982 0.355532989587704 0.322697795071336 0.352361333638514 0.00540909737510928 0.0146722266081703 27448067 17451591 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.325842293016331 0.323955672673617 0.325093461509117 0.323781185626001 0.00738224707831198 0.00510970573157012 27738943 12249961 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.324638815486415 0.324759719990337 0.324727244983597 0.32457465476463 0.00589721390944065 0.00644615561698014 27636491 12280365 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.324834093377109 0.325218522019602 0.32484931715877 0.325001907377737 0.00530163479859225 0.00519104663610163 27653115 12297714 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.325166831679069 0.325013543373638 0.325261310749981 0.325246051728084 0.00469798910853073 0.00439159418204077 27681441 12289963 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.325483112791131 0.325344084993545 0.325429159990845 0.325444419012741 0.0049636679963165 0.00544869605794506 27708366 12302462 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.326159537361492 0.326728927178368 0.32637521934844 0.326756694895857 0.00516446910781596 0.00517500356318612 27765950 12354828 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.326426200222213 0.325743569889163 0.32632944228275 0.325658045319295 0.00528562180456024 0.00514021500941714 27788651 12317568 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.326005936922446 0.325918506509348 0.325856412603952 0.325886930647745 0.0045077559162303 0.00421781348179385 27752874 12324183 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.325489138871372 0.325930274732475 0.325444419012741 0.325810635538262 0.00434929291407025 0.0042398131815555 27708879 12324628 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.321774947282076 0.345635117797079 0.321766994735637 0.344823376821546 0.00693267067073075 0.0143164984514357 27392690 19502681 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.323521077449051 0.323300090086409 0.323338673990997 0.323643854428931 0.00613775362234918 0.00586950472339251 27541338 12225171 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.323219127366022 0.323101061665621 0.323170824750134 0.322926680399786 0.0064238034632266 0.00725218954890826 27515633 12217645 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.324008285449195 0.323822995874907 0.323826962691691 0.324330510414282 0.00599725121854177 0.00683710057871649 27582814 12244944 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.324295199698485 0.324777597111311 0.324269474326696 0.32466620889601 0.00528197185949779 0.00526229258549583 27607239 12281041 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.324688938847796 0.324592849230947 0.32462043183032 0.324361028458076 0.00616078230967932 0.00574312415076525 27640758 12274055 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.325356811787718 0.325390523195366 0.325093461509117 0.325368123903258 0.00588611755622175 0.00586174487239551 27697614 12304218 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.325713360742014 0.32657739477721 0.325719081406882 0.326634622720684 0.00533377776894557 0.00565316952481356 27727967 12349098 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.325819997694114 0.32572180528774 0.325810635538262 0.325688563363088 0.00469914735238886 0.00492891073833705 27737045 12316745 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.325317448444857 0.3527256006955 0.325307087815671 0.351323720149538 0.0043269449305414 0.0133417129312117 27694263 19902766 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv new file mode 100644 index 0000000..040677b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.0338813248660445 0.0363616643392671 0.0338445105668727 0.0363469901579309 0.00201463983443193 0.00223843022152697 2884316 2051730 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.0339799857782157 0.0343012498514097 0.0339360646982528 0.0343175402456703 0.00228674489967274 0.00214355055726678 2892715 1297057 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.0340816303636446 0.0341668012078693 0.0340123598077363 0.0340886549172198 0.00257191011162947 0.00251141457734479 2901368 1291973 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.0340424432219607 0.034146729114941 0.0340428778515297 0.0341649500267033 0.00213885114940888 0.00188901760585683 2898032 1291214 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.0339793632007249 0.0341748670686639 0.0339360646982528 0.0342107270923934 0.00178252512725264 0.00178219746979012 2892662 1292278 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.0340215222689214 0.0340473206863281 0.0340123598077363 0.0340581368734264 0.00157029210759042 0.00158158537304883 2896251 1287455 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.0340659719524142 0.0342003075869734 0.0340581368734264 0.0341802090486 0.00172786654225117 0.00153067433966327 2900035 1293240 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.0338966308749217 0.0341356220279452 0.0339971007858396 0.0340581368734264 0.00222887091717056 0.00214507742292359 2885619 1290794 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.0339809020243342 0.0339319392087972 0.0339208056763561 0.0337682154573892 0.00262968884480866 0.00276563310072612 2892793 1283092 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.0339055466544594 0.0368167943524251 0.0339360646982528 0.0368505378805219 0.00257491564858083 0.00297972597386057 2886378 2077411 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.0337437822275623 0.0340509437123243 0.0337376974135958 0.0341039139391165 0.00175619209336938 0.00169445349238663 2872607 1287592 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.0338885021273062 0.0340052459829699 0.0338445105668727 0.0340581368734264 0.00191058196413455 0.00185074760106549 2884927 1285864 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.0340709290788502 0.0340665729704542 0.0339665827420462 0.0339971007858396 0.0018682327038844 0.00168618921505323 2900457 1288183 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.0340891130402791 0.0339278137193416 0.0340581368734264 0.0338750286106661 0.00204782496251264 0.00194443263699698 2902005 1282936 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.0341898296328443 0.0340416613610492 0.0341649500267033 0.0340581368734264 0.00171445387954756 0.00146309929801103 2910579 1287241 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.0342616727259315 0.0342938980176362 0.0343022812237736 0.0342565041580835 0.00160833490637073 0.001625308876236 2916695 1296779 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.0341409514264454 0.0340955042875339 0.0341496910048066 0.0340886549172198 0.00156557350764374 0.00164199919601898 2906418 1289277 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.0341524397431621 0.0341223199689954 0.0342107270923934 0.0340733958953231 0.00196943702111643 0.00209640597770665 2907396 1290291 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.0340335274424229 0.0341837262928153 0.0340886549172198 0.034027618829633 0.00219087007923343 0.00210265326700973 2897273 1292613 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.0340203593411556 0.0340998677859966 0.034027618829633 0.0341344319829099 0.00224268298747041 0.00233305704460838 2896152 1289442 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.0336437351994682 0.0339084820988798 0.0336156252384222 0.0338445105668727 0.00199721321964103 0.00207975486990564 2864090 1282205 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.0341563631560285 0.0339696239682475 0.0340733958953231 0.0339360646982528 0.00200632888252454 0.00196478962298397 2907730 1284517 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.0339846962230044 0.034277078714471 0.0339208056763561 0.0342107270923934 0.00221209038406173 0.00223673022793065 2893116 1296143 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.0340398119510562 0.0341731216692788 0.0340123598077363 0.0341649500267033 0.00232213528866951 0.00240753785531094 2897808 1292212 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.0340801855139962 0.0340216157135662 0.0339665827420462 0.0339971007858396 0.00191012420745523 0.00176164541388774 2901245 1286483 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.0342038669932497 0.0339888233614832 0.0341954680704967 0.0340123598077363 0.00192200221104135 0.00189774719137555 2911774 1285243 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.0341637401119571 0.0342227597699722 0.0341496910048066 0.0342717631799802 0.00167844130059769 0.0016015941292889 2908358 1294089 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.0341308962126321 0.0341706622428726 0.0340886549172198 0.0341496910048066 0.00164549836038783 0.00171424749753115 2905562 1292119 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.0341399646998563 0.034050679257872 0.0340733958953231 0.0340428778515297 0.00195374187843192 0.00192879437268376 2906334 1287582 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.0341070150798253 0.0341989324238216 0.0341191729610132 0.034027618829633 0.00217161654534193 0.00208289126565101 2903529 1293188 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.0338911451449557 0.0337543580440896 0.0338597695887694 0.033676661326009 0.00203887566978542 0.00222562296765078 2885152 1276377 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.0339528273035235 0.0341571750658062 0.0339513237201495 0.0341039139391165 0.00197424443196912 0.00191110810123145 2890403 1291609 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.0340604392354678 0.0342143501183897 0.0340428778515297 0.0341954680704967 0.00237330609751948 0.0024725857500341 2899564 1293771 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.0342047832393682 0.0340690588423057 0.0342870222018769 0.0341496910048066 0.00256073854777313 0.0028200744025069 2911852 1288277 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.03431535535108 0.0344104166493118 0.0343175402456703 0.0344853894865339 0.0019975977806615 0.00196415217813062 2921265 1301185 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.0343644449988908 0.0342003604778639 0.0343938353551537 0.0342107270923934 0.00201894382249997 0.0021746655426363 2925444 1293242 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.0343607917611619 0.0343089719214163 0.0344548714427405 0.0342717631799802 0.00178236838794645 0.00172740229353237 2925133 1297349 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.0340743238881867 0.0339589400083753 0.0340123598077363 0.0339971007858396 0.00175779553858922 0.001661330561371 2900746 1284113 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.0339606741292564 0.0339305376002001 0.0339360646982528 0.0339818417639429 0.00190025376321538 0.00178881306528643 2891071 1283039 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.0341473181622946 0.0339689628321168 0.0341191729610132 0.0339818417639429 0.0020126946976083 0.00224453914291495 2906960 1284492 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.033900225378925 0.0336847536322488 0.0339360646982528 0.0335393301289387 0.00230742624040994 0.00245177451828018 2885925 1273745 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.0340031855998061 0.0340870681905061 0.0339360646982528 0.034027618829633 0.00238262912824132 0.00243756714036741 2894690 1288958 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.0340057228967497 0.0340658853888783 0.0339055466544594 0.0340428778515297 0.00243199394750923 0.00249619786481313 2894906 1288157 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.0343602279173967 0.0342484911881793 0.0342412451361868 0.0342412451361868 0.00241739421008607 0.00240129328946015 2925085 1295062 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.0342338329400229 0.0342813893220432 0.0341802090486 0.0341649500267033 0.00192886635520689 0.00179970157987395 2914325 1296306 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.0340725031426948 0.0342337081842967 0.0340123598077363 0.0341649500267033 0.00185544953956301 0.00174125821559463 2900591 1294503 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.0342014941507376 0.0342411129089606 0.0342259861142901 0.0343175402456703 0.00197993496261111 0.00199123677038421 2911572 1294783 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.0341867637323709 0.0340328814732334 0.0341039139391165 0.0339208056763561 0.00238041028874708 0.00231626559474037 2910318 1286909 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.0340839092321957 0.0341684672709186 0.0340581368734264 0.0341649500267033 0.00216679990208015 0.00198383785350395 2901562 1292036 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.0340645271027658 0.0340886020263294 0.0341344319829099 0.0341039139391165 0.00214802709896443 0.0021453026378272 2899912 1289016 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.0338869280634616 0.0338264483277818 0.0338902876325628 0.0337224383916991 0.00206122247585549 0.00181022760771789 2884793 1279103 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.0339234369472606 0.0341684143800282 0.0339513237201495 0.0340886549172198 0.00222513802695547 0.00216323202291764 2887901 1292034 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.0340380146990546 0.0339160983871055 0.0339818417639429 0.0338750286106661 0.0023234676363042 0.00248483187609504 2897655 1282493 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.034210468664001 0.0343533738239545 0.0341954680704967 0.0343480582894636 0.00198730115328552 0.00182004973467016 2912336 1299028 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.0344304499596587 0.0357926671805017 0.034332799267567 0.0350499732967117 0.0018605981556719 0.00315845221818593 2931063 1353453 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.0342752167230422 0.0342297942584029 0.0342870222018769 0.0342565041580835 0.00150333613356465 0.00163676402216596 2917848 1294355 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.0343516292999768 0.0343862984032637 0.0343022812237736 0.0344396124208438 0.00177565951392753 0.00180588617498603 2924353 1300273 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.0341069328526095 0.0340877028811916 0.034027618829633 0.0339818417639429 0.00242588729118476 0.00269150899435658 2903522 1288982 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.0339953622675635 0.0340033154654683 0.0339665827420462 0.0340886549172198 0.00242731383219934 0.00238182329159008 2894024 1285791 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.0339829107177479 0.0341327394744153 0.0339665827420462 0.0340581368734264 0.0021658641987229 0.00209573085857018 2892964 1290685 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.033712089509258 0.0338375554147776 0.0337224383916991 0.033829251544976 0.00179717900992546 0.00178245329208478 2869909 1279523 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.0340204533151165 0.0339644142155375 0.0340886549172198 0.0339208056763561 0.00191577932617431 0.00193766581124319 2896160 1284320 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.0339905226085785 0.0338530260002362 0.0339360646982528 0.0338445105668727 0.00216097907652337 0.00213627140575596 2893612 1280108 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.03411452124995 0.0340071500550264 0.0341191729610132 0.0341039139391165 0.00200809102339735 0.00226491305539852 2904168 1285936 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.0342151438685544 0.0344647884847011 0.0342259861142901 0.0344396124208438 0.00156216663412163 0.00156251503081414 2912734 1303241 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.0342759215277488 0.0341467555603863 0.0342717631799802 0.0341802090486 0.0015813623046037 0.00157792013998821 2917908 1291215 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.0342455326981516 0.0341414135804502 0.0342259861142901 0.0340733958953231 0.00176337551083728 0.00179289466823445 2915321 1291013 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.0340945165430292 0.0340137614163334 0.0340123598077363 0.033829251544976 0.00236774679846974 0.00227812763336523 2902465 1286186 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.034110539103358 0.0340297873561417 0.0341191729610132 0.0339055466544594 0.00267749480404788 0.0026799386906717 2903829 1286792 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.0339513472136398 0.0342863081748557 0.0338445105668727 0.0343480582894636 0.00219314143981144 0.00205253579203421 2890277 1296492 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.033692061308847 0.0336637295032924 0.0337224383916991 0.0335545891508354 0.00198169949115293 0.00202258770541211 2868204 1272950 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.0339844260478669 0.0340132325074289 0.0339971007858396 0.0341954680704967 0.00205949532334233 0.00202102796669046 2893093 1286166 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.0338638926963026 0.0337406593034614 0.0338597695887694 0.0336919203479057 0.00215158944925768 0.00216125835758153 2882832 1275859 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.0339966309160353 0.0338967667666437 0.0339513237201495 0.0338750286106661 0.00192576289631271 0.00208688090300313 2894132 1281762 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.0340661481535908 0.0343738690440064 0.0340581368734264 0.034378576333257 0.00158911072519061 0.00154730865660098 2900050 1299803 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.034213158668631 0.0340048493012915 0.0341954680704967 0.0338139925230793 0.00179405807309235 0.00200219523882553 2912565 1285849 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.0342401409421465 0.0340811973016654 0.0342412451361868 0.0340581368734264 0.00202334692174937 0.00201728505269797 2914862 1288736 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.0344049360292818 0.0342213581613751 0.0343938353551537 0.0341344319829099 0.00223851138073435 0.00214905364181832 2928891 1294036 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.0340836742972936 0.0341977952696768 0.0341496910048066 0.0342107270923934 0.00221200814042362 0.00236870455905495 2901542 1293145 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.0341421261009563 0.0339914150151156 0.0341344319829099 0.0339055466544594 0.00201231911685608 0.0018947676848761 2906518 1285341 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.0337648676350331 0.0370024150610824 0.0337376974135958 0.0368963149462119 0.00206432536949549 0.00263289168729488 2874402 1816290 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.0339628002901211 0.0337531415536091 0.0339665827420462 0.0338445105668727 0.0021724110821557 0.00180590077608502 2891252 1276331 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.0336572322095986 0.033836206697071 0.0336156252384222 0.0337529564354925 0.00221105257997692 0.00237441974981609 2865239 1279472 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.0338846844351457 0.0336713986824086 0.0339208056763561 0.0336461432822156 0.00198920290823507 0.00201892490859063 2884602 1273240 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.0341189850130915 0.0340106144083513 0.0341191729610132 0.0340428778515297 0.00173312699310259 0.00186140605424397 2904548 1286067 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.0340395770161541 0.0341959969794012 0.0340733958953231 0.0341191729610132 0.00197113696800729 0.00197144680057989 2897788 1293077 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.0341387430383649 0.0341018776398339 0.0341344319829099 0.0341496910048066 0.00195722060310275 0.00196943711268064 2906230 1289518 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.0341058051650791 0.0342810455312553 0.0340581368734264 0.034332799267567 0.00204644369417822 0.00194457647064501 2903426 1296293 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.034096536983188 0.0339816302003811 0.0341039139391165 0.0339360646982528 0.00171815027728223 0.0015399532665228 2902637 1284971 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.0341278420589037 0.0339750717299645 0.0341496910048066 0.0338597695887694 0.0016381451516057 0.00149892208779399 2905302 1284723 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.033533433262894 0.0361442985976144 0.0334782940413519 0.0360265506981002 0.0024255017814826 0.00297759042232599 2854700 2039465 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.0338119603361754 0.0340074674003691 0.0337682154573892 0.0340123598077363 0.002244988643079 0.00219719958418719 2878411 1285948 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.0337579957891443 0.0339958049590234 0.0336614023041123 0.0339665827420462 0.0025629884655072 0.0025882811250016 2873817 1285507 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.0338929776371927 0.0339742519211624 0.0338445105668727 0.0340886549172198 0.002327092187835 0.00263607132521368 2885308 1284692 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.0336518404535935 0.0341609038735834 0.033676661326009 0.0341954680704967 0.00204354768929622 0.00207963639114113 2864780 1291750 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.0340315070022641 0.0337021282897638 0.0339971007858396 0.0336156252384222 0.00232106875548999 0.00231388452221036 2897101 1274402 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.0340947749714216 0.0340422696062895 0.0341496910048066 0.034027618829633 0.00228069339108536 0.00221772788141848 2902487 1287264 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.0341132760949684 0.0338976923572267 0.0341802090486 0.0338750286106661 0.00210985925819778 0.00222508241100689 2904062 1281797 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.0340724091687339 0.0339782980742823 0.0340886549172198 0.0339513237201495 0.00185314831017182 0.0017442690961685 2900583 1284845 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.0338302617650554 0.0367969274958093 0.0338139925230793 0.0367132066834516 0.00165413556125515 0.0020444110098808 2879969 2076290 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv new file mode 100644 index 0000000..37ffd23 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.241898926586498 0.925105105153004 0.239978637369345 1 0.0121941177603478 0.17330021431468 22875657 52199643 1443 861 73 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.235829262013744 0.234708298144363 0.235416189822232 0.234393835355154 0.00561528538597549 0.00486578318918482 22301667 8875188 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.234423888120386 0.23427115493474 0.2341802090486 0.234119172961013 0.00466442558689507 0.00421221541423013 22168765 8858658 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.234343077693959 0.234883578555336 0.234424353398947 0.234744792858778 0.00484706859094161 0.00483706826060575 22161123 8881816 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.234891683415373 0.23499650060646 0.234576943617914 0.235095750362402 0.00540146510514504 0.00540672897205613 22213003 8886086 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.23547715188823 0.235291446657091 0.235431448844129 0.235400930800336 0.0057687275752549 0.00586063633813772 22268369 8897239 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.235568261890075 0.235589354597587 0.235568780041199 0.235690852216373 0.00526530256509526 0.00608609582236331 22276985 8908504 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.235888595604778 0.235748291723409 0.235919737544823 0.23584344243534 0.00466218002518577 0.0049560582486839 22307278 8914514 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.236574881482183 0.236460361781624 0.236392767223621 0.236285954070344 0.0040500973312586 0.00368787974761154 22372178 8941440 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.240940304707757 0.921361328055945 0.239795529106584 1 0.00838090081189725 0.180317491478598 22785003 51988398 1443 861 74 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.234978785676886 0.234471849418577 0.235004196231022 0.234592202639811 0.00490139986102342 0.00486148406705484 22221240 8866247 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.234703520535519 0.234929408511916 0.234744792858778 0.234821087968261 0.00406318680233773 0.003994745358226 22195209 8883549 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.23463232234118 0.23506710994522 0.234470130464637 0.235004196231022 0.00374063815867373 0.00325913779006179 22188476 8888756 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.235106367173202 0.234653635409076 0.234912642099641 0.234668497749294 0.00382696214197305 0.00337422102046558 22233305 8873121 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.235725356851473 0.237396980115273 0.235599298084993 0.23611810482948 0.0051000563879813 0.00735362818794315 22291841 8976857 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.235860647167582 0.235167867091539 0.23584344243534 0.235309376668956 0.006074626887542 0.00609643110337406 22304635 8892566 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.23625954951201 0.236061141340459 0.236301213092241 0.236133363851377 0.00507724098320504 0.00469610795779304 22342358 8926344 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.236399122505783 0.236187153886971 0.236331731136034 0.236057068741894 0.00417756003165065 0.00405667759426737 22355557 8931109 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.236327596501549 0.23678143593214 0.236392767223621 0.236896314946212 0.00378988535781057 0.00337025893587792 22348793 8953581 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.23665853645254 0.237045387920964 0.236667429617761 0.236896314946212 0.00399805070071991 0.0038541506378769 22380089 8963562 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.234390620703278 0.235818451489599 0.23422598611429 0.235385671778439 0.00487716320354178 0.00563425080016598 22165619 8917167 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.234819279726581 0.235544159331692 0.234836346990158 0.235538261997406 0.00383136361970253 0.00349704228544257 22206156 8906795 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.235404071430622 0.234824287867134 0.235324635690852 0.234500648508431 0.00388941689049153 0.00364487039625614 22261458 8879574 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.23512086483018 0.23450575247936 0.235233081559472 0.234454871442741 0.00401630207653089 0.00380101551079555 22234676 8867529 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.235762547412811 0.23551208100663 0.235721370260166 0.235690852216373 0.00402784148036007 0.00380459076235133 22295358 8905582 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.236653587580573 0.236552180367457 0.236636911573968 0.236316472114137 0.00522436029936155 0.00503673237216922 22379621 8944912 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.237202468239319 0.236848739590246 0.237247272449836 0.236942092011902 0.00450465482283361 0.00455881400787883 22431527 8956126 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.237107466816782 0.237390368753966 0.237064164187076 0.237811856260014 0.00424977184313806 0.00480077628474831 22422543 8976607 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.236972736949848 0.237324281586341 0.237079423208972 0.237155718318456 0.00359087781846326 0.00326415003878154 22409802 8974108 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.236748208320651 0.236831893841636 0.236896314946212 0.236728465705348 0.00380537550363851 0.00352406869450853 22388569 8955489 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.234662195339696 0.234813313007364 0.234500648508431 0.235034714274815 0.0051109416609948 0.00506009155607383 22191301 8879159 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.235540768156927 0.235163001129617 0.235492484931716 0.235156786449989 0.00370617519627108 0.00372597108474743 22274385 8892382 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.236120018816288 0.235970380572435 0.235858701457237 0.235950255588617 0.00653225044198619 0.00403199573904749 22329163 8922912 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.235642325777368 0.235323895218386 0.235568780041199 0.235111009384298 0.00403338132714226 0.00391324798863654 22283989 8898466 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.236341491411301 0.236568259198156 0.236377508201724 0.236575875486381 0.00435286063931999 0.00375813781151471 22350107 8945520 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.237720206958019 0.236967506084766 0.237659266041047 0.236789501792935 0.00466013196693815 0.00472878508018801 22480488 8960617 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.237927626025589 0.237446697552302 0.237842374303807 0.237232013427939 0.00473297973330362 0.00417543096185482 22500103 8978737 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.238033931602254 0.237564247556342 0.238056000610361 0.237430380712596 0.0041470467592846 0.00420157221112871 22510156 8983182 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.237592625461703 0.238078743693257 0.237628747997253 0.238101777676051 0.00368959550296989 0.00406102018533001 22468423 9002637 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.237145016911554 0.236937490504432 0.237125200274662 0.237018387121386 0.00339943125568136 0.00314445936819503 22426094 8959482 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.23535109312175 0.234499802254183 0.235385671778439 0.234241245136187 0.00555166813525831 0.0058409391594897 22256448 8867304 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.236241139285314 0.236254669108639 0.235675593194476 0.236285954070344 0.00631196416974449 0.00413851609200476 22340617 8933662 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.235631931031336 0.235718461261191 0.235568780041199 0.235736629282063 0.00437378398099215 0.00474852578518104 22283006 8913386 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.236540778678568 0.236337469797649 0.236575875486381 0.236133363851377 0.00453913801041857 0.00423001140298916 22368953 8936793 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.237169412312466 0.237435590465306 0.236957351033799 0.237476157778286 0.00417720567681158 0.00416239399896041 22428401 8978317 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.237975052715268 0.238023287594614 0.238117036697948 0.237994964522774 0.00451983197299634 0.00483031093849873 22504588 9000540 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.238538631946734 0.238282585185076 0.238605325398642 0.238254367895018 0.00429895605829876 0.00408120550916022 22557884 9010345 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.238414920722085 0.238955357311683 0.238300144960708 0.238345922026398 0.00407376073938265 0.00657570277514979 22546185 9035785 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.238079793264046 0.238142450770812 0.238086518654154 0.238101777676051 0.00390393671770451 0.00379862181686028 22514493 9005046 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.237307007872355 0.237192213032871 0.237293049515526 0.237140459296559 0.00399174061288891 0.0038906831550758 22441413 8969114 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.235045627171972 0.234898599568225 0.234836346990158 0.234653238727398 0.00620117616540553 0.00585005302654198 22227561 8882384 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.235232478812245 0.235913866655983 0.235217822537575 0.236011291676204 0.00501994515155438 0.00453050378879051 22245231 8920775 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.235967111361939 0.23628957709634 0.23588921950103 0.236408026245518 0.00430776032046573 0.00447839796103583 22314703 8934982 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.237315118523633 0.237056071880836 0.237247272449836 0.236774242771038 0.00480298365383451 0.00508400731554606 22442180 8963966 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.238468438331107 0.238339918910331 0.238529030289158 0.238254367895018 0.00536445612969311 0.00567068807909339 22551246 9012513 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.241008415144373 0.238668688685409 0.238925764858473 0.238529030289158 0.0161636718880384 0.00538266690529372 22791444 9024945 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.238865077729807 0.238692701149676 0.238818951705196 0.238452735179675 0.0049948288026864 0.0048543675417649 22588755 9025853 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.238818518150173 0.239214469784029 0.238635843442435 0.239154650186923 0.00491422401191274 0.00512544589395704 22584352 9045583 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.237844679547586 0.238107251883213 0.238025482566567 0.238162813763638 0.00448555510092913 0.00449650336606083 22492259 9003715 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.23672777836202 0.237169073268296 0.236713206683452 0.236804760814832 0.00483905631198709 0.00506517455866613 22386637 8968239 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.235560140664283 0.235102123714702 0.235385671778439 0.235156786449989 0.00551692966177866 0.005298729082494 22276217 8890080 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.235612759439722 0.235702884893952 0.235553521019303 0.235858701457237 0.00399342853730811 0.00376228600922837 22281193 8912797 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.236598970222225 0.237135117316623 0.236667429617761 0.237033646143282 0.00369631657651761 0.00419385479206893 22374456 8966955 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.237571582181333 0.237295720505494 0.237491416800183 0.237354085603113 0.00422632457794358 0.0038728226689366 22466433 8973028 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.238292087181993 0.238261455274339 0.238406958113985 0.238422217135882 0.0054708135317021 0.00579231667251152 22534569 9009546 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.238667069978583 0.239154306396135 0.238590066376745 0.238971541924163 0.00574983927451582 0.00561199962339958 22570030 9043308 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.239304829416983 0.239471096384524 0.23921568627451 0.239505607690547 0.00473020577764257 0.0049405382036666 22630341 9055287 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.239143303734743 0.241006571825366 0.239093614099336 0.239780270084688 0.00475550697755772 0.0100450344480118 22615066 9113349 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.237483824300029 0.237775070645701 0.237384603646906 0.237857633325704 0.00435387065810022 0.0040782456712198 22458134 8991154 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.236629911246528 0.236671660888998 0.236652170595865 0.236499580376898 0.00417957999028495 0.00369736923617653 22377382 8949430 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.235927668429385 0.235633359818447 0.235965514610513 0.235461966887922 0.00522952581786786 0.00470919380400414 22310973 8910168 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.235563958063386 0.234704860236483 0.235461966887922 0.234607461661707 0.0039208545338956 0.00327700405471519 22276578 8875058 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.236661201229752 0.23688446738675 0.236697947661555 0.237018387121386 0.00380520532172184 0.0038305145646762 22380341 8957477 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.237678342462046 0.237769411320422 0.23764400701915 0.237811856260014 0.00377147662660206 0.00347506367034502 22476529 8990940 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.238628906562072 0.238622990956054 0.238742656595712 0.238742656595712 0.00468430331482407 0.0049263211554072 22566421 9023217 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.238805099093495 0.239239566511551 0.238925764858473 0.238956282902266 0.00605165078342814 0.00638991031526383 22583083 9046532 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.238967565907369 0.23948281171676 0.23907835507744 0.239414053559167 0.00481545039664039 0.00489812358841784 22598447 9055730 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.238854598387672 0.312522116656412 0.238712138551919 0.242877851529717 0.00420847423119381 0.198348884948875 22587764 11817616 1443 577 5 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.237215369144872 0.236790850510642 0.237140459296559 0.236835278858625 0.00359817850105649 0.00356024927975199 22432747 8953937 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.236624021242927 0.236526237385688 0.236636911573968 0.236484321355001 0.00389988396451653 0.0040393499758479 22376825 8943931 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.24501082592179 0.932934223956895 0.243335622186618 1 0.00896667423035094 0.146579536281132 23169940 52641406 1443 861 73 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.238764873646998 0.237173119421416 0.237109941252766 0.237186236362249 0.00725247383413023 0.0039874168358825 22579279 8968392 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.236498047072549 0.236522191232568 0.236530098420691 0.236545357442588 0.00351006916291061 0.00359838867137146 22364912 8943778 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.237212778389249 0.23711218911561 0.237247272449836 0.237003128099489 0.00390247103076414 0.00407053854413565 22432502 8966088 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.238194272939066 0.237498530624949 0.238101777676051 0.237293049515526 0.0048662252264689 0.00474352199103855 22525319 8980697 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.238424839615043 0.239134287194097 0.238437476157778 0.239047837033646 0.00513180314176615 0.00511185014928717 22547123 9042551 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.238936973841986 0.237914332360273 0.23907835507744 0.237903410391394 0.00448357286986754 0.00429919780319591 22595554 8996420 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.237650425748389 0.237564379783568 0.237582970931563 0.237521934843976 0.00381170951042192 0.00405785621300077 22473889 8983187 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.237095930023373 0.236971578683332 0.237125200274662 0.237109941252766 0.00370975376136452 0.00357362307259508 22421452 8960771 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.236794048833417 0.236564636172159 0.236758983749142 0.236392767223621 0.0038263425977345 0.00344176448149492 22392904 8945383 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.244582981135968 0.983668222007156 0.243442435339895 1 0.00879392405449217 0.0613396522700743 23129480 48284058 1443 749 86 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.237793149946961 0.236200403055031 0.237170977340352 0.23607232776379 0.00525895346157537 0.00364314985852578 22487386 8931610 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.23638899212257 0.236235813506191 0.236438544289311 0.236301213092241 0.00372629402808793 0.00386599539859462 22354599 8932949 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.23646346841586 0.236634954611021 0.236438544289311 0.236575875486381 0.00398006294312456 0.00392798013735369 22361642 8948042 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.237449594602261 0.237521987734867 0.237277790493629 0.237262531471733 0.00469504270242129 0.00459687490951598 22454897 8981584 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.2378558885311 0.238244424407612 0.237872892347601 0.238254367895018 0.00461641730687275 0.00432330512285943 22493319 9008902 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.237459048216659 0.237288606680728 0.237277790493629 0.237354085603113 0.00387274190013335 0.00335557215806035 22455791 8972759 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.237098563077048 0.236619060898439 0.237033646143282 0.236606393530175 0.00375175841259097 0.00394084261161154 22421701 8947441 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.237295915208481 0.236910119468621 0.237293049515526 0.236926832990005 0.00377281652442446 0.00379696368279654 22440364 8958447 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.240313415868463 0.936824069414549 0.240161745632105 1 0.00450237429596242 0.145745168086792 22725720 52860893 1443 861 75 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv new file mode 100644 index 0000000..9f58c2a --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.024539827606891 0.145063799459235 0.0244144350347143 0.16429388876173 0.00262213553590643 0.0472725961196193 2320658 8185317 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.0238844087322 0.0236135347259769 0.0238345922026398 0.0235904478522927 0.00186520053724047 0.00179824778924419 2258677 892915 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.0236168312616012 0.0238655598190021 0.0236057068741894 0.0239414053559167 0.00170381836591554 0.00169524119052282 2233373 902445 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.0237288470751506 0.023485856116415 0.023773556115053 0.0234073395895323 0.00197056259500065 0.00190963112046968 2243966 888087 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.0237843421180569 0.0237721809519012 0.0237125200274662 0.0238803692683299 0.00223139477478185 0.00206493863070131 2249214 898914 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.0238853921618856 0.023890921000976 0.0237582970931563 0.0238345922026398 0.00249223087923786 0.00236516392751273 2258770 903404 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.0238015679993249 0.0238812155225772 0.0238193331807431 0.0238956282902266 0.00218892183102357 0.00220326865387419 2250843 903037 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0238464673804569 0.0238318947672265 0.0238345922026398 0.0237888151369497 0.00188458066028696 0.00206423701542087 2255089 901172 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0237844901612354 0.0238594773665996 0.0237582970931563 0.0238193331807431 0.00160636780044272 0.00150898171667981 2249228 902215 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.0242495572319331 0.153800289531522 0.024124513618677 0.17589074540322 0.00185992811904903 0.0519214670000362 2293208 8678279 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.0237174266013817 0.0238549287500203 0.0237582970931563 0.0238651102464332 0.001897828727648 0.00205409605516147 2242886 902043 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.0237053187842842 0.0237218288241866 0.0236972610055695 0.0235446707866026 0.00156034514746817 0.0014817826608592 2241741 897010 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.0236131619056774 0.0237077334018799 0.0235904478522927 0.0236820019836728 0.00139144089891074 0.00144151602540931 2233026 896477 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.0236495488040464 0.0236378909810321 0.0236667429617761 0.0236972610055695 0.00141476844404787 0.00134411556698985 2236467 893836 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.0238218287657519 0.0240366354041836 0.0238193331807431 0.0239566643778134 0.00190833235143566 0.0019458844256533 2252759 908914 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.0239500764563708 0.0237617878919265 0.0240482185091936 0.0235904478522927 0.00227268769092296 0.00246047203533852 2264887 898521 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.0239950815826302 0.0238801841502133 0.02392614633402 0.0239108873121233 0.00216433158726095 0.00192077616831074 2269143 902998 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.0238340740515151 0.0240975921554347 0.0237582970931563 0.024078736552987 0.00166283462820202 0.00165621379948434 2253917 911219 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.0239152651604013 0.0240388568215828 0.0238956282902266 0.0240482185091936 0.00152141353934019 0.00142229155118966 2261595 908998 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.0238797665211032 0.0238986695164278 0.0238803692683299 0.0239414053559167 0.00147076881804318 0.00157753475356158 2258238 903697 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.0237302217618079 0.0237439107709522 0.0237125200274662 0.0236820019836728 0.00190912355241725 0.00195774009283101 2244096 897845 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.0237560129984026 0.0236840118375102 0.0237888151369497 0.0236057068741894 0.00154696243622463 0.00137642664895288 2246535 895580 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.0238252654823953 0.023757212829902 0.0238193331807431 0.0236972610055695 0.00153628240263819 0.00159835849949561 2253084 898348 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.0237588892658703 0.0239387608113939 0.0237582970931563 0.02392614633402 0.00158365433139187 0.00150652537814805 2246807 905213 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.0237870597678334 0.0238835691672025 0.0237430380712596 0.0239414053559167 0.00168566242328064 0.00164266344951767 2249471 903126 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.0238590299016026 0.0238046295131962 0.0237888151369497 0.0237888151369497 0.00200984070386435 0.00212959314546612 2256277 900141 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.0240019867394553 0.0239341857493694 0.0240482185091936 0.0238803692683299 0.00179655783931029 0.00188553448198653 2269796 905040 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.0239827411262522 0.0238883293473436 0.0239566643778134 0.0238651102464332 0.00176698839980714 0.0018514947057131 2267976 903306 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.0238902775867756 0.0238966067717 0.0238803692683299 0.0239414053559167 0.00139511846860538 0.0014305780922193 2259232 903619 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.0238663791879631 0.0237997106603838 0.0238651102464332 0.023773556115053 0.00147018182702321 0.00142476329449567 2256972 899955 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.0237562773612213 0.0238901805285096 0.0236820019836728 0.0238651102464332 0.00199985013545713 0.00199458458250924 2246560 903376 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.0238360514853992 0.023741345562765 0.0238498512245365 0.0237582970931563 0.00155709513513128 0.00144929776091225 2254104 897748 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.0238514056779106 0.0238491900884058 0.0238651102464332 0.0238651102464332 0.00165400041616821 0.00157263317361305 2255556 901826 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.0238641268167476 0.0238165564089942 0.0239108873121233 0.0238040741588464 0.00158682891910875 0.00156793171620953 2256759 900592 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.0239848454542893 0.0238397226190141 0.0239719233997101 0.0238040741588464 0.00164048759884276 0.00165548767298203 2268175 901468 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.0240354127742546 0.0239909641202744 0.0240177004654002 0.02392614633402 0.00175847165917178 0.00189304701688857 2272957 907187 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.0241208125392149 0.0241528631359617 0.0240634775310903 0.0241550316624704 0.0016756915321091 0.00152203683362313 2281033 913309 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.0239990787484493 0.0240060644694997 0.0239719233997101 0.0238956282902266 0.00160679700070864 0.00177963445728073 2269521 907758 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.0239418494854521 0.0239799628150595 0.0239108873121233 0.02392614633402 0.00152463900536362 0.00149316078331032 2264109 906771 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.0238654486308412 0.0241157866217517 0.0237888151369497 0.0241855497062638 0.00135666937639512 0.00142442386990844 2256884 911907 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.0237523859405297 0.0240786043257608 0.0236820019836728 0.0239414053559167 0.00216680793456087 0.0022916321560492 2246192 910501 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.0238133268575017 0.0238472860163494 0.0237125200274662 0.0238193331807431 0.00195153682786703 0.00165508810235253 2251955 901754 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.0237325375801 0.023600682239596 0.0236820019836728 0.0234836346990158 0.00169249739436076 0.00179992500982996 2244315 892429 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.0239134463442085 0.0241363082872488 0.02392614633402 0.0240177004654002 0.001702017885204 0.00181597274502998 2261423 912683 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.0239202457559061 0.0239895625116773 0.02392614633402 0.0240634775310903 0.00174367008397213 0.00167719415185332 2262066 907134 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.0240389975340765 0.0242626910699946 0.0239719233997101 0.0241702906843671 0.00187776982869845 0.00189317370367311 2273296 917462 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.0240615318207445 0.0239955127368537 0.0240482185091936 0.0240024414435035 0.00166538257940638 0.00148294256741096 2275427 907359 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.0240629276564273 0.0241411213582804 0.0240177004654002 0.0241702906843671 0.00159934685220633 0.00169497599475067 2275559 912865 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.0240408163502693 0.0239533586971599 0.0239719233997101 0.0238956282902266 0.00156112295613918 0.0016424922539189 2273468 905765 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.0239578487232413 0.0240937311204314 0.0239871824216068 0.0241397726405737 0.00159993428133273 0.00154965335634492 2265622 911073 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.0237781348790733 0.0237240237961405 0.0236972610055695 0.0236362249179828 0.00244107750107307 0.00247066154677782 2248627 897093 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.0239199073714981 0.0238585253305714 0.0238803692683299 0.0238040741588464 0.00202854275686884 0.00187374326722693 2262034 902179 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.0237838662649832 0.023932175895532 0.0237582970931563 0.0238956282902266 0.00173860354703027 0.00172118065371106 2249169 904964 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.0239893396222076 0.0241031192534874 0.0240177004654002 0.0240634775310903 0.00188897005672815 0.00184852000652729 2268600 911428 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.0241750703641296 0.0240568926152284 0.0240329594872969 0.0239566643778134 0.00215864536988956 0.00225090879436278 2286164 909680 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.0243153941483079 0.0243080714540063 0.024078736552987 0.024277103837644 0.00272134819174039 0.00227229571319314 2299434 919178 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.0241131354429592 0.0241895694139385 0.0240482185091936 0.0240482185091936 0.00199074920168291 0.00193802810337428 2280307 914697 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.02412952593772 0.0243414984967748 0.0241550316624704 0.0241855497062638 0.00195966142947259 0.00209794267517166 2281857 920442 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.0239020152959269 0.0240341230868869 0.0238803692683299 0.02392614633402 0.00174640222468373 0.00176371414098191 2260342 908819 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.0238971827436007 0.0240661749665035 0.0239108873121233 0.0240939955748837 0.00194466957475743 0.00207380679635224 2259885 910031 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.0238639893480818 0.0239253529706631 0.0238345922026398 0.0239108873121233 0.00205650166014126 0.00216763487202481 2256746 904706 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.023702844348301 0.0238439803356958 0.0237277790493629 0.0238193331807431 0.00162658463912895 0.0014917246087415 2241507 901629 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.023891186994872 0.0238337459483925 0.0238803692683299 0.0238345922026398 0.00149497825365251 0.00153288818808628 2259318 901242 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.0239680637025567 0.0242528004734793 0.0239566643778134 0.0241397726405737 0.00154139287413775 0.00156266197346387 2266588 917088 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.0241274533332212 0.0240567603880023 0.0240634775310903 0.0239414053559167 0.00220495009444926 0.00232807435795754 2281661 909675 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.0242056412804868 0.0242778972010009 0.0241550316624704 0.0241092545967803 0.0023312548916171 0.00213382684804852 2289055 918037 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.0242882916721324 0.024167381685392 0.0242923628595407 0.0240939955748837 0.0019395506632921 0.00186455750666713 2296871 913858 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.0241293884690543 0.0242858837254598 0.0240177004654002 0.0242618448157473 0.00190913494982056 0.00212614515911592 2281844 918339 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.0239718388036081 0.0240608065411222 0.0239719233997101 0.0240634775310903 0.00172410125442918 0.00170431339277509 2266945 909828 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.024019223195236 0.0238305460495199 0.0240177004654002 0.0238193331807431 0.00166530541024908 0.00155181117946883 2271426 901121 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.0238706830146519 0.0238318154308908 0.02392614633402 0.0236514839398795 0.00207358263252941 0.00201767525869627 2257379 901169 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.0238131682398105 0.0239990035356238 0.0238040741588464 0.02392614633402 0.00160776565101378 0.00151329576264629 2251940 907491 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.0239562519718162 0.0237296566759741 0.0239414053559167 0.0237125200274662 0.00146056863608118 0.00149654139648978 2265471 897306 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.0240580739550756 0.0240581091057089 0.024078736552987 0.0240177004654002 0.00150569704238193 0.00148904452270281 2275100 909726 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.0240937629356032 0.0241463840018808 0.0240482185091936 0.0242160677500572 0.0018362872172675 0.00193230195895247 2278475 913064 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.0241792155731272 0.02432356848491 0.0240939955748837 0.0242618448157473 0.00230646023988809 0.00244231644613343 2286556 919764 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.0242422396691108 0.0241464897836617 0.0242618448157473 0.0240482185091936 0.00183258464707108 0.00177281706125341 2292516 913068 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.0241006046453517 0.0420635698256941 0.0241092545967803 0.0247959105821317 0.00162189732049614 0.0659765117398421 2279122 1590579 1443 577 0 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.0239732346392909 0.0239931590922284 0.0238956282902266 0.0240024414435035 0.00150579023486618 0.00137786149634064 2267077 907270 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.0237654031657236 0.0238925341731349 0.0237277790493629 0.0239108873121233 0.00164706701043786 0.00165464242357771 2247423 903465 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.0248074896735918 0.144686754522125 0.0248264286259251 0.161318379491875 0.00203055425381197 0.0439770089298206 2345970 8164042 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.0241739494657783 0.024115813067197 0.0240939955748837 0.0240634775310903 0.00164075107572273 0.00150697353319785 2286058 911908 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.0238417194242326 0.0240171715564956 0.0238040741588464 0.024124513618677 0.00146586511822344 0.00146978074716191 2254640 908178 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.023931116355012 0.0239043023962615 0.0239414053559167 0.0238803692683299 0.00162601196323854 0.001507054685761 2263094 903910 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.024078313572477 0.0241963658933622 0.0240177004654002 0.0241550316624704 0.00179739458746561 0.00184062649834433 2277014 914954 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.0242171463503576 0.0241069538430455 0.0242008087281605 0.0238956282902266 0.00194472071771704 0.0020280650189037 2290143 911573 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.0241910378783805 0.0241420469488634 0.0242160677500572 0.0241855497062638 0.00168944323612546 0.00165814226858485 2287674 912900 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.0238392661372748 0.0240601454049915 0.0238651102464332 0.0240329594872969 0.00158976782336392 0.00159800329028521 2254408 909803 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.0239431290014948 0.0238473124617946 0.0239719233997101 0.0238956282902266 0.00146758885426144 0.00134001910055957 2264230 901755 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.0238157695699467 0.0236546838387521 0.0238498512245365 0.0235904478522927 0.00143184749792657 0.00150123544088439 2252186 894471 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.024814807236414 0.159582864383253 0.0248264286259251 0.169039444571603 0.00210824471657828 0.0334225175827124 2346662 7833239 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.0239873304647853 0.0236326547828769 0.0238956282902266 0.0236362249179828 0.00164511558520962 0.00141830518366997 2268410 893638 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.0238646872659232 0.0238920581551208 0.0238345922026398 0.0238040741588464 0.00147145270310712 0.0015005390597426 2256812 903447 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.023877249787069 0.0237687165985763 0.0238956282902266 0.0237125200274662 0.0016069683490861 0.00151324886347828 2258000 898783 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.0239628187442333 0.0239804388330736 0.0239719233997101 0.0240024414435035 0.00173288202016716 0.0016569697077351 2266092 906789 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.0240605378165461 0.0242027656911074 0.0240329594872969 0.0241092545967803 0.00178376714087401 0.00183677393432896 2275333 915196 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.0240268156953897 0.024004583524567 0.0240177004654002 0.0239871824216068 0.00152202599384337 0.0014967149508767 2272144 907702 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.0238952053097166 0.0240233862361242 0.0238803692683299 0.0240482185091936 0.00146349622138916 0.00137026219940354 2259698 908413 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.0239059807382078 0.0238026461048041 0.0238956282902266 0.0237430380712596 0.00150025789505036 0.00151062633158361 2260717 900066 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.0241471219269342 0.150823557413222 0.0241550316624704 0.16932936598764 0.00150966568447985 0.0435612758077652 2283521 8510315 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv new file mode 100644 index 0000000..6704738 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.318889352581273 0.336755288620146 0.318654154268711 0.328892957961395 0.00667493317250241 0.0231260893470757 30156411 19001631 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.319382579579421 0.318956901725684 0.318776226443885 0.318776226443885 0.00908629172044082 0.00526787388771699 30203054 12060939 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.31804024035656 0.318296188722102 0.318043793392844 0.318272678721294 0.00483206244392773 0.00468361343849252 30076113 12035955 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.318922503678741 0.318594890025955 0.318776226443885 0.318593118181125 0.00477677194022908 0.00451035808211923 30159546 12047250 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.318967360761822 0.319033276171504 0.318883039597162 0.319157701991302 0.00604668446084187 0.00684882029079053 30163788 12063827 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.319052030885402 0.31955541504209 0.318989852750439 0.319356069275959 0.00696393409451894 0.00677473228701328 30171795 12083571 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.319612469486583 0.319414540155359 0.319661249713893 0.319142442969406 0.00657996095295198 0.00646788358196493 30224794 12078244 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.319148174355316 0.319463146883689 0.319081406881819 0.319356069275959 0.00621398329893628 0.00661477554753042 30180887 12080082 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.319027920996335 0.319602461489151 0.319096665903716 0.319432364385443 0.0051172399336209 0.00485199490694665 30169515 12085350 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.318947438379803 0.343652986802896 0.318867780575265 0.332356755931945 0.00527010198257971 0.0284015579713844 30161904 19390838 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.318855736205244 0.318910569305644 0.318730449378195 0.318669413290608 0.00534912403758769 0.0048899962707692 30153232 12059187 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.319006645076684 0.319233045064758 0.318989852750439 0.319157701991302 0.00458977747083574 0.0042897213860507 30167503 12071381 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.319026641480292 0.318532822566004 0.319020370794232 0.318577859159228 0.00438540092281946 0.00403441647076974 30169394 12044903 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.318893349747092 0.319084183653568 0.318928816662852 0.319081406881819 0.00419316927947142 0.00404096957364992 30156789 12065752 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.319483111472125 0.319702636835676 0.319310292210269 0.319432364385443 0.00467613037460116 0.00487381979372629 30212561 12089138 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.319490524205562 0.319808947525493 0.319600213626307 0.319508659494926 0.00625713728862734 0.00609925209135489 30213262 12093158 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.319831774306483 0.319993801187639 0.31981383993286 0.320088502327001 0.00592901686440386 0.0057798314457454 30245533 12100148 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.320044861312886 0.319767137276587 0.319981689173724 0.31953917753872 0.005685411787374 0.00585344066471886 30265684 12091577 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.31982307148249 0.319789113441572 0.319752803845273 0.3196307316701 0.00424059213755798 0.00418117891950307 30244710 12092408 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.319632677380446 0.319936969925843 0.319508659494926 0.320103761348898 0.0044297885936361 0.00447601621408354 30226705 12097999 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.3189319255696 0.319252006448986 0.319005111772335 0.319127183947509 0.00530513591458377 0.00544495696622577 30160437 12072098 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.319241642473503 0.318801931416647 0.319386587319753 0.318776226443885 0.00470325785729383 0.00409485612266087 30189726 12055079 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.319307363070238 0.318977026709503 0.319432364385443 0.319066147859922 0.00432798556117491 0.00463457577234583 30195941 12061700 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.319029686939964 0.318835014668627 0.319279774166476 0.318852521553368 0.00467305636010826 0.00429009438918101 30169682 12056330 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.3195542567939 0.319640331366718 0.31958495460441 0.319691767757687 0.00439728305991137 0.00400247533450616 30219289 12086782 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.320308378170589 0.320316805855656 0.320469977874418 0.320317387655451 0.00520602446897282 0.00494793094075068 30290604 12112362 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.320204948861392 0.320412908603616 0.320134279392691 0.320820935378042 0.00532224763910631 0.00570507416584736 30280823 12115996 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.320607922393228 0.320211949665326 0.320637827115282 0.320149538414588 0.00560318135766017 0.00608096108576997 30318931 12108397 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.319952112261565 0.319618857665192 0.319920653086137 0.31972228580148 0.00452214899892942 0.00443295429512247 30256913 12085970 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.319985591168928 0.320218957708312 0.319981689173724 0.320317387655451 0.00430213790819439 0.00399948288180589 30260079 12108662 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.318727403918523 0.31885672637916 0.318760967421988 0.318822003509575 0.00651468105796593 0.0063559583279225 30141096 12057151 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.319515469481137 0.319082755599526 0.319554436560616 0.319249256122683 0.00525924558315644 0.00472492294249408 30215621 12065698 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.319612205123764 0.319560413231238 0.319462882429236 0.319554436560616 0.00551803254133551 0.00584371279267644 30224769 12083760 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.320126411955206 0.31963189526969 0.320012207217517 0.31981383993286 0.0044805059140629 0.00463863194301496 30273396 12086463 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.320069510502104 0.319683305215214 0.31985961699855 0.3196307316701 0.00406190673515601 0.00402131738379988 30268015 12088407 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.320702997837354 0.320362292021449 0.320637827115282 0.320515754940108 0.00476012613466383 0.00429237667839886 30327922 12114082 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.320512698905924 0.320820935378042 0.320378423743038 0.321095597772183 0.00550090171610964 0.00558217354210412 30309926 12131425 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.320408920637806 0.320691061796526 0.320210574502174 0.320729381246662 0.00515794302069248 0.00512845646549385 30300112 12126514 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.320299178344498 0.32036533324765 0.320454718852522 0.320393682764935 0.0047555871534267 0.00445066768635458 30289734 12114197 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.320318318212573 0.319965187215902 0.320271610589761 0.31990539406424 0.00419291103455602 0.00382354507905351 30291544 12099066 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.318674637099906 0.318826049662695 0.318547341115434 0.318959334706645 0.00676451235778429 0.00681312538560368 30136106 12055991 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.319975534807304 0.320259525021292 0.320042725261311 0.320561532005798 0.00591189802947234 0.0059416490369673 30259128 12110196 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.32005310943283 0.319989411243731 0.320027466239414 0.320103761348898 0.00511601503769708 0.00502850274799253 30266464 12099982 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.320727847942314 0.320010646936249 0.320759899290456 0.320256351567864 0.00508313188019712 0.00520191683314238 30330272 12100785 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.320499269274733 0.32061905084917 0.320653086137179 0.320454718852522 0.00515478409222053 0.00483147207995255 30308656 12123791 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.320458070973063 0.320628782773014 0.320469977874418 0.320485236896315 0.00488126251404573 0.00489060674674903 30304760 12124159 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.320850766078507 0.32079057600692 0.320805676356146 0.320531013962005 0.00535735897968744 0.00513434428675801 30341896 12130277 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.320896331653942 0.320874936977198 0.320653086137179 0.320943007553216 0.00544844102362108 0.00567934544871043 30346205 12133467 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.320503900911317 0.319612695876454 0.320256351567864 0.319127183947509 0.00475300467478467 0.00452063903429657 30309094 12085737 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.320251540164564 0.319899734738962 0.320225833524071 0.319783321889067 0.00393189723929395 0.00374847816572705 30285229 12096591 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.31939146217013 0.318829461125129 0.319111924925612 0.318898298619059 0.00617995432173451 0.00601927748562922 30203894 12056120 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.31994732200729 0.320124335905285 0.319874876020447 0.320149538414588 0.00520596934904009 0.00483238975329792 30256460 12105084 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.320642596220532 0.321119927581793 0.320592050049592 0.321141374837873 0.00460035876143785 0.00437350754875332 30322210 12142731 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.32082477392617 0.321037470683571 0.320698863202869 0.320759899290456 0.00467014441249059 0.00454995340917176 30339438 12139613 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.32046686896767 0.320775290539578 0.320454718852522 0.320408941786831 0.00609649560816743 0.00665924243310108 30305592 12129699 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.322652028580159 0.319776472518753 0.320683604180972 0.31990539406424 0.0157120779288756 0.00600202231694984 30512236 12091930 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.320834206391542 0.320989392864146 0.320668345159075 0.321065079728389 0.00563502676449488 0.00556224967416868 30340330 12137795 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.320758281390005 0.321486805243444 0.320668345159075 0.321355001144427 0.00543466519318587 0.00567330831783562 30333150 12156604 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.320908376023963 0.320457098942592 0.320790417334249 0.320119020370794 0.00512951790700789 0.00500773840573957 30347344 12117667 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.319912373242655 0.319848404129774 0.319707026779583 0.319707026779583 0.00482298748075619 0.00474646666302239 30253155 12094650 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.319096940841047 0.319015002368851 0.319005111772335 0.318837262531472 0.00532279886684027 0.00535319107842354 30176042 12063136 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.319644520834725 0.319734001133716 0.319523918516823 0.31967650873579 0.00441166630766214 0.00406820803314094 30227825 12090324 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.319820205789535 0.320260926629889 0.319645990691997 0.320256351567864 0.00414355528971442 0.00365167425813549 30244439 12110249 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.320498137801869 0.32078941240733 0.320393682764935 0.321004043640803 0.00417969859078393 0.00410851875082205 30308549 12130233 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.320253369555269 0.319853904782381 0.320256351567864 0.319996948195621 0.00587533361507742 0.00528344114643754 30285402 12094858 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.319936948410283 0.320656709163175 0.31990539406424 0.320668345159075 0.00662588921308459 0.00637414358353965 30255479 12125215 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.320806490593627 0.320771535286356 0.320851453421836 0.320485236896315 0.00591831071564673 0.00567747067155556 30337709 12129557 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.321590633012011 0.321688107972522 0.321553368429084 0.32156862745098 0.00597462991991328 0.00686319814818093 30411863 12164216 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.321030416475598 0.320945387643286 0.320836194399939 0.320759899290456 0.00553926012461525 0.00561451104078942 30358885 12136131 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.320276168204756 0.32041454822122 0.320256351567864 0.320469977874418 0.00530638881422184 0.00507857509477897 30287558 12116058 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.318878778068524 0.318535149765184 0.318699931334401 0.318211642633707 0.00555334360817723 0.00565380052393371 30155411 12044991 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.319014575961246 0.318568021453603 0.319035629816129 0.318577859159228 0.00434002140889983 0.0039333958393346 30168253 12046234 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.319372311727542 0.31930164454968 0.319523918516823 0.319432364385443 0.00431312755181905 0.00408192584324533 30202083 12073975 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.320096898490123 0.319952387620411 0.319935912108034 0.319798580910964 0.00455477004068478 0.00435783347985042 30270605 12098582 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.32049364363395 0.320990609354627 0.320378423743038 0.320759899290456 0.00535927721192897 0.00604107279943043 30308124 12137841 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.320126433104231 0.320794199032917 0.320149538414588 0.321080338750286 0.00686267925561397 0.00745287920802331 30273398 12130414 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.320212499063495 0.320874302286513 0.320180056458381 0.320622568093385 0.00603532597337118 0.00553805626279733 30281537 12133443 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.320878429003858 0.351828167017267 0.320714122224765 0.323460746166171 0.0054056112815424 0.11670810666347 30344512 13303923 1443 577 1 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.321233870100888 0.321157189214119 0.32115663385977 0.320775158312352 0.00503339187688036 0.00474320614287011 30378125 12144140 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.320780138907857 0.320479894916379 0.320836194399939 0.320454718852522 0.00539738012607936 0.00502851635231212 30335217 12118529 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.321330468274849 0.334630917312672 0.318669413290608 0.328938735027085 0.0194767626616697 0.0178075394207866 30387260 18881762 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.326741731960317 0.322543274334867 0.320271610589761 0.320973525597009 0.0256767801405875 0.0087074129410373 30898987 12196553 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.319116091283635 0.318840171530447 0.319172961013199 0.318959334706645 0.00487340102050033 0.00491432525905646 30177853 12056525 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.319739617427876 0.320123066523914 0.319523918516823 0.320119020370794 0.00529361245521331 0.00502224378292935 30236818 12105036 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.320148227175007 0.320348937071609 0.320073243305104 0.320302128633555 0.00559052046630946 0.00563489295720225 30275459 12113577 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.320504651701722 0.321104430550889 0.320546272983902 0.32115663385977 0.0054743839009204 0.00538469465514691 30309165 12142145 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.320546516197695 0.320621351602905 0.320607309071489 0.320592050049592 0.00501798795903887 0.00498335979241201 30313124 12123878 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.320849412540875 0.32051070386007 0.320805676356146 0.319981689173724 0.00484366546951633 0.00469019296005834 30341768 12119694 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.320722994240962 0.320541274794754 0.320744640268559 0.320531013962005 0.00433260957342821 0.00392170065137956 30329813 12120850 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.320222682319272 0.320728958119538 0.320180056458381 0.320805676356146 0.00482908048180874 0.00431504079043629 30282500 12127947 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.31765440810989 0.346016453055639 0.317601281757839 0.33676661326009 0.00622711198644017 0.0278444139447474 30039626 16984465 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.318657157430332 0.318446716196341 0.318593118181125 0.318516823071641 0.00484124152872334 0.00427947917216527 30134453 12041647 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.318892641254738 0.318893988011486 0.318898298619059 0.318715190356298 0.00517809587248829 0.00564520977139497 30156722 12058560 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.319072936697107 0.319217918270087 0.319218738078889 0.319188220035096 0.00519799957167405 0.00513459065115158 30173772 12070809 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.319907857925711 0.320018501233482 0.319981689173724 0.320103761348898 0.00541676008109421 0.00522841725126958 30252728 12101082 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.320028269902383 0.320399104081207 0.320164797436484 0.320271610589761 0.00463691154783506 0.00479090283001056 30264115 12115474 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.320214265007124 0.320109949583081 0.320119020370794 0.320027466239414 0.00426781932657718 0.00387885464456801 30281704 12104540 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.320038622350364 0.319711892741505 0.320027466239414 0.319554436560616 0.00386938280608562 0.00351594108123066 30265094 12089488 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.320371095605703 0.3204614888865 0.320393682764935 0.320439459830625 0.00407930030442244 0.00403186678564126 30296535 12117833 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.320096993660738 0.338201173987674 0.320103761348898 0.328633554589151 0.00454491032062182 0.0220516463760601 30270614 19083216 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv new file mode 100644 index 0000000..94b808b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.0334396230482291 0.0354089413437704 0.0333562218661784 0.035233081559472 0.00253183866594534 0.00350766799618349 3162285 1997972 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.0336475285433857 0.0332122264169106 0.0336003662165255 0.033173113603418 0.0022018937890133 0.00220734217751705 3181946 1255877 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.0333076425546098 0.0332887330899559 0.0332646677347982 0.0332341496910048 0.00188968733184484 0.00187629090296956 3149804 1258770 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.0332761622301563 0.0332918536524928 0.0332188906691081 0.0332646677347982 0.00179192626951218 0.00175361265791316 3146827 1258888 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.0333897536461052 0.033400200641593 0.0333409628442817 0.0333867399099718 0.00221958794509711 0.00241596474435984 3157569 1262985 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.0332974170007816 0.0335734183078379 0.0332036316472114 0.0335851071946288 0.00269013339511014 0.00265243789915896 3148837 1269535 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.0333738072808798 0.0333600300102912 0.0332341496910048 0.0332646677347982 0.00258450533352113 0.00256269495630757 3156061 1261466 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.033453020955882 0.0334430422628627 0.0334782940413519 0.0334477759975586 0.00239980230150602 0.00256134477446428 3163552 1264605 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0334410717564757 0.0331918898695301 0.0333562218661784 0.0332646677347982 0.00200604612517953 0.0018484498900875 3162422 1255108 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.0332510371878648 0.0359192058715866 0.0332188906691081 0.0353398947127489 0.00201053702868419 0.00353399195037663 3144451 2026764 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.0333728344257069 0.0334250593601075 0.0333104448004883 0.0334172579537652 0.00212546338433104 0.00215243221625286 3155969 1263925 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.0334640818962174 0.0333066895472659 0.0334630350194553 0.033325703822385 0.00181893940108134 0.0017166250132595 3164598 1259449 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.033347519042186 0.0335653524470433 0.033325703822385 0.0336461432822156 0.00162122272778888 0.00139114615122423 3153575 1269230 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.0333207232268802 0.0332884421900584 0.0332951857785916 0.0332799267566949 0.00159427362336072 0.0014923725803528 3151041 1258759 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.0334484104683235 0.0335083360671312 0.0334477759975586 0.033524071107042 0.00178698144590267 0.00175709026077483 3163116 1267074 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.0334102047537616 0.0332567076557845 0.0334019989318685 0.032974746318761 0.00223868564596585 0.0023802555174874 3159503 1257559 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.0336033482291207 0.0336492109538621 0.0335545891508354 0.0336919203479057 0.00237542210464161 0.00216143707218071 3177768 1272401 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.0334257915855535 0.0332165105790376 0.0334325169756619 0.0332036316472114 0.00217998114827116 0.00223767871844359 3160977 1256039 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.0334772048665388 0.0334061244213241 0.0334477759975586 0.0333409628442817 0.00180748394137915 0.00151667601911122 3165839 1263209 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.0333935710452076 0.0333240377593356 0.0333104448004883 0.0332799267566949 0.00175319628878445 0.00176180923670596 3157930 1260105 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.0334031938518091 0.0334706777531262 0.0333562218661784 0.0334325169756619 0.00207112663110323 0.00197575721394632 3158840 1265650 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.0334760310956237 0.0335615443029305 0.0334630350194553 0.0335393301289387 0.00190377278939858 0.00183353678669264 3165728 1269086 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.0334909094350614 0.0334951133445171 0.0335088120851453 0.033524071107042 0.00165014935461031 0.00169617504965963 3167135 1266574 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.0332978505558043 0.0331816025913363 0.0332799267566949 0.033173113603418 0.00164675235931867 0.0015963774732615 3148878 1254719 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.0333885058536008 0.033541101973769 0.0333409628442817 0.033524071107042 0.00162591296159614 0.001624463309911 3157451 1268313 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.0336071550537103 0.033313195126792 0.0336003662165255 0.0332494087129015 0.00199316461135388 0.00193727351072393 3178128 1259695 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.0336155617913457 0.0335275883512574 0.0335393301289387 0.0334935530632486 0.00209292570538057 0.00195936934159612 3178923 1267802 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.0335727561637381 0.0333840953654489 0.0335698481727321 0.0332951857785916 0.00216669638467171 0.00222440172787504 3174875 1262376 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.0334473107189976 0.0334480933429013 0.0334172579537652 0.0333867399099718 0.00174769975882791 0.00174079529957734 3163012 1264796 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.0333894998577992 0.0335440903090798 0.0333562218661784 0.0335545891508354 0.00163731681598419 0.00158168344249134 3157545 1268426 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.0334173214008417 0.0335896029203176 0.0333714808880751 0.0335545891508354 0.00257320138391188 0.00241904525980785 3160176 1270147 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.033271668062238 0.0332702477237414 0.0332341496910048 0.033325703822385 0.00217633557423981 0.0016176107252111 3146402 1258071 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.033546478499557 0.0335028883054142 0.0335698481727321 0.0333409628442817 0.00205207530626483 0.00206642561046005 3172390 1266868 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.0335165843520158 0.0334096152200942 0.0334782940413519 0.033524071107042 0.00183243877475004 0.00169870108132841 3169563 1263341 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.0335497565985092 0.033398931260222 0.0335393301289387 0.0333714808880751 0.00157673402227 0.00153466073304826 3172700 1262937 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.0335844198513001 0.0336438425284808 0.0335393301289387 0.0336308842603189 0.00183794505529684 0.00178549845430661 3175978 1272198 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.0336656003856736 0.0335506223340512 0.0336614023041123 0.0334630350194553 0.00197713302764027 0.00205482151276053 3183655 1268673 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.0335431475280411 0.0332768855304936 0.0334477759975586 0.0331425955596246 0.00193224047641445 0.00181042638948198 3172075 1258322 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.0333318476142921 0.0331944021868268 0.033325703822385 0.0332646677347982 0.00176106426868184 0.00177686929957703 3152093 1255203 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.0334687135328014 0.0336066337870446 0.0334477759975586 0.0336156252384222 0.00161900350817266 0.00161065923829387 3165036 1270791 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.0335169438854493 0.0332966667235244 0.0334325169756619 0.0332494087129015 0.00262748373158063 0.00254088795875582 3169597 1259070 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.033458498553486 0.0335755603889014 0.0334477759975586 0.0334935530632486 0.00220482199098364 0.00214585324404882 3164070 1269616 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.0333879454044251 0.0334332838935735 0.0332951857785916 0.0334019989318685 0.00198689557685011 0.001891473628803 3157398 1264236 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.0334884984461547 0.0335915863287097 0.0334477759975586 0.0336461432822156 0.00196331352592677 0.00191196315149977 3166907 1270222 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.0334006982668003 0.0334784791594685 0.0333409628442817 0.0334172579537652 0.00193264376875134 0.00191578493022693 3158604 1265945 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.033583288378436 0.0334975992163686 0.0335698481727321 0.0336156252384222 0.00178401258539488 0.00193989413341158 3175871 1266668 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.0335967497331654 0.0334905382824926 0.0335545891508354 0.0334477759975586 0.00206488792153444 0.00198541193787065 3177144 1266401 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.0335863867106714 0.0336433136195762 0.0335851071946288 0.0335851071946288 0.00202753819954174 0.00207763184368957 3176164 1272178 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.0333963204185223 0.0335473959897334 0.033325703822385 0.0335393301289387 0.00180277424924157 0.00167246015499096 3158190 1268551 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.0336301757679647 0.0336246960261355 0.0336308842603189 0.0335088120851453 0.00152139162071311 0.00158741105930623 3180305 1271474 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.0334879274224662 0.033390362935968 0.0334782940413519 0.0333867399099718 0.00237216576617888 0.0023695911058604 3166853 1262613 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.0335113922662561 0.0335212414444026 0.0334782940413519 0.0335088120851453 0.0019958732416363 0.00203526754098963 3169072 1267562 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.0334769087801818 0.0335009048970221 0.0334477759975586 0.0334477759975586 0.00170856877289641 0.00171672080331163 3165811 1266793 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.0334663448419457 0.0334124713281789 0.0334325169756619 0.0334325169756619 0.00178641807462785 0.00169368438903045 3164812 1263449 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.033642209563473 0.0333738345327004 0.0336308842603189 0.0333104448004883 0.00234517603779148 0.00236507999928502 3181443 1261988 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.0336478986513319 0.0335321898587271 0.0334935530632486 0.0335545891508354 0.00275773545526104 0.00238874006995975 3181981 1267976 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.0335436656791658 0.0333168181527883 0.0336003662165255 0.0333104448004883 0.00215609877758437 0.002054760764226 3172124 1259832 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.033661455176676 0.0335968225268649 0.0335545891508354 0.0335393301289387 0.00210195052452732 0.00219174675579318 3183263 1270420 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.0335793440851807 0.0335942044277873 0.0335545891508354 0.0335698481727321 0.00188806079324185 0.00189100030872251 3175498 1270321 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.0334153016689066 0.0335305237956777 0.0334325169756619 0.0335393301289387 0.00177617713002355 0.00177262068465005 3159985 1267913 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.0335550332803709 0.0334436769535482 0.0335698481727321 0.0335393301289387 0.00202492540855965 0.00209640721970004 3173199 1264629 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.0334660910536397 0.0332316373737081 0.0334477759975586 0.0332036316472114 0.00169872663002895 0.00156394900450013 3164788 1256611 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.0336033270800952 0.0335570221317964 0.0335545891508354 0.0335545891508354 0.00156144619153407 0.00149852372004002 3177766 1268915 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.0335943281697459 0.0334770511054262 0.0335851071946288 0.0334019989318685 0.00158951134203254 0.00151658520216206 3176915 1265891 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.0335394781721172 0.0335706679815342 0.0335393301289387 0.0336461432822156 0.00217391260069148 0.00183937009373426 3171728 1269431 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.0335239336383763 0.0335076484855553 0.0334477759975586 0.0335393301289387 0.00251239421793445 0.0024734313337949 3170258 1267048 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.0335919806279156 0.0333372075910593 0.0335698481727321 0.0333104448004883 0.00223968816893539 0.00213166615647188 3176693 1260603 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.0337191391437214 0.0338071167073199 0.0337376974135958 0.0337834744792859 0.00224543128392254 0.00237247691731622 3188718 1278372 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.0336163337307764 0.0334071029027975 0.0335698481727321 0.0334630350194553 0.00215933158699022 0.00207715314455004 3178996 1263246 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.0335902252587993 0.0334592004298972 0.0335851071946288 0.0334172579537652 0.00202993861298182 0.00196579619520616 3176527 1265216 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.0333906207561506 0.0335130698018271 0.0333104448004883 0.0334782940413519 0.00205490282952924 0.00213355390799223 3157651 1267253 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.0333500674997585 0.033496144716881 0.0333562218661784 0.0335088120851453 0.00172242525991939 0.00156898777705818 3153816 1266613 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.0334851780491515 0.0334482784610179 0.0335393301289387 0.0334019989318685 0.00161721584801227 0.0017374864021662 3166593 1264803 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.0335057137529099 0.0335233041891304 0.0334477759975586 0.0334782940413519 0.00178078046601141 0.00156216353604015 3168535 1267640 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.0335807504953763 0.0336914443298916 0.0336156252384222 0.0336461432822156 0.0020637348101805 0.00222261871696511 3175631 1273998 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.0334691682368496 0.0337761755364029 0.0334325169756619 0.0336614023041123 0.00254849105424939 0.00273635050517717 3165079 1277202 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.033627468692701 0.0332334356639836 0.0337071793698024 0.0332036316472114 0.00228254241083199 0.0022096539028615 3180049 1256679 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.0336874367545002 0.0372351604359214 0.0336614023041123 0.0340581368734264 0.00208908392103428 0.0150241296134048 3185720 1407999 1443 577 0 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.0335761823058687 0.0333335052287273 0.0335088120851453 0.0332188906691081 0.00181232777899678 0.00196012686716077 3175199 1260463 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.0336426219694702 0.0335500140888109 0.0336003662165255 0.0335088120851453 0.00190941377334186 0.00197469353201063 3181482 1268650 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.0336940035269172 0.0351723644758273 0.0334630350194553 0.0350194552529183 0.00286110104605682 0.0026216891448557 3186341 1984623 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.0342061166048348 0.0337857752330207 0.0336308842603189 0.0337834744792859 0.00320536232885411 0.00172912589203953 3234770 1277565 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.0333521401042573 0.0335039990141138 0.0333409628442817 0.0334325169756619 0.00175245689930168 0.00188208063088357 3154012 1266910 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.0335719102027182 0.0334887135467719 0.0335393301289387 0.0335088120851453 0.0019358020473715 0.0020502800467047 3174795 1266332 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.0336087623796482 0.033511086393435 0.0336156252384222 0.0334019989318685 0.00203315278591157 0.00203120371848201 3178280 1267178 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.0335553505157534 0.0336438425284808 0.033524071107042 0.0336308842603189 0.00207915489586958 0.00196395824748461 3173229 1272198 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.0334617132053616 0.0335443547635321 0.0333867399099718 0.0333867399099718 0.00190945281542793 0.00182816308484916 3164374 1268436 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.0336017832012339 0.033628689288365 0.0335698481727321 0.0335545891508354 0.00184987254448141 0.00180265424904289 3177620 1271625 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.0336335596120444 0.0335687374640325 0.0335851071946288 0.0335545891508354 0.0016664651573668 0.00163079134652026 3180625 1269358 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.0335080718692529 0.0333203353970037 0.0335698481727321 0.0333409628442817 0.00181948702703962 0.0017806292827812 3168758 1259965 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.0332668355099117 0.0361838062254976 0.0331120775158312 0.0357824063477531 0.00247771020061855 0.0039373927878716 3145945 1776108 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.0333502366919625 0.0331950368775122 0.0333104448004883 0.0332188906691081 0.00190944292086021 0.00168724585826089 3153832 1255227 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.0333099477983891 0.0334437827353291 0.0332188906691081 0.0334477759975586 0.00204719690815513 0.00204806016929243 3150022 1264633 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.0333040683693007 0.0335815635049682 0.0333104448004883 0.0335698481727321 0.00189620446653587 0.00192496348222569 3149466 1269843 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.0334389885774642 0.0334970967529092 0.0334630350194553 0.0334172579537652 0.00208829312528207 0.00179693239009585 3162225 1266649 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.0333925241684454 0.0334951133445171 0.0333714808880751 0.0333867399099718 0.00182771364541378 0.00177126158381105 3157831 1266574 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.033544458767622 0.0335500140888109 0.0335393301289387 0.0334477759975586 0.00158114364214785 0.00160484395569318 3172199 1268650 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.0334274094860041 0.0334771304417619 0.0334019989318685 0.0333714808880751 0.00156587217127668 0.00149455231924036 3161130 1265894 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.0334607932227525 0.0335801618963711 0.0334172579537652 0.0335851071946288 0.00155356118559786 0.00147074480793936 3164287 1269790 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.0334340820035487 0.0352619336937901 0.0334172579537652 0.0347447928587778 0.00171736414456526 0.00293392175380735 3161761 1989677 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv new file mode 100644 index 0000000..3d0dc29 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.236400461341667 0.951545870950323 0.236148622873274 1 0.00674094514056463 0.140447520676048 20124763 53691580 1299 861 80 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.232144051744882 0.23205177383485 0.231952391851682 0.232135500114443 0.0048611864145578 0.00415101462722028 19762415 8774735 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.231144368495864 0.231153501396782 0.231036850537881 0.231067368581674 0.00399000500017033 0.00357399409556236 19677312 8740768 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.231405804055012 0.231041584272576 0.231174181734951 0.230960555428397 0.00413266315166338 0.00342693800338056 19699568 8736536 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.231389064943231 0.231616931378962 0.231158922713054 0.231296253910124 0.00482405631594465 0.00455273730147691 19698143 8758292 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.23171630576848 0.231149032116539 0.231494621194781 0.231036850537881 0.00620526812910525 0.00634921842380081 19726001 8740599 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.231853860153707 0.231546507158319 0.231738765545129 0.231738765545129 0.0053625872495381 0.00515297546085228 19737711 8755629 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.231855563431748 0.231711764745551 0.231891355764096 0.231540398260472 0.00456644457693957 0.00436695624373502 19737856 8761878 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.232611560453478 0.231629202065548 0.232669565880827 0.231494621194781 0.00398231976205613 0.00387643813305102 19802214 8758756 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.234739448089753 0.95353167048984 0.234775310902571 1 0.00441000801369919 0.126854955211558 19983361 53803630 1299 861 82 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.231239810799875 0.230960714101068 0.231113145647364 0.230884260318914 0.00500208433098505 0.00520672072753801 19685437 8733478 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.231836016847887 0.231161276357679 0.231662470435645 0.231311512932021 0.00389381687823305 0.00380382309079042 19736192 8741062 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.231543205732553 0.231140834028518 0.231387808041505 0.231158922713054 0.00367776184714908 0.00330446791587391 19711265 8740289 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.231980337358297 0.232119315501963 0.231876096742199 0.232104982070649 0.00376159519771347 0.00333468012858457 19748478 8777289 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.232035781995212 0.231814822645605 0.231845578698405 0.231784542610819 0.00393088325036467 0.00382099207562931 19753198 8765775 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.232464902340792 0.233238989207482 0.232547493705653 0.233264667734798 0.00509073899368022 0.00535926208074104 19789729 8819628 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.233154659466852 0.232667794035997 0.232593270771344 0.232715342946517 0.00814688748959346 0.00479503276586225 19848448 8798029 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.232265172433702 0.232587188318941 0.232257572289616 0.232455939574273 0.00421499028397221 0.00438198944572924 19772726 8794981 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.232498991395098 0.232307607071988 0.231876096742199 0.232257572289616 0.00773570332455012 0.0033696258652442 19792631 8784409 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.231974475732487 0.232204628508269 0.231952391851682 0.23224231326772 0.00357581403115363 0.0034307009808867 19747979 8780515 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.231061976825669 0.230907188519926 0.230746929121843 0.230792706187533 0.00496526836085419 0.00475736050890968 19670298 8731454 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.231502738195652 0.231583001872734 0.231265735866331 0.231540398260472 0.00414322378635814 0.00371370317279317 19707820 8757009 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.232320570083636 0.232612813955367 0.23224231326772 0.23242542153048 0.0038317134317308 0.00363966580257273 19777442 8795950 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.234551065538439 0.256699087460244 0.233356221866178 0.237949187457084 0.0092938740360409 0.0373984365928866 19967324 9706741 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.233204512653095 0.232692229627388 0.233096818493935 0.232761120012207 0.00418143011201267 0.00407928629007231 19852692 8798953 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.233220171064325 0.233243379151389 0.233188372625315 0.233112077515831 0.00474233476494223 0.00497182745943064 19854025 8819794 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.23306774529979 0.233012245960095 0.233020523384451 0.232730601968414 0.00436671454476193 0.00429415087234247 19841049 8811054 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.233124470331921 0.232891390275402 0.233188372625315 0.232730601968414 0.00428107902122216 0.00440572104323224 19845878 8806484 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.232943323775594 0.232814222466226 0.232623788815137 0.232776379034104 0.00626808625512624 0.00366063914637025 19830457 8803566 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.232460262376473 0.231985237094656 0.232410162508583 0.232150759136339 0.00387811546608357 0.00339434725733895 19789334 8772219 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.231390039923075 0.231663343135338 0.231219958800641 0.231601434348058 0.00539448985560845 0.00542810254696008 19698226 8760047 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.231656420861914 0.231794115861991 0.231616693369955 0.231769283588922 0.00439915683648352 0.00442319238527649 19720903 8764992 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.23264347635994 0.232003907578987 0.232639047837034 0.231952391851682 0.00441547780723283 0.00466486485828985 19804931 8772925 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.233522461802962 0.234021536377231 0.233447775997559 0.233432516975662 0.00467396705642191 0.00436886363404496 19879759 8849219 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.233572373722931 0.233713182485869 0.233493553063249 0.233768215457389 0.00390378193934064 0.00384603824498683 19884008 8837559 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.23353459619066 0.233555964313987 0.233356221866178 0.233401998931868 0.00444763479915803 0.00448125903964771 19880792 8831614 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.23456950792826 0.233638156757757 0.233600366216526 0.233539330128939 0.009865150088284 0.00368557607235401 19968894 8834722 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.233479503956098 0.2334386787644 0.233295185778592 0.233401998931868 0.00394215767435022 0.00412537298076199 19876102 8827179 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.233147188536962 0.232761596030221 0.232928969253071 0.232639047837034 0.00427286814293115 0.00395843432287821 19847812 8801576 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.231919818127495 0.232503911611917 0.231815060654612 0.232486457618067 0.00361341897016593 0.0038133383200867 19743326 8791832 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.231613815417403 0.231492320441047 0.231464103150988 0.231418326085298 0.00605101805981611 0.00620543702034958 19717276 8753580 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.232165759729844 0.23225799541674 0.232104982070649 0.232196536202029 0.00516267333048157 0.00540413505399738 19764263 8782533 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.233690017375198 0.235479341545437 0.232990005340658 0.234897383077745 0.00669456552264562 0.00602162110323008 19894023 8904344 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.233966923397654 0.234017331551439 0.233981841763943 0.234210727092393 0.00476258525574464 0.00520071615630654 19917596 8849060 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.234401329778533 0.234298182179763 0.233875028610666 0.234424353398947 0.00585730598455433 0.00540279281997947 19954577 8859680 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.234131401322672 0.2342885560377 0.234210727092393 0.234760051880674 0.00522466193502582 0.00519309237493944 19931598 8859316 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.234000284153764 0.233723337536837 0.233737697413596 0.233508812085145 0.00515582304375213 0.0047537018808184 19920436 8837943 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.233923507427731 0.233540863964762 0.23413443198291 0.233401998931868 0.00471381895552627 0.00492480755355388 19913900 8831043 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.234310210276722 0.233141617078151 0.233798733501183 0.232806897077897 0.00549110721282109 0.00406052045900362 19946820 8815946 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.232117809516308 0.234417054456064 0.232211795223926 0.233386739909972 0.0046120012776971 0.00688611321930372 19760181 8864175 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.231615777123836 0.231278165225588 0.231403067063401 0.231052109559777 0.0056257709260379 0.00566933975522655 19717443 8745482 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.236772633466958 0.232224145246848 0.233310444800488 0.232272831311513 0.0257739890109209 0.00399757257557933 20156446 8781253 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.23359221397542 0.233463801937367 0.233569848172732 0.233310444800488 0.00397254756438978 0.00410156284128495 19885697 8828129 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.234279527778497 0.234839864234373 0.234241245136187 0.234714274814984 0.00413880181473845 0.0039021454485211 19944208 8880163 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.235345615377617 0.234760765907696 0.234454871442741 0.235065232318608 0.00824008690019922 0.00532253330412925 20034964 8877172 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.234432082757229 0.234354960550668 0.23440909437705 0.234393835355154 0.0057618979482399 0.00556580394302943 19957195 8861827 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.234264315743581 0.234540052221821 0.23422598611429 0.234744792858778 0.00499166545923058 0.00487051512645054 19942913 8868826 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.234011161639735 0.233896925439315 0.233920805676356 0.23399710078584 0.00503044746277292 0.00510140028249248 19921362 8844507 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.232687973030413 0.232947137273943 0.232623788815137 0.233020523384451 0.00452594926673726 0.00462669254562013 19808719 8808592 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.232081770502314 0.231869908508015 0.232135500114443 0.232013427939269 0.00468174313145678 0.00435811250775045 19757113 8767858 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.233748022802547 0.232509941173429 0.233432516975662 0.232349126420996 0.00597959796955644 0.00506492648109024 19898961 8792060 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.240744701351633 0.232955176689292 0.233432516975662 0.232974746318761 0.0414195613925015 0.00373692135223251 20494588 8808896 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.233857020850414 0.233911523325081 0.233875028610666 0.233966582742046 0.00371347581181152 0.00352942047408859 19908240 8845059 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.23400579337722 0.234289428737393 0.234058136873426 0.234348058289464 0.00360318074071639 0.00347101609375688 19920905 8859349 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.235341128120985 0.234424459180728 0.234699015793088 0.23427176317998 0.00691132166542613 0.00442324461850693 20034582 8864455 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.236096208896597 0.234983727456415 0.234546425574121 0.234943160143435 0.0142418869142844 0.00632507663032627 20098862 8885603 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.234316882427944 0.233579712323802 0.23436331731136 0.233463035019455 0.00482565821630687 0.00486834373664505 19947388 8832512 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.232945132774341 0.2334120746465 0.233020523384451 0.233554589150835 0.00406294060200151 0.00436821929673905 19830611 8826173 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.232484002548339 0.232268018240481 0.232349126420996 0.232303349355306 0.00396692598172557 0.00370501582053841 19791355 8782912 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.231948691626973 0.232426056221165 0.232074464026856 0.23256275272755 0.0040482151818551 0.0038198649619285 19745784 8788888 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.23261064420736 0.232393184532747 0.232730601968414 0.232349126420996 0.00489775306538211 0.00480630110116449 19802136 8787645 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.232881794324713 0.232885572277451 0.232944228274968 0.232974746318761 0.00399010766792841 0.00386008497764433 19825219 8806264 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.233179844488366 0.233211776844342 0.233203631647211 0.233173113603418 0.00357044481427553 0.00335536004812903 19850592 8818599 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.233887480160482 0.234007176500472 0.233981841763943 0.234103913939117 0.0040146479832042 0.00407266635765581 19910833 8848676 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.234474300559151 0.234164685572251 0.234378576333257 0.233920805676356 0.00454547301881898 0.0042903546181115 19960789 8854632 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.234013076359188 0.234491154593594 0.23404287785153 0.234470130464637 0.00517959284992321 0.00543528504680399 19921525 8866977 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.233507884092282 0.233901712064901 0.233432516975662 0.233600366216526 0.0045827857493791 0.00464034783320131 19878518 8844688 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.232567157756966 0.232699052552257 0.232639047837034 0.232837415121691 0.0039051796150183 0.00405642982218168 19798434 8799211 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.232545120863141 0.232196060184015 0.23242542153048 0.2323338673991 0.00360145051108303 0.00347278164198109 19796558 8780191 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.23147348880033 0.232000284552991 0.231494621194781 0.231754024567025 0.00367799554723842 0.00363902737585846 19705330 8772788 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.239435632329932 0.933160610421132 0.238742656595712 1 0.00693980427207055 0.173969569209266 20383147 52654180 1299 861 79 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.234576931871169 0.233376955095237 0.234119172961013 0.233295185778592 0.00514416244169391 0.00415092735770905 19969526 8824845 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.232595514399659 0.232991221831138 0.232593270771344 0.232913710231174 0.00385290419582313 0.00343424800696105 19800848 8810259 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.233138202276954 0.233025177782811 0.233020523384451 0.233203631647211 0.00409827221697991 0.00411394638185777 19847047 8811543 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.233508812085145 0.23397742537459 0.233371480888075 0.233829251544976 0.00433617586715339 0.00445852726864227 19878597 8847551 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.233387397727698 0.23371439897635 0.233585107194629 0.233585107194629 0.00454970237458635 0.00438564059980922 19868261 8837605 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.232683650228213 0.233323984868445 0.232639047837034 0.233218890669108 0.00369084419149794 0.0036007908336692 19808351 8822842 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.232386927446757 0.23259694668823 0.232349126420996 0.232593270771344 0.00362077556634122 0.00355190381155335 19783091 8795350 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.233041679272392 0.232129920125499 0.23270008392462 0.231967650873579 0.00412393226139645 0.0037203617012297 19838830 8777690 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.232118420347054 0.232248924629027 0.232211795223926 0.232211795223926 0.00371087672226126 0.00359200579226103 19760233 8782190 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.238928243421691 0.986888344195455 0.238437476157778 1 0.00722659721577224 0.0592989114688976 20339953 48442120 1299 749 91 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.233964738503064 0.232742026400752 0.233554589150835 0.232578011749447 0.00508897522688432 0.00383153378381422 19917410 8800836 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.232555563719543 0.232766938010157 0.232623788815137 0.23265430685893 0.00406172864880582 0.00431018078324167 19797447 8801778 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.232090122438086 0.232515785616825 0.232272831311513 0.232623788815137 0.00434764030790959 0.00443249010387463 19757824 8792281 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.232775204359593 0.232814830711466 0.23270008392462 0.233051041428244 0.00423502439808965 0.00421694098579546 19816145 8803589 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.232920311901925 0.232334740098792 0.232761120012207 0.23242542153048 0.00521801283530144 0.00457196656151144 19828498 8785435 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.232556327257976 0.232791347156103 0.232486457618067 0.232883192187381 0.0040489247965008 0.00421067172611524 19797512 8802701 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.232177107085619 0.232345027376986 0.232074464026856 0.23237964446479 0.00411658768599265 0.00360059794266028 19765229 8785824 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.2343928838688 0.234241483145194 0.233875028610666 0.233249408712902 0.00539322610573458 0.00585539896869086 19953858 8857536 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.235503057002314 0.947935348888852 0.235324635690852 1 0.00537112902819553 0.14240796901308 20048367 53487854 1299 861 82 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv new file mode 100644 index 0000000..92c8d4c --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.0239338756923018 0.160828424881705 0.0239566643778134 0.170229648279545 0.0021563173174692 0.0406040483626715 2037490 9074846 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.0234092895492204 0.0234274910187962 0.0233615625238422 0.0234836346990158 0.00176937091179964 0.0015718595727295 1992832 885880 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.0233647458917668 0.0234243175653688 0.0233463035019455 0.023422598611429 0.00147736396854617 0.00143452974353989 1989040 885760 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.023225417748028 0.0233619856509659 0.0232547493705653 0.0233005264362554 0.0015180019716271 0.00140194646130504 1977179 883403 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.023368540090437 0.0234032669909672 0.0234073395895323 0.0233920805676356 0.00196862021867772 0.00194957776600092 1989363 884964 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.0234127078520472 0.0234079478347726 0.0233615625238422 0.0233463035019455 0.00232025364332934 0.00232106774720057 1993123 885141 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.023313729777758 0.0233864741332472 0.0232089723048753 0.0233463035019455 0.00215934106026091 0.0021659771776504 1984697 884329 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.0234798052601102 0.0234996077479337 0.0234988937209125 0.0234378576333257 0.00183006959128599 0.00175739089294373 1998835 888607 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.0234156562850695 0.0231976800997628 0.0234378576333257 0.0232089723048753 0.00153344890811096 0.00142924528008399 1993374 877190 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0238051666061416 0.152865005418193 0.0237888151369497 0.163668268863966 0.0015483046661446 0.0337979881260633 2026533 8625505 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.0233473019752798 0.0233869501512613 0.0233157854581521 0.0233615625238422 0.00195171150481779 0.00220572156669151 1987555 884347 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.0234480420613353 0.0233272627813812 0.0234836346990158 0.0233157854581521 0.00154322001386576 0.00158319763067315 1996131 882090 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.0234058594996486 0.0234758597381187 0.023422598611429 0.023422598611429 0.00143581214132744 0.00140038877958227 1992540 887709 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0233997042052114 0.0234200598486871 0.0233615625238422 0.0234531166552224 0.00145684440616617 0.00140167219395602 1992016 885599 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0233715707506752 0.0235650866703188 0.0234073395895323 0.0236057068741894 0.00157753261488383 0.00144344109947399 1989621 891083 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.0234386916522284 0.0232336459052732 0.0233768215457389 0.0231784542610819 0.00205501567162031 0.00215373293049347 1995335 878550 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.0233793470959374 0.0234113328517618 0.0233920805676356 0.0233768215457389 0.00193601059420597 0.0018349690121134 1990283 885269 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.0233601999014096 0.0235818795280387 0.0233768215457389 0.0235599298084993 0.00170567288198106 0.0017382981235587 1988653 891718 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.0234274147769237 0.0235859785720491 0.0233615625238422 0.0234988937209125 0.00163682381764751 0.00134337792884104 1994375 891873 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.0234406063716812 0.0236010789212744 0.0234378576333257 0.0236514839398795 0.0014626693950407 0.00141238148047033 1995498 892444 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.0233572162281519 0.0232847913963446 0.0233310444800488 0.023422598611429 0.00191897110542215 0.00204486359848818 1988399 880484 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.023397942193445 0.0233127177865057 0.0233768215457389 0.0233157854581521 0.00165905385478135 0.0014587929162477 1991866 881540 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.0235513546845696 0.023516453496544 0.0235294117647059 0.0235141527428092 0.00148655821541326 0.00132365008168085 2004926 889244 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.0235804748656951 0.0259079679994245 0.023575188830396 0.0246433203631647 0.00184895287669345 0.00414805953960234 2007405 979676 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.0234137415656168 0.0234496523018975 0.0233463035019455 0.0234531166552224 0.00158031194848604 0.00164933491822964 1993211 886718 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.0234671540156278 0.0233936144034589 0.0234836346990158 0.0235294117647059 0.00179654358685593 0.00201605224741904 1997758 884599 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.0236520242901545 0.0232275634528707 0.0236972610055695 0.0231631952391852 0.0016883655764135 0.00168449015626575 2013496 878320 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.0234857256196452 0.0235126717978764 0.0234683756771191 0.0233920805676356 0.00173695609770927 0.0016596022196765 1999339 889101 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.0235032400166028 0.0232828344333977 0.0234988937209125 0.0233615625238422 0.0015241202610876 0.00144006986790617 2000830 880410 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.0236205077730268 0.0234561314359784 0.0236362249179828 0.0234378576333257 0.00142056159392688 0.00139105007094973 2010813 886963 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.0234182170755033 0.0233876641782825 0.0233768215457389 0.0233310444800488 0.00208666768846957 0.00215654888330365 1993592 884374 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.0233904242765752 0.0233294577533351 0.0234378576333257 0.0233157854581521 0.00184349687644807 0.00164935210605084 1991226 882173 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.0235925387729221 0.0232719124645185 0.023575188830396 0.0232547493705653 0.00168343816976002 0.00166413010847006 2008432 879997 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0235528700146887 0.0235424229237582 0.0235294117647059 0.0235446707866026 0.00172176913602406 0.00160436001865579 2005055 890226 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.0236365538268458 0.0235724913949827 0.0236057068741894 0.0234988937209125 0.00162841038057556 0.00157218201952755 2012179 891363 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.0234604348774254 0.0237877573191406 0.023422598611429 0.023773556115053 0.00174176544190494 0.00191899593247629 1997186 899503 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.0234842220362712 0.0233813701623182 0.0233920805676356 0.023422598611429 0.00182932427819606 0.00147143967446324 1999211 884136 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.0235173713509691 0.0235696881777885 0.0235294117647059 0.023575188830396 0.00160738650627792 0.00148208161434079 2002033 891257 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.0235708542814507 0.0233281090356285 0.0235904478522927 0.0232394903486687 0.00157266289028846 0.001553141907387 2006586 882122 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.0234481947690217 0.0235095776807847 0.0234378576333257 0.0235446707866026 0.00149277684330481 0.00139576847709089 1996144 888984 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.0233863951430028 0.0234652286691369 0.0233768215457389 0.023224231326772 0.00228784447351055 0.00259701089563766 1990883 887307 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.0233987409721125 0.0233941433123634 0.0233768215457389 0.0233768215457389 0.0020232051015645 0.00208174695766035 1991934 884619 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.0235637944876402 0.0237120440094521 0.0235141527428092 0.0236209658960861 0.00190972248144426 0.00178334395438976 2005985 896640 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.0235263576109775 0.0234305586904427 0.0234683756771191 0.0234531166552224 0.00188774965850001 0.00183157180070745 2002798 885996 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.0235792414574586 0.0238526544417307 0.0235294117647059 0.0238345922026398 0.00202757541298542 0.00212032981800009 2007300 901957 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.0235334878852587 0.0237158257081198 0.0234988937209125 0.0236972610055695 0.00206445004539334 0.00198851722126165 2003405 896783 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.0235416166328742 0.0235350710899847 0.0234378576333257 0.0235141527428092 0.00185144486599609 0.00177405562398929 2004097 889948 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.0235889560156638 0.0235170881872295 0.0235599298084993 0.0235141527428092 0.00177231396059688 0.00188383399238178 2008127 889268 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.0236235031930296 0.023520499649664 0.023575188830396 0.0234988937209125 0.00178124727225349 0.00169565742890458 2011068 889397 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.0233747541185997 0.0238489256339535 0.0233463035019455 0.0237430380712596 0.0019001536769265 0.00220180191563186 1989892 901816 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.0234815672718766 0.0235306811460768 0.0234683756771191 0.0234836346990158 0.00226580825761866 0.00226721951727287 1998985 889782 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.0240570168212803 0.0233816081713252 0.0237125200274662 0.0233005264362554 0.00305464286806995 0.00171161148668824 2047973 884145 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.0236815321138685 0.0233938788579111 0.0236820019836728 0.0233615625238422 0.00154824715316115 0.00164708477251206 2016008 884609 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.0236883569727769 0.0236645479898222 0.0236514839398795 0.0236972610055695 0.00168806337000258 0.0015327045390793 2016589 894844 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.0236455635803445 0.023731613638921 0.0236362249179828 0.0238040741588464 0.00227269673869219 0.00222928720199627 2012946 897380 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.0235795116325961 0.0234469813119295 0.0235446707866026 0.0235141527428092 0.00226162343350356 0.00240893224908146 2007323 886617 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.0236054014588165 0.0239172077735328 0.0235904478522927 0.0238498512245365 0.00194650415887428 0.00191323466221234 2009527 904398 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.0236754120596667 0.0235186749139432 0.0236057068741894 0.0235141527428092 0.00202965506014452 0.00195809615634034 2015487 889328 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.0235884509056241 0.0233119244231488 0.0236057068741894 0.0232089723048753 0.0018398976902885 0.00171140268797584 2008084 881510 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.0235920806498628 0.0233605311514783 0.0235446707866026 0.0234073395895323 0.00184676191798696 0.00174157500079567 2008393 883348 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.023543531352327 0.0234619758793739 0.0235599298084993 0.0234378576333257 0.00204262737513971 0.00212990656028445 2004260 887184 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.0244019482446633 0.0235185955776075 0.023773556115053 0.023575188830396 0.00443139500943104 0.00151869346643837 2077337 889325 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.0236560064367465 0.0234954293675876 0.023575188830396 0.0235599298084993 0.00146712444072602 0.0015247221684595 2013835 888449 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.0236287892283287 0.0235326909999142 0.0236209658960861 0.0234683756771191 0.00151656187222653 0.00148943847414023 2011518 889858 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.02383999570539 0.0236675627705782 0.0237125200274662 0.0236514839398795 0.00196715716403517 0.00162914802521144 2029498 894958 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.0238381514664079 0.0236667694072214 0.0236972610055695 0.0236209658960861 0.00270298895521463 0.00257768692160783 2029341 894928 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.0236197559813398 0.0235687096963151 0.0236057068741894 0.023575188830396 0.00191040260787344 0.00210191432292125 2010749 891220 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.0235179117012441 0.0236306713744848 0.023575188830396 0.0236972610055695 0.00161491920465057 0.0018381011933768 2002079 893563 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.0234222814493111 0.0234117559788854 0.0233768215457389 0.0233005264362554 0.00153906429589026 0.00147084663362596 1993938 885285 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.0234547729462828 0.0234597280165295 0.0234836346990158 0.0234531166552224 0.00151694116769265 0.00162370305712437 1996704 887099 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.0234315026442217 0.0235216896946992 0.0234836346990158 0.0234378576333257 0.00185674754633027 0.00189564591889486 1994723 889442 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.0236810622440641 0.0237442810071854 0.0236514839398795 0.0236514839398795 0.00167133733034563 0.00134271115786469 2015968 897859 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.0235733328446687 0.0235168237327772 0.0235294117647059 0.0234683756771191 0.00143641754040152 0.00138709774037525 2006797 889258 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.0235190628822648 0.0236499501040562 0.0235141527428092 0.0236057068741894 0.00151812455291753 0.00167064116627631 2002177 894292 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.0236482888252098 0.0237092143468127 0.0235904478522927 0.0236514839398795 0.0017642205433989 0.00175012173358387 2013178 896533 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.0236451289507754 0.0236161263796093 0.0236972610055695 0.0236209658960861 0.0022114898822917 0.00233554538724956 2012909 893013 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.0234873701639605 0.0235692121597744 0.0234378576333257 0.0235904478522927 0.00178952774854865 0.00166226875566149 1999479 891239 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.0235061297158997 0.0235570472549694 0.0234836346990158 0.0235446707866026 0.00157276157255705 0.00178005751491316 2001076 890779 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.023316314061682 0.023414374077963 0.0232852674143587 0.0233768215457389 0.00142348211515965 0.00136830957381865 1984917 885384 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.0234644757577429 0.0234208796574892 0.0234988937209125 0.0234836346990158 0.00143725874435191 0.00142569818414111 1997530 885630 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.0243504622608502 0.158183421418297 0.0243533989471275 0.169298847943847 0.00197257537167472 0.0455733632647387 2072954 8925600 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.0236444711330493 0.0236544722751902 0.0236209658960861 0.0237125200274662 0.0016813051395341 0.00156863377806836 2012853 894463 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.0235974489123777 0.0233926888128759 0.0235904478522927 0.0233463035019455 0.00144151867684368 0.00132549872866582 2008850 884564 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.0235689395619979 0.0235894693708192 0.023575188830396 0.023575188830396 0.00158053218817763 0.00155913327518145 2006423 892005 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.0236385625202595 0.0235798961196466 0.0236362249179828 0.0235446707866026 0.00174253597480935 0.0017446533454642 2012350 891643 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.0235956399136309 0.0235717773679615 0.0236057068741894 0.0236057068741894 0.00191204397317335 0.00187041498478876 2008696 891336 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.0234994105776973 0.0234099841340551 0.0234836346990158 0.0234683756771191 0.00154813564563021 0.00148106618301785 2000504 885218 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.0234380690747377 0.0234178913221784 0.0234531166552224 0.0233615625238422 0.00146626682828948 0.00130600394696244 1995282 885517 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.023435414310343 0.0233482340194472 0.0233463035019455 0.0233768215457389 0.00148724648301025 0.00142011275482338 1995056 882883 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.0235343571443968 0.0233891451232153 0.0235141527428092 0.0233920805676356 0.0014350914443514 0.00137516713597092 2003479 884430 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.0241879695357563 0.17436608593763 0.0242008087281605 0.177340352483406 0.00223149296074778 0.028549547286371 2059121 8558884 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.0235383510377339 0.0234797736640125 0.0234683756771191 0.0235446707866026 0.0017219941035604 0.001447083387727 2003819 887857 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.0234948410938499 0.0234995019661527 0.0235599298084993 0.023575188830396 0.00157519901672007 0.00169546154977727 2000115 888603 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.0234678000866088 0.0232624185496815 0.0234683756771191 0.0232089723048753 0.00174934596382344 0.00174917685660551 1997813 879638 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.0234006204513299 0.0235499598756482 0.0233768215457389 0.0234988937209125 0.00180669679954845 0.00168570788695454 1992094 890511 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.0235285190120776 0.023503468782937 0.0234988937209125 0.0234988937209125 0.00186085082546244 0.00174695669607643 2002982 888753 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.023312754797914 0.0232385118671952 0.0233615625238422 0.0231631952391852 0.00161662456826532 0.00165919052391232 1984614 878734 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.0235093835642949 0.023412628678578 0.0235141527428092 0.0233615625238422 0.0015901902115644 0.00156813821059822 2001353 885318 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.0236250420166389 0.0236937966522446 0.0236362249179828 0.0236514839398795 0.00157732155325706 0.0017381807942562 2011199 895950 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.0238491699133202 0.15396776660112 0.0238193331807431 0.16600289921416 0.00168695741431963 0.0350188095927845 2030279 8687729 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv new file mode 100644 index 0000000..f2ee87b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.326221207773315 0.369710983314587 0.326161593041886 0.373739223315785 0.00586552375407859 0.0289230760047997 27771200 20861177 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.326084816315853 0.326407006773604 0.326131074998093 0.326771953917754 0.0049046770862032 0.00452760441086206 27759589 12342655 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.325688034759558 0.325493105077406 0.325566491187915 0.325566491187915 0.00456767688919916 0.00424830774827568 27725811 12308097 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.325089667310447 0.325837927237738 0.325139238574807 0.325825894560159 0.00417052657054322 0.00390135104708595 27674872 12321136 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.325421219191151 0.325950479052629 0.325307087815671 0.325978484779126 0.00487138010654435 0.00435799279496042 27703097 12325392 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.325782560817451 0.325297964137067 0.325719081406882 0.325383382925155 0.00633742310843521 0.0065262092931619 27733858 12300718 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.325274267409836 0.325875717778969 0.325093461509117 0.325871671625849 0.00653995367103104 0.00694499838216254 27690587 12322565 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.325270167795793 0.325336072023641 0.325291828793774 0.324910353246357 0.00595881460233795 0.00658528548072146 27690238 12302159 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.325226234969085 0.325491729914255 0.325352864881361 0.325200274662394 0.00468899877499293 0.00455065209944041 27686498 12308045 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.324184286931165 0.373319467295317 0.324223697261006 0.373144121461814 0.00488538280671241 0.0235490074590128 27597797 21064788 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.325793919919972 0.326319869031577 0.325764858472572 0.326085297932403 0.00511607917743284 0.00462975044433823 27734825 12339360 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.326150962237562 0.325951695543109 0.326024261844816 0.325902189669642 0.00488849371221954 0.00463881279496211 27765220 12325438 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.326048330925544 0.326155827934826 0.326024261844816 0.326176852063783 0.00403211460348048 0.00405688418290499 27756483 12333157 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.325772670058069 0.326318599650206 0.325841153582055 0.32628366521706 0.00425254553215838 0.00404740057826837 27733016 12339312 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.326363272908664 0.326766929283161 0.326268406195163 0.32660410467689 0.0043823431652789 0.00456562265679747 27783294 12356265 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.326467078895193 0.32609251753895 0.32646677347982 0.326222629129473 0.00551249162023438 0.00533605643475265 27792131 12330763 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.326324896292392 0.325375264173469 0.32623788815137 0.325093461509117 0.00599208314020083 0.00531690479958293 27780027 12303641 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.325529641648508 0.325910546430334 0.325551232166018 0.325947966735332 0.00598675464716875 0.00615356324316645 27712327 12323882 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.32571668507088 0.325683168492262 0.325215533684291 0.325673304341192 0.00640503599092616 0.00467192098847441 27728250 12315284 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.324545499343269 0.325427123691562 0.324467841611353 0.325642786297398 0.00458380360445917 0.00402675749879891 27628547 12305602 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.326154415780624 0.326671593453113 0.325963225757229 0.326436255436027 0.00647744559226405 0.00630154290642238 27765514 12352660 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.326864330321292 0.327465829509653 0.326848249027237 0.327351796749828 0.00533261411830287 0.0053794542588211 27825949 12382693 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.327372412287495 0.327381336312148 0.327489127946899 0.327367055771725 0.00508297934034854 0.00539263833120757 27869202 12379498 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.327364612448742 0.333570469640695 0.326878767071031 0.330800335698482 0.00567610274327205 0.0101628451672496 27868538 12613532 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.32667193038315 0.326566552144666 0.32674143587396 0.326527809567407 0.00425766584438819 0.0039344969605575 27809570 12348688 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.326730687602186 0.327004462272201 0.326817730983444 0.326802471961547 0.00490359596560981 0.00483008793635979 27814572 12365247 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.326476652492457 0.326727261115318 0.326726176852064 0.326680399786374 0.00530098311269414 0.0055393511389701 27792946 12354765 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.326064717634971 0.325692107052749 0.325856412603952 0.325764858472572 0.00558740040958174 0.00529348505044655 27757878 12315622 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.325660805804396 0.325902824360328 0.325200274662394 0.325795376516365 0.00572317646967856 0.00494858521181523 27723493 12323590 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.325521689102069 0.325620307668954 0.325459678034638 0.325612268253605 0.00407945447799448 0.00418996631564138 27711650 12312907 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.326463801553307 0.325829702704272 0.326268406195163 0.325749599450675 0.00692026286365721 0.00679956126560807 27791852 12320825 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.327147650066578 0.327104346718828 0.327168688487068 0.326970321202411 0.00614060270248624 0.00548367304242166 27850068 12369024 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.327239121970742 0.326947578119515 0.327275501640345 0.32674143587396 0.00538766750275984 0.00530213970573279 27857855 12363096 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.327122547272279 0.32778589873325 0.327061875333791 0.327931639581903 0.0050688877921555 0.00477848272795774 27847931 12394796 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.326936420096026 0.327431688439863 0.326787212939651 0.327336537727932 0.00486099132113471 0.00462938082773426 27832086 12381402 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.326828350041023 0.327017526322143 0.326710917830167 0.327153429465171 0.00445114630268083 0.00459668173492148 27822886 12365741 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.327248836528947 0.326360515680893 0.326848249027237 0.326222629129473 0.00786520418397308 0.00543484590423989 27858682 12340897 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.325835409423697 0.326699176052486 0.325719081406882 0.326817730983444 0.00520050148473734 0.00507961200004207 27738357 12353703 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.325838745499308 0.325900999624607 0.325703822384985 0.326070038910506 0.00474361844126027 0.0049072074664344 27738641 12323521 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.325621266260358 0.32521370894857 0.325627527275502 0.325001907377737 0.00384112855894459 0.00396722855582316 27720127 12297532 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.326279107479957 0.326443369260793 0.325993743801022 0.32651255054551 0.00648646210970327 0.00722270753673656 27776129 12344030 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.327313925243597 0.327589356184314 0.327367055771725 0.327580682078279 0.00555705899955366 0.0054021462015712 27864223 12387364 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.327819787074974 0.329644220169439 0.327763790341039 0.329106584267948 0.00466623872298642 0.00596022499160279 27907287 12465066 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.327456201820358 0.327883561762478 0.327565423056382 0.327687495231556 0.00484718175072879 0.00484809871788128 27876335 12398489 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.326983007687129 0.327004515163091 0.327077134355688 0.326924544136721 0.00593010478396319 0.00592726998301068 27836052 12365249 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.327024274002697 0.326807311478024 0.327077134355688 0.3265583276112 0.00594562779210503 0.00569355627104819 27839565 12357792 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.326621478112907 0.326749581071091 0.326588845654994 0.326756694895857 0.00552270740219909 0.00559744083209409 27805275 12355609 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.326327363108865 0.326173731501246 0.326405737392233 0.326070038910506 0.0054521877728221 0.00585417009931611 27780237 12333834 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.326251103239617 0.3252792143164 0.32632944228275 0.324834058136873 0.00508933315193997 0.00536047886749992 27773745 12300009 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.325532460867334 0.326307228108758 0.325612268253605 0.326436255436027 0.00446370675371965 0.00466462574228281 27712567 12338882 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.326578755200945 0.326577209659093 0.32632944228275 0.326451514457923 0.00567106314214496 0.0054469269720381 27801638 12349091 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.341139562829023 0.327534984348924 0.32826733806363 0.327626459143969 0.0741449659895959 0.00463027207511601 28616424 12385308 1280 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.327476605916612 0.327096756876047 0.327519645990692 0.327153429465171 0.00432738169552307 0.00438350632106351 27878072 12368737 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.32659598767602 0.327119579295279 0.326482032501717 0.327122911421378 0.00425333747081173 0.00397504769923941 27803105 12369600 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.327272142071244 0.326185341051701 0.327183947508965 0.326131074998093 0.00633453709724976 0.00572570023950573 27860666 12334273 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.326661041150434 0.326129276707817 0.326619363698787 0.326131074998093 0.00658057975078782 0.00681144680588834 27808643 12332153 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.326310530023124 0.326556661548151 0.326527809567407 0.32651255054551 0.00572906466012472 0.00538019835195117 27778804 12348314 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.326612879495487 0.326518209870789 0.326405737392233 0.326344701304646 0.00566544666295057 0.00579299905634681 27804543 12346860 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.32586969817267 0.326221809320671 0.325734340428779 0.326024261844816 0.00564949076546968 0.00529916068057677 27741276 12335652 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.325174126407781 0.325198370590338 0.325047684443427 0.325001907377737 0.00543118015269751 0.00568720394646823 27682062 12296952 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.326752618775304 0.326572052797274 0.326771953917754 0.3265583276112 0.00580338123452199 0.00575662256429104 27816439 12348896 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.340018117060919 0.327022868302079 0.327794308384833 0.326771953917754 0.0680473278644304 0.00402730079929692 28076690 12365943 1260 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.326670861429345 0.326578822831252 0.326680399786374 0.3265583276112 0.0043287634654138 0.00410629461266566 27809479 12349152 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.3272507512484 0.327214835788991 0.327290760662242 0.327077134355688 0.00427957179651559 0.00446959905598598 27858845 12373202 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.326586919188796 0.326714461519828 0.32637521934844 0.32664988174258 0.00550246583503694 0.00542049961801861 27802333 12354281 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.326953394142709 0.326507658138143 0.326451514457923 0.326314183260853 0.00791996089909623 0.00703880353657164 27833531 12346461 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.32673817027882 0.326289218760558 0.326634622720684 0.326085297932403 0.00622731421543478 0.00660798083667745 27815209 12338201 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.326272693757128 0.32624375904021 0.326024261844816 0.326085297932403 0.0057189170735796 0.005201873299359 27775583 12336482 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.326094930263392 0.326365487424596 0.326054779888609 0.326161593041886 0.00523264335145708 0.00521376343525794 27760450 12341085 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.325804409763354 0.325440055514279 0.325764858472572 0.325520714122225 0.00507330637216184 0.00506216248879778 27735718 12306091 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.325804762165707 0.325836552074586 0.325764858472572 0.325749599450675 0.00563526342276631 0.00549642980019914 27735748 12321084 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.326161052691611 0.325977585633988 0.325993743801022 0.325932707713436 0.00464667108502955 0.00437308784603317 27766079 12326417 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.326064905582893 0.325817194008679 0.325917448691539 0.325856412603952 0.004799364359311 0.00444393346728606 27757894 12320352 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.326927974186293 0.327120055313293 0.326894026092927 0.326894026092927 0.00505582416659983 0.0050943600800366 27831367 12369618 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.326574925762039 0.326728451160353 0.32646677347982 0.326832990005341 0.005253040527869 0.00552088931510979 27801312 12354810 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.32683347162189 0.326743604400469 0.327000839246204 0.326756694895857 0.00618457859107018 0.00599846424054592 27823322 12355383 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.326278320448035 0.32682130111855 0.326070038910506 0.326939803158618 0.00563129896970254 0.00469627708511156 27776062 12358321 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.326427351403234 0.3266985413618 0.326298924238956 0.32646677347982 0.00505650161498004 0.00569327033400155 27788749 12353679 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.326121407426868 0.326587285373725 0.325886930647745 0.326573586633097 0.00449287859144678 0.00439360827959979 27762704 12349472 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.325549387927036 0.325909144821737 0.325459678034638 0.325993743801022 0.00478107600484662 0.00447724123723759 27714008 12323829 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.325156306595451 0.365348622128931 0.325200274662394 0.370519569695583 0.00606940551267159 0.0278406979289507 27680545 20615028 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.325606218679874 0.325535867362341 0.325535973144121 0.325597009231708 0.00486892790409703 0.00454540674581152 27718846 12309714 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.3258093433963 0.32571537904455 0.325719081406882 0.325566491187915 0.00514429177598922 0.00514792821317463 27736138 12316502 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.325841517731154 0.326200838082605 0.325810635538262 0.326390478370336 0.00517697807160279 0.00467092919911389 27738877 12334859 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.326554357211353 0.327100829474612 0.326771953917754 0.327061875333791 0.00574512959010663 0.00547750212662685 27799561 12368891 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.326463625352131 0.32671012446681 0.326436255436027 0.326710917830167 0.00502298716771463 0.00500664553853511 27791837 12354117 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.326338287581817 0.327015595804642 0.32651255054551 0.327046616311894 0.00419586321495671 0.00382980015418312 27781167 12365668 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.326152571541642 0.326042297638461 0.32628366521706 0.326024261844816 0.00419459831090002 0.00396900255569938 27765357 12328864 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.326036196537847 0.326061787931595 0.326009002822919 0.325947966735332 0.00389111545153746 0.00386464435687901 27755450 12329601 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.325055801444298 0.325060960056932 0.325001907377737 0.32498664835584 0.00440974255046865 0.0043743593764329 27671989 12291756 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.324469732837315 0.368134048775698 0.324422064545663 0.371663996337835 0.00678860806669207 0.0281061420551795 27622097 18070123 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.32473838089796 0.324990615172625 0.324773022049287 0.324910353246357 0.00571527619509369 0.00522704654640146 27644967 12289096 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.325510976070529 0.325742750080361 0.325612268253605 0.325749599450675 0.00600363379623316 0.00615337594619928 27710738 12317537 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.326049094463976 0.325185094976833 0.325841153582055 0.32503242542153 0.00614555426871979 0.00607868112043036 27756548 12296450 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.325977122156693 0.325891056137201 0.326085297932403 0.325810635538262 0.00591033834286073 0.00553294654903596 27750421 12323145 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.326429501057589 0.32616727881261 0.326543068589303 0.326054779888609 0.00542183866313374 0.00532671854889753 27788932 12333590 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.326001038529735 0.325570352222918 0.325871671625849 0.325368123903258 0.00433670771833164 0.00448515797224157 27752457 12311018 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.325857035181443 0.325593809332836 0.325795376516365 0.325764858472572 0.00417410868603121 0.00385954267522104 27740198 12311905 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.326061992390106 0.326496974178271 0.325932707713436 0.326497291523613 0.00446401625613661 0.00433288621246073 27757646 12346057 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.325255343403466 0.373634341908602 0.325246051728084 0.37796597238117 0.00492588025953971 0.0238784053497112 27688976 21082555 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv new file mode 100644 index 0000000..fac7a7d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.0341930717344944 0.038604315219492 0.0341954680704967 0.0386663614862287 0.00232528808088286 0.00384112342638558 2910855 2178273 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.034265607885543 0.0343597207308093 0.0342870222018769 0.0342717631799802 0.00188751913481578 0.00174456878803115 2917030 1299268 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.0341014471226436 0.0340545667383206 0.0341039139391165 0.0340123598077363 0.00172371796744552 0.00145305514193581 2903055 1287729 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0341566803181465 0.034098757077297 0.0341649500267033 0.0340886549172198 0.00150919521928394 0.0015526977466267 2907757 1289400 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0339921319126585 0.0341591584741983 0.0339818417639429 0.0340428778515297 0.00179701442580248 0.00185882767388315 2893749 1291684 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.0341009302658588 0.0339118142249785 0.0341191729610132 0.033829251544976 0.00252557010249602 0.00239996818492411 2903011 1282331 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.0340708351048893 0.0340821493376937 0.0339971007858396 0.0340428778515297 0.002537023830961 0.00256721388738565 2900449 1288772 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.0341499611799441 0.0339394497152421 0.0341039139391165 0.0338597695887694 0.00233369186507072 0.0024350483547413 2907185 1283376 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.0340211111328426 0.0339909918879919 0.0339971007858396 0.0339971007858396 0.00187743542131705 0.00163931429802538 2896216 1285325 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0338938116560955 0.0388972494505379 0.0338445105668727 0.0389868009460594 0.00179484442515255 0.00298617674224811 2885379 2194802 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.0340240125788845 0.0340778651755667 0.0339360646982528 0.0339971007858396 0.00189342416400059 0.00187953850056253 2896463 1288610 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.0342110794947466 0.0343550663324491 0.0342259861142901 0.0343480582894636 0.00183846824616201 0.00182878939546821 2912388 1299092 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.0341324115427511 0.034279617477213 0.0340886549172198 0.0342870222018769 0.0016428787991111 0.00152804753928067 2905691 1296239 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0341497027515517 0.0338933817496545 0.0341496910048066 0.033829251544976 0.00160212994968923 0.00155575652848667 2907163 1281634 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0339887018630866 0.0341013222854841 0.0339818417639429 0.0341344319829099 0.00166283451251961 0.00170182335364942 2893457 1289497 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.0341460965008032 0.0339722420673251 0.0340123598077363 0.0339208056763561 0.00208118456010887 0.00198205908215973 2906856 1284616 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.0342625537318146 0.0342947707173287 0.0342565041580835 0.0342870222018769 0.00218851463962237 0.00211868939540577 2916770 1296812 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.034174605851183 0.0341585237835128 0.0341802090486 0.0340886549172198 0.00233047947728435 0.00239683578744631 2909283 1291660 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.0341770139339303 0.0341213943784124 0.0341802090486 0.0341954680704967 0.00180634213171036 0.00171024087629514 2909488 1290256 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.0339787406232341 0.0339288186462603 0.0339360646982528 0.0338750286106661 0.00167466653031827 0.0017170890817626 2892609 1282974 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.0339650556651821 0.0342348453384415 0.0339513237201495 0.0341191729610132 0.0022617045586416 0.00221820477820677 2891444 1294546 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.0343737954079976 0.0341854981376456 0.034378576333257 0.0340886549172198 0.00215710007912226 0.00186339795057361 2926240 1292680 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.0342492211761158 0.0341716936152365 0.0341954680704967 0.0342107270923934 0.00189982537238516 0.00222112462533747 2915635 1292158 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.0344258099953407 0.0350783757048868 0.0343938353551537 0.0349889372091249 0.00175610486356258 0.00188190098289541 2930668 1326443 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.0345028568965111 0.0345004369448688 0.0345922026398108 0.0344396124208438 0.00165835033834913 0.00168439641540905 2937227 1304589 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.0342344437707686 0.034153446258029 0.0342107270923934 0.0341191729610132 0.00180043003493863 0.00192924756964604 2914377 1291468 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.0342442640496798 0.0339237940116669 0.0342259861142901 0.0338902876325628 0.00197182503550821 0.00199611858350754 2915213 1282784 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.034120230168073 0.0340904796529406 0.0340581368734264 0.034027618829633 0.00203823709518379 0.00205870952743081 2904654 1289087 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.0340786349436418 0.0343047406501798 0.0340733958953231 0.0343175402456703 0.00186125492246628 0.00183576036254171 2901113 1297189 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.03408651700961 0.0340827046920434 0.034027618829633 0.0339513237201495 0.00158915418247539 0.00157663014051722 2901784 1288793 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.034184625824761 0.0341615121188236 0.0340581368734264 0.034027618829633 0.00266740142070736 0.00265057321837112 2910136 1291773 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.0342892775769378 0.0341377112181182 0.0342412451361868 0.0341344319829099 0.00227545888984039 0.00231582521937757 2919045 1290873 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.0342833454706577 0.0343783647696952 0.0342717631799802 0.0344548714427405 0.00203533394636163 0.00204197354231394 2918540 1299973 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0343956561006456 0.0343818820139106 0.0343938353551537 0.0343633173113603 0.00190686482896178 0.00195644571963082 2928101 1300106 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.0343256102595602 0.0342176557990432 0.0343022812237736 0.0341802090486 0.0017508506321578 0.00171636288477287 2922138 1293896 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.0340869633859241 0.0343462335537429 0.0341039139391165 0.034332799267567 0.00178222732097399 0.00171428487941582 2901822 1298758 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.0342728438805302 0.033937942324864 0.0341802090486 0.0338750286106661 0.00216129561134258 0.00203236906650771 2917646 1283319 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.0340213108275094 0.0342059404668071 0.0339665827420462 0.0341954680704967 0.0018693257004531 0.00195806131753365 2896233 1293453 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.0343008128806349 0.0339684339232122 0.0343480582894636 0.0339818417639429 0.00177799233905488 0.00167740941972794 2920027 1284472 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.0339900409920291 0.0341679119165689 0.0339818417639429 0.0342107270923934 0.00162503267788949 0.00159506852936933 2893571 1292015 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.0341309784398478 0.0340129680529766 0.0341039139391165 0.0339513237201495 0.00252103069151249 0.00273903964761017 2905569 1286156 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.0343111970033113 0.0344199105641488 0.034332799267567 0.0343480582894636 0.00208043976541957 0.00197262338314189 2920911 1301544 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.0342983695576522 0.034728714028079 0.0342412451361868 0.0347600518806745 0.00178570594222906 0.00173933865100367 2919819 1313221 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.0343180336089648 0.034240689781837 0.0343022812237736 0.0342870222018769 0.00182719290009451 0.00204260546255852 2921493 1294767 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.0343276659399543 0.0344435263467376 0.034378576333257 0.0343633173113603 0.00218323636899328 0.00216402176641394 2922313 1302437 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.0341932009486906 0.0341606394191311 0.0341496910048066 0.0341039139391165 0.00221144549163696 0.00206055025664154 2910866 1291740 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.0343445577594211 0.0339719776128728 0.034378576333257 0.0337529564354925 0.00213088836219259 0.00206391012602408 2923751 1284606 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.0341130059198309 0.0342030579132772 0.0341954680704967 0.0341344319829099 0.00210275432246324 0.00211419046025044 2904039 1293344 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.0341729143198872 0.0340929919702372 0.0340733958953231 0.0340733958953231 0.00191945953508093 0.00207482144666776 2909139 1289182 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.0340596404568004 0.0340782089663547 0.0340123598077363 0.0339818417639429 0.00158526175164456 0.00168469282227677 2899496 1288623 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.0344180453968235 0.0340133911801002 0.0344243533989471 0.0341802090486 0.00228243789328391 0.00216565710650019 2930007 1286172 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.040396727521267 0.0345020765624729 0.034683756771191 0.034378576333257 0.0362860221096205 0.00176568255733945 3438972 1304651 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.0343768025747456 0.0344618265948356 0.034378576333257 0.0344853894865339 0.00163615956904983 0.00168607296165998 2926496 1303129 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.0342780359418684 0.0341580477654987 0.0343175402456703 0.0342412451361868 0.0015604578620717 0.00165021543185405 2918088 1291642 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.0341986161981859 0.0345017856625754 0.0342259861142901 0.0343938353551537 0.00224613123711672 0.0020613445002231 2911327 1304640 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.0341178103385805 0.0345007807356567 0.0341802090486 0.0344548714427405 0.00250190499613129 0.00283190448970898 2904448 1304602 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.0342437002059146 0.0343508350612126 0.0342412451361868 0.0343633173113603 0.00215347192893399 0.00196214785272844 2915165 1298932 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.0342095641646276 0.0340582162097621 0.0341344319829099 0.0340123598077363 0.00223010114845107 0.00213784080228573 2912259 1287867 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.0341440173269189 0.0341441903521991 0.0340886549172198 0.0341039139391165 0.00209224651613947 0.0022298750985358 2906679 1291118 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.0339644918214168 0.0341447721519941 0.034027618829633 0.0341344319829099 0.00198202154318345 0.00223081511141247 2891396 1291140 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.0344183508121964 0.0341353575734929 0.034378576333257 0.0341039139391165 0.00223519857850559 0.00214034412699435 2930033 1290784 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.045286086984765 0.034318439390808 0.0344548714427405 0.0342412451361868 0.0562461643390306 0.00159732885144228 3855203 1297707 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.034385459925891 0.0345738759462676 0.034332799267567 0.0345922026398108 0.00167970336269176 0.00155776249726448 2927233 1307366 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.0343661717704218 0.0342158575087677 0.0343480582894636 0.0343022812237736 0.0016663414595914 0.00163800153101319 2925591 1293828 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.0343643392781848 0.0341740208144166 0.034378576333257 0.0342107270923934 0.00209073884710122 0.00203018866972871 2925435 1292246 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.0342841559960702 0.0342181318170573 0.0342107270923934 0.0342259861142901 0.00260216176494788 0.00263988378914264 2918609 1293914 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.0341812192686794 0.0341696837613991 0.0341191729610132 0.0342412451361868 0.00243529457313998 0.00248941801558128 2909846 1292082 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.034153720138379 0.0341761364500348 0.0340581368734264 0.0341802090486 0.00205170628033006 0.00215301188479858 2907505 1292326 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.0341319534196919 0.034201418295673 0.0340886549172198 0.0341954680704967 0.00199984807170333 0.00206477387944959 2905652 1293282 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.033975815683702 0.0340946580332866 0.0339818417639429 0.034027618829633 0.0019644753353072 0.00218653609760284 2892360 1289245 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.0341048889189606 0.0341190142883418 0.0340428778515297 0.0341191729610132 0.00210502944237585 0.00209967643153752 2903348 1290166 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.0342975237920044 0.0342273612774419 0.0342717631799802 0.0342412451361868 0.0017558268345543 0.00167150290748528 2919747 1294263 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.0341172464948153 0.0343388023836338 0.0340886549172198 0.0344243533989471 0.0017661887603515 0.00181281485424309 2904400 1298477 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.0343329519752534 0.0343432981093226 0.0343175402456703 0.0343175402456703 0.00194004599371 0.00195576597553524 2922763 1298647 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.0342400352214405 0.0343019638784308 0.0343022812237736 0.0342870222018769 0.00202186411127395 0.00202672208552722 2914853 1297084 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.0341614142564255 0.0341618030187211 0.0341344319829099 0.0341344319829099 0.00233239610406342 0.00236510091604957 2908160 1291784 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.0339971712663103 0.0338599018159955 0.0339208056763561 0.0338445105668727 0.00204219437225864 0.00201683219612853 2894178 1280368 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.034246331476819 0.034062844162677 0.0342565041580835 0.034027618829633 0.00198337051050334 0.00196940067797548 2915389 1288042 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.0340908985455356 0.0343177253637869 0.0340581368734264 0.0343175402456703 0.00171488593949069 0.00178569292476355 2902157 1297680 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.0339424079406117 0.0341690226252684 0.0339360646982528 0.0341954680704967 0.0018704338491038 0.00177236844299728 2889516 1292057 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.0340326346897946 0.0382704067043286 0.0339208056763561 0.0382696269169146 0.00232740203838569 0.00380940989266245 2897197 2159432 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.0343153670978251 0.0340507321487625 0.0342259861142901 0.0339513237201495 0.00188685190550279 0.00175369338475367 2921266 1287584 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.0342765558519847 0.0340100590540015 0.0343022812237736 0.0340123598077363 0.00191618984573829 0.0019132283219307 2917962 1286046 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.0343294866854462 0.0342655220549063 0.0342565041580835 0.0342717631799802 0.00201613807478116 0.0018643199079693 2922468 1295706 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.0344144391460751 0.0341731216692788 0.0344396124208438 0.0342565041580835 0.0020911066257712 0.00208466825736416 2929700 1292212 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.0341104568761423 0.0340822022285841 0.0341802090486 0.0341191729610132 0.00183959256385606 0.00177108203432091 2903822 1288774 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.0341686972383931 0.0338509897009536 0.0341191729610132 0.0338750286106661 0.00155770060082053 0.00151056409255823 2908780 1280031 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.0342001902620305 0.0341216323874194 0.0342107270923934 0.0341344319829099 0.00158886422950157 0.0015019522102678 2911461 1290265 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.034131965166437 0.0342692244172383 0.0341802090486 0.0342412451361868 0.00154193461922298 0.00157764652706379 2905653 1295846 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.0339211815721996 0.0339576441815591 0.0339360646982528 0.0339513237201495 0.00175956807111791 0.00171792223589117 2887709 1284064 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.0338764499668243 0.0385082503127437 0.033829251544976 0.0385900663767453 0.00262472023540986 0.00374572704030698 2883901 1890205 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.033916271432744 0.0340743214859061 0.0339513237201495 0.0340886549172198 0.00222803938032783 0.00189427544255603 2887291 1288476 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.0339604391943542 0.0340516577393455 0.0340428778515297 0.0339665827420462 0.00210576827808982 0.00226230098509834 2891051 1287619 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.0341539668200263 0.0341662194080742 0.0340733958953231 0.0341649500267033 0.00235643425505899 0.0022801067555313 2907526 1291951 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.0340751344135993 0.0340269841389475 0.0339971007858396 0.0341039139391165 0.00226144206776823 0.00213435994044196 2900815 1286686 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.0340481991270641 0.0341499025683684 0.0339665827420462 0.0340123598077363 0.00198720786272651 0.0020088763471897 2898522 1291334 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.0342035145908964 0.0339924463874795 0.0341649500267033 0.0339971007858396 0.00172014355003014 0.0016109238678024 2911744 1285380 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.0339868458773594 0.0339501601205595 0.0339513237201495 0.0338445105668727 0.00155958209565097 0.00148126261051013 2893299 1283781 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.0341094936430433 0.034202687677044 0.0339971007858396 0.0341954680704967 0.00169103025985962 0.0016632946266671 2903740 1293330 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.0340110911592645 0.039134925109837 0.0340733958953231 0.0392156862745098 0.00179346056376413 0.00302659671128995 2895363 2208213 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv new file mode 100644 index 0000000..5f3185f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.238583256390535 0.957257618811024 0.237537193865873 1 0.00843608746224413 0.11634998749478 22562104 54013869 1443 861 79 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.23297493665999 0.23176790842577 0.232455939574273 0.231769283588922 0.00542056957995235 0.00461608950685137 22031742 8764001 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.230980668151646 0.231069061090169 0.230975814450294 0.230914778362707 0.0038865352593196 0.00419189297164153 21843150 8737575 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.230962765501562 0.230859851172968 0.231006332494087 0.230594338902876 0.00451343482064834 0.00437923771791813 21841457 8729664 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.231269394647742 0.231136311857384 0.231143663691157 0.231219958800641 0.00569089219961816 0.00583940066507446 21870454 8740118 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.230858595976472 0.231232811287022 0.230655374990463 0.231250476844434 0.00587127226884311 0.00543970935174708 21831606 8743767 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.231416739908386 0.231089344746659 0.231265735866331 0.231235217822538 0.00521868038644506 0.00472922665807539 21884388 8738342 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.231381664249597 0.230627157700405 0.231448844129091 0.230395971618219 0.00451116532659495 0.00461548324457756 21881071 8720865 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.23157697550007 0.231499645829375 0.231692988479438 0.231570916304265 0.0036169598031207 0.00354841688290203 21899541 8753857 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.235063424076928 0.921226158996704 0.234699015793088 1 0.00586102194182853 0.185553080893847 22229244 51980771 1443 861 75 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.231352045039388 0.231573322839781 0.231433585107195 0.231860837720302 0.00446105942875234 0.00444542447412974 21878270 8756643 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.231218911923879 0.231780628684925 0.231326771953918 0.231876096742199 0.00363083808680981 0.00330095401711147 21865680 8764482 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.231230290099597 0.231163444884188 0.231189440756847 0.231052109559777 0.00358608321606696 0.0035579326790987 21866756 8741144 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.231216426913383 0.231087017547479 0.231143663691157 0.231189440756847 0.00381780827116311 0.00330467618499774 21865445 8738254 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.231684211633857 0.231336160086974 0.231845578698405 0.231403067063401 0.00502480537596348 0.00479417561605029 21909682 8747675 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.231614863979249 0.231822862060954 0.231540398260472 0.231692988479438 0.00561062836277864 0.00529058498330977 21903124 8766079 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.231742223410797 0.231506521645134 0.231845578698405 0.231250476844434 0.00455359654534729 0.00426877192244575 21915168 8754117 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.231743883609299 0.231598974921652 0.231677729457542 0.231631952391852 0.00405649674406658 0.00389105478435348 21915325 8757613 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.231334438475661 0.231102937705506 0.231296253910124 0.230869001297017 0.0034147449356962 0.00355269514510744 21876605 8738856 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.231388474235808 0.231003899513126 0.231387808041505 0.231067368581674 0.00407598614907274 0.00370765033922618 21881715 8735111 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.231218034239321 0.231730541011663 0.231296253910124 0.231784542610819 0.00471087946525432 0.00471632795494765 21865597 8762588 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.231362386912856 0.232068117120001 0.231448844129091 0.232059205004959 0.00350612446260912 0.00329851441906025 21879248 8775353 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.23137094169367 0.231778116367628 0.231265735866331 0.231555657282368 0.00387617921876821 0.00459057256237359 21880057 8764387 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.231677962096822 0.231362182405078 0.231708247501335 0.231097886625467 0.00394142540352454 0.00379267955602112 21909091 8748659 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.231809413864804 0.232676335914805 0.231799801632715 0.23256275272755 0.00459288751778348 0.00432449238841825 21921522 8798352 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.232363444311258 0.233209978554066 0.232364385442893 0.232837415121691 0.00489528626265816 0.00446921616986857 21973915 8818531 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.232884672619166 0.232119950192648 0.232883192187381 0.232196536202029 0.00456516830099558 0.00451523893013878 22023206 8777313 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.232087396655948 0.232004489378782 0.231891355764096 0.231998168917372 0.00413867684250311 0.00434431812647848 21947810 8772947 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.231487356504523 0.231406161180493 0.231494621194781 0.231555657282368 0.00348803943550747 0.00337152999240674 21891066 8750322 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.23137124835454 0.231089714982892 0.231342030975814 0.231052109559777 0.00370801076120127 0.0038709292925589 21880086 8738356 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.231342253040582 0.231285173268574 0.231250476844434 0.231128404669261 0.00483089640464741 0.00506578221748388 21877344 8745747 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.231746802174818 0.232169350284335 0.231662470435645 0.232196536202029 0.00398466116431236 0.00339385765452122 21915601 8779181 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.232731638270663 0.23367044664638 0.23237964446479 0.232867933165484 0.00529865192344517 0.0064664590786849 22008734 8835943 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.232247674545683 0.232724651743237 0.232181277180133 0.232532234683757 0.00381478201325081 0.00380425472888203 21962967 8800179 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.232883477699225 0.232789390193156 0.232867933165484 0.232913710231174 0.00439503709898811 0.00401861620649759 22023093 8802627 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.233556630031796 0.232515177371585 0.233447775997559 0.23247119859617 0.00449692348142026 0.004399651530716 22086751 8792258 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.23304575417187 0.232362111134604 0.233020523384451 0.23224231326772 0.00400111002030387 0.00384288004700323 22038439 8786470 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.232910992581398 0.232718119718266 0.232959487296864 0.232455939574273 0.00399886333181255 0.00410452248584798 22025695 8799932 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.231792589815021 0.232025037489724 0.231799801632715 0.232181277180133 0.00366330319710868 0.00360400860867013 21919931 8773724 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.231559622724649 0.231592628014797 0.231586175326162 0.231494621194781 0.00347679246438459 0.00349430861296137 21897900 8757373 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.23161086681343 0.231279434606959 0.231692988479438 0.231052109559777 0.0055252394228589 0.00603135824331043 21902746 8745530 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.232215972156462 0.232202988890665 0.232181277180133 0.232150759136339 0.00451199492834011 0.00456469679329859 21959969 8780453 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.232194727960349 0.23233220133605 0.232227054245823 0.232364385442893 0.00479250614477447 0.00454745821289662 21957960 8785339 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.232716442695843 0.233024807546578 0.232578011749447 0.232776379034104 0.00467865511045763 0.00453884516519332 22007297 8811529 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.233461364246441 0.23392128169437 0.233463035019455 0.233981841763943 0.00479530964485033 0.0050565644828156 22077742 8845428 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.233551744606906 0.233976446893116 0.233569848172732 0.233875028610666 0.00471986288486853 0.0046139283023653 22086289 8847514 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.233446062926493 0.234054778301882 0.233279926756695 0.233890287632563 0.00434344284929902 0.00444208799979325 22076295 8850476 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.23295123917692 0.233104064545927 0.232761120012207 0.233081559472038 0.00435666437787913 0.00419679022787322 22029501 8814526 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.232078112233754 0.232156127561721 0.231982909895476 0.232303349355306 0.00399612220588307 0.0039416431862874 21946932 8778681 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.2313498984133 0.230849749012891 0.231311512932021 0.230930037384604 0.00438930096162796 0.00429822538053833 21878067 8729282 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.240531060489861 0.231817096953895 0.232547493705653 0.231601434348058 0.0503250576786883 0.00555500996392095 22746302 8765861 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.232688705748903 0.232446154759539 0.23265430685893 0.232593270771344 0.00432570731571518 0.00419228714951509 22004674 8789648 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.23295335407947 0.232854816224651 0.232898451209277 0.232715342946517 0.00441744512754974 0.00428374653868431 22029701 8805101 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.233529157447674 0.233844299003311 0.233356221866178 0.233493553063249 0.00514927331469814 0.00472353138040089 22084153 8842517 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.233699967552108 0.233699087063563 0.233783474479286 0.233676661326009 0.00594343801772347 0.00634436603519025 22100306 8837026 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.233812723581549 0.234094049788046 0.233737697413596 0.23395132372015 0.00520475170691795 0.00545808971674549 22110969 8851961 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.234192422610825 0.234657443553189 0.234149691004807 0.234531166552224 0.00488274105202786 0.00630561684914891 22146876 8873265 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.232857242333095 0.233249752503689 0.232913710231174 0.233493553063249 0.00503455745842101 0.00497934121995768 22020612 8820035 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.231608699038317 0.232213699295983 0.231631952391852 0.232410162508583 0.00444608130544376 0.00482125556782882 21902541 8780858 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.231012211923176 0.231267534156606 0.230930037384604 0.231265735866331 0.00486117907413009 0.00513270163497687 21846133 8745080 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.23188006218448 0.232275898983159 0.231754024567025 0.23228809033341 0.00472265335071158 0.00437828454981231 21928203 8783210 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.231884122797375 0.232174850936942 0.231967650873579 0.232089723048753 0.00386613949636694 0.00386887921464367 21928587 8779389 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.233578487549648 0.233655134733593 0.233585107194629 0.233585107194629 0.00373614977630672 0.00364316957224767 22088818 8835364 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.233489185789483 0.233189324661343 0.233340962844282 0.232913710231174 0.00428500454303897 0.00386597316238801 22080373 8817750 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.234069451602068 0.234521302401154 0.23404287785153 0.234210727092393 0.00584269711697001 0.006800276469055 22135247 8868117 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.234153212317552 0.234199778678069 0.234012359807736 0.23436331731136 0.00558676223329408 0.00531152634122173 22143168 8855959 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.233531430967915 0.234022356186033 0.233554589150835 0.23404287785153 0.0045272039227539 0.00427806146678711 22084368 8849250 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.23264695757257 0.23290741621521 0.232730601968414 0.232913710231174 0.00443615328491619 0.00426484276286418 22000726 8807090 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.236768170951909 0.23137918682636 0.231967650873579 0.231342030975814 0.0467312634476915 0.00368753617173734 22343907 8749302 1440 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.231381611377034 0.231158975603945 0.231448844129091 0.231250476844434 0.00439789980268516 0.00416175643889927 21881066 8740975 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.232471462958989 0.231809110429436 0.232532234683757 0.231998168917372 0.00439373505054827 0.0042583313466418 21984130 8765559 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.23235744856253 0.232701115296984 0.232349126420996 0.232745860990311 0.00358543338672795 0.00325801992246263 21973348 8799289 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.23366627715449 0.233036311315252 0.233646143282216 0.232669565880827 0.00413067712422924 0.00361165282224011 22097120 8811964 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.233510038728624 0.233616868174348 0.233478294041352 0.233539330128939 0.00404464824214002 0.00375704762762278 22082345 8833917 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.233759702974626 0.233788023095865 0.233539330128939 0.233829251544976 0.00527111198377977 0.00488392317532384 22105955 8840389 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.23411796746656 0.233875187283337 0.233844510566873 0.233829251544976 0.00652297104539307 0.00563726233303033 22139835 8843685 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.233157505622601 0.232367823350773 0.233066300450141 0.232349126420996 0.00413416617607115 0.00396414148507644 22049007 8786686 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.232076399162689 0.232318317477306 0.232104982070649 0.23251697566186 0.00394031929270413 0.00420881249121418 21946770 8784814 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.231198767477092 0.231305985833968 0.231250476844434 0.231342030975814 0.00353296458156234 0.00348675056480639 21863775 8746534 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.230856734862228 0.230731405645494 0.23089951934081 0.230914778362707 0.00441571063500808 0.00408904701465272 21831430 8724807 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.240937164077471 0.932809901031685 0.239826047150378 1 0.00750767155607931 0.152664128038759 22784706 52634391 1443 861 75 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.2342816503494 0.233133947899035 0.233524071107042 0.232928969253071 0.00504913224783367 0.00354321111136101 22155314 8815656 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.232800901329169 0.232621197161505 0.232761120012207 0.232730601968414 0.00389126951569168 0.00379576487507158 22015284 8796267 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.232669322667034 0.232998811673919 0.232486457618067 0.232822156099794 0.00409758382606564 0.00417180520639221 22002841 8810546 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.233339894818494 0.232755566468709 0.233295185778592 0.232684824902724 0.00467008523104204 0.00513516198380096 22066255 8801348 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.233237618131186 0.233450843669205 0.233264667734798 0.233218890669108 0.00448270881430908 0.00410046743244792 22056583 8827639 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.232163871532148 0.232070470764626 0.232028686961166 0.232013427939269 0.00391962530434135 0.00395768559061662 21955042 8775442 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.231951154633691 0.231647211413748 0.231952391851682 0.231555657282368 0.00374689923944944 0.00346514170937283 21934926 8759437 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.231237512491804 0.231153157605994 0.231174181734951 0.231006332494087 0.00346521153097592 0.00339300819091707 21867439 8740755 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.23145599249971 0.231239925111788 0.231448844129091 0.231387808041505 0.004188978219201 0.0036203938557788 21888100 8744036 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.241276605936711 0.938525281992839 0.240405889982452 1 0.00843073015260114 0.142058781925077 22816806 52956885 1443 861 75 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.234399926274497 0.233297565868662 0.233798733501183 0.233432516975662 0.0054736194775532 0.0038924641191703 22166499 8821843 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.232821320713287 0.23201702451982 0.232639047837034 0.231860837720302 0.00452232139337978 0.00415207983517798 22017215 8773421 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.232196250690185 0.231828891622466 0.232349126420996 0.231815060654612 0.00395650654047486 0.00373362667949909 21958104 8766307 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.232343743994007 0.232213805077764 0.232272831311513 0.232043945983062 0.00440148762533456 0.00446775356330164 21972052 8780862 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.232701532632867 0.232200873255047 0.232730601968414 0.2323338673991 0.00436318529317375 0.00420793936610014 22005887 8780373 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.231881468594675 0.231732524420055 0.231799801632715 0.231692988479438 0.00356198290404132 0.00339245308791093 21928336 8762663 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.231732685200298 0.230764145106687 0.231876096742199 0.230457007705806 0.0037627038025522 0.00363446436481824 21914266 8726045 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.231751053128943 0.231145726435885 0.231784542610819 0.231128404669261 0.00377023693527255 0.00382762841873888 21916003 8740474 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.234923565571311 0.963709686209114 0.234744792858778 1 0.00560440833325915 0.110472550443558 22216018 47304379 1443 749 83 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv new file mode 100644 index 0000000..7937d81 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.0240888669362004 0.174367235743116 0.0240482185091936 0.196856641489281 0.00208551961157734 0.0468083532664703 2278012 9838782 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.0234214459895394 0.0235195476136357 0.0233463035019455 0.0234988937209125 0.00162190639710498 0.00167399087204202 2214896 889361 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.0233961411805312 0.0231771584342657 0.0234073395895323 0.0231937132829786 0.00162384774834236 0.00152632616217123 2212503 876414 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.0232172204248194 0.0231475659810553 0.0231937132829786 0.0231479362172885 0.0017277387934469 0.00161585728522469 2195583 875295 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0232396595408726 0.0233001562000222 0.0231937132829786 0.0231631952391852 0.00232707971589014 0.002295057761809 2197705 881065 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0231350458862475 0.0233310709254941 0.0231174181734951 0.0234073395895323 0.00239822377581685 0.00223751343866091 2187812 882234 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.0232530045759618 0.0231683785464499 0.0231784542610819 0.0232089723048753 0.00204894469493615 0.0019543654865017 2198967 876082 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.0233555773496263 0.023327474344943 0.0233310444800488 0.0233768215457389 0.00178582341166955 0.00198346955349576 2208667 882098 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.02334851357511 0.0233986390380522 0.0233310444800488 0.0233615625238422 0.00152679551304958 0.00130179196005166 2207999 884789 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.0238312612311239 0.165718631256875 0.0238040741588464 0.190539406424048 0.001943632465776 0.0556485628892552 2253651 9350779 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.0234306458156309 0.0233369418143347 0.0234073395895323 0.0232394903486687 0.00178962453025226 0.00183125592682466 2215766 882456 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.0232176645543549 0.0231402670381723 0.0231784542610819 0.0231021591515984 0.00143316715002274 0.00145727618899552 2195625 875019 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.0233758698395915 0.023500454002181 0.0233615625238422 0.0234988937209125 0.00142148103251328 0.00135273651163754 2210586 888639 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0232629446179458 0.0235127511342121 0.0232852674143587 0.0234988937209125 0.00149607050981454 0.00138743760888117 2199907 889104 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0233708680950613 0.0232863781230583 0.0233768215457389 0.023270008392462 0.0020001618604449 0.00185787061330199 2210113 880544 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.0233194230905378 0.0235006391202976 0.0233310444800488 0.0234073395895323 0.00219813203163544 0.00226438087284547 2205248 888646 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.0231654581849134 0.0234458970486751 0.0231631952391852 0.0234531166552224 0.00182385143200727 0.00174559940775185 2190688 886576 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.0232968253567933 0.0234061230990518 0.0233005264362554 0.0233157854581521 0.00156364179136731 0.0013977040615763 2203111 885072 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.0234670961610765 0.0234154583412174 0.0234378576333257 0.0233768215457389 0.00145687347491341 0.00144702267889098 2219213 885425 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.0233475618689626 0.0232681307658508 0.0233310444800488 0.0232547493705653 0.00164898564311462 0.00143689697202813 2207909 879854 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.0234211076051314 0.0233045461439301 0.023422598611429 0.0233463035019455 0.00187050923800948 0.00185517264679196 2214864 881231 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.0232833428530384 0.0234102750339526 0.023270008392462 0.0234073395895323 0.00136311086294054 0.00134893770080216 2201836 885229 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.0233693770887637 0.0234626370155046 0.0233310444800488 0.0235141527428092 0.00157612594040826 0.00172777150629272 2209972 887209 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0233482809358296 0.023440555068739 0.0233920805676356 0.0234378576333257 0.00154121323344125 0.00154211622056712 2207977 886374 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.02328054060716 0.0232658829030064 0.023224231326772 0.0231326771953918 0.00183541967405321 0.00170525246328583 2201571 879769 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.0234342940225293 0.0235085991993113 0.0234531166552224 0.0235446707866026 0.00189185468771062 0.00193604294039383 2216111 888947 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.0234748578534342 0.0234539100185792 0.0234683756771191 0.0234988937209125 0.00182600053997456 0.00176768863934043 2219947 886879 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.0233465255667133 0.0234349486343506 0.0233310444800488 0.0234988937209125 0.00169903319976579 0.00163563656149402 2207811 886162 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.023356729971516 0.0234477482298411 0.0233768215457389 0.0235446707866026 0.00133737776159417 0.00129642972976158 2208776 886646 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.0232981365963742 0.0232735256366774 0.0233157854581521 0.023270008392462 0.00138572909528127 0.00154082279618791 2203235 880058 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.0234545019163925 0.0232076764780591 0.023422598611429 0.0231631952391852 0.00195357084519607 0.002134816655933 2218022 877568 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.0234060917970279 0.023370924211453 0.0233310444800488 0.0234073395895323 0.00153985294244478 0.00136856515681643 2213444 883741 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.0235233737179263 0.0233412259764617 0.0234378576333257 0.0233157854581521 0.00170307639571183 0.00158133544331162 2224535 882618 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0234535607847579 0.0232638730491691 0.0233920805676356 0.023270008392462 0.0015957224726057 0.00154426551886594 2217933 879693 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.0234273677166788 0.0236109430723446 0.0234531166552224 0.0235904478522927 0.00172013235853366 0.00159890272021172 2215456 892817 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.0234267861184776 0.0235707724410429 0.0233768215457389 0.0235294117647059 0.00172359586449718 0.00152673931083886 2215401 891298 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.0234197117694486 0.0237538013674675 0.0233768215457389 0.023773556115053 0.00159736503061899 0.00155317415894906 2214732 898219 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.0233589717682187 0.0235158452513038 0.0233157854581521 0.023575188830396 0.00155166435809851 0.00164275670751493 2208988 889221 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.0233599128998534 0.0233735423105306 0.0233920805676356 0.0233463035019455 0.00143682907449405 0.00138730922613866 2209077 883840 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.0233474561238352 0.0232532155347421 0.0233157854581521 0.023224231326772 0.00153248809968203 0.0015139939054398 2207899 879290 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.0232992257711873 0.0232940737476197 0.0232547493705653 0.0231479362172885 0.00216447562630667 0.00252738281217655 2203338 880835 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.0232704630965102 0.023417388858719 0.0232089723048753 0.0234073395895323 0.00173069022593176 0.00174873057133865 2200618 885498 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.0233844880674819 0.0234359800067145 0.0233310444800488 0.0234073395895323 0.00177420494769418 0.00174064143120858 2211401 886201 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.0235116148597494 0.0235840744999927 0.0234531166552224 0.0234836346990158 0.00183591629395131 0.00180059286000933 2223423 891801 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.0233550274749634 0.0233917896677381 0.023270008392462 0.0233463035019455 0.00196630879431542 0.00190127789248088 2208615 884530 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.0233949462605906 0.0234158021320053 0.0233920805676356 0.0234378576333257 0.00185182548400981 0.00177513959647814 2212390 885438 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.0235953332771827 0.0235560158826055 0.023575188830396 0.0235446707866026 0.00167977682063734 0.0016123838196289 2231340 890740 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.0234882769101126 0.0235430311689984 0.0234683756771191 0.0234378576333257 0.0017423557825763 0.00171846820223237 2221216 890249 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.0233324614647572 0.0236037499112425 0.023270008392462 0.0236514839398795 0.00163375885009734 0.00170735710863348 2206481 892545 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.0234261727967381 0.0232416853206226 0.0234836346990158 0.023224231326772 0.0017368738833249 0.0018025342592271 2215343 878854 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.0242534909506757 0.0233389252227268 0.0235141527428092 0.0233615625238422 0.00547176309863061 0.00213341470107112 2293580 882531 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.0234162010312159 0.0233735952014211 0.0234073395895323 0.0232547493705653 0.00168967965221801 0.00155902528964614 2214400 883842 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.0237137995435089 0.0235522606293831 0.0237277790493629 0.0235446707866026 0.00166597845039161 0.0016528551670362 2242543 890598 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.0235419637113389 0.0235536093470897 0.0235599298084993 0.0234836346990158 0.00196247393738698 0.00194803876006071 2226293 890649 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.0235714771764211 0.0236185858060155 0.0235599298084993 0.023575188830396 0.00237074036097863 0.00244184262863502 2229084 893106 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.0235532361419292 0.0234936310773121 0.0234836346990158 0.0234378576333257 0.00208867652436675 0.0022372565511234 2227359 888381 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.0235840079740286 0.0235011415837569 0.0235599298084993 0.0233157854581521 0.00196482443883865 0.00220687563764239 2230269 888665 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.0234988619973742 0.0232530039711803 0.0234836346990158 0.023270008392462 0.00205171505341608 0.00196431229626117 2222217 879282 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.0235388230810524 0.023547156658454 0.0235599298084993 0.0234531166552224 0.00177311627884972 0.00182435076132084 2225996 890405 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.0233017107816833 0.0234959847219374 0.023270008392462 0.0235446707866026 0.00201112215654362 0.00208734396868237 2203573 888470 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.0235105891320128 0.0235418146785179 0.0234836346990158 0.023575188830396 0.00184818058081474 0.00175905852426772 2223326 890203 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.0234586999979538 0.02333813185937 0.0234836346990158 0.0233157854581521 0.00151308293816996 0.00159124780386613 2218419 882501 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.0235790379530366 0.0236976841326932 0.0235141527428092 0.0237277790493629 0.001416742464151 0.00145136262889872 2229799 896097 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.0235399439794038 0.0235785738473852 0.0235294117647059 0.0236209658960861 0.00162256017411889 0.00147333167586763 2226102 891593 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.0235101767260156 0.0233597113426762 0.0235141527428092 0.0232852674143587 0.00229522261687324 0.00230892250250458 2223287 883317 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.0236480683722616 0.0236084572004931 0.0236209658960861 0.0235141527428092 0.00210900889412075 0.00195689998356048 2236327 892723 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.0235952381065679 0.0235075149360569 0.0235599298084993 0.0235446707866026 0.00179875197019106 0.00166311653899469 2231331 888906 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.0235224643098298 0.0236601580459143 0.0234988937209125 0.0236514839398795 0.00170435074156866 0.00174583330368746 2224449 894678 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.0246909585430986 0.0233386607682746 0.0235141527428092 0.0232547493705653 0.0133492402025632 0.00152529676632273 2334950 882521 1443 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.0234148580680968 0.0233887484415369 0.0233768215457389 0.0234073395895323 0.00176478357821664 0.00176647856359627 2214273 884415 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.0234837615931688 0.02354147088773 0.0235141527428092 0.0235141527428092 0.00178308863977875 0.00186796311058998 2220789 890190 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.0234783262936158 0.0235045266007461 0.023422598611429 0.0234378576333257 0.00139657100213461 0.00140414967635351 2220275 888793 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.0234915655835775 0.0236553185294375 0.0234988937209125 0.0236209658960861 0.0014437872734616 0.00149508330697697 2221527 894495 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.0234707337934621 0.0236485220500139 0.0234531166552224 0.0236057068741894 0.00161892055440532 0.0016985079409516 2219557 894238 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.0235410754522679 0.0233180597664418 0.0234988937209125 0.0232547493705653 0.00204787236551608 0.00201391611766799 2226209 881742 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.0235441209119396 0.0235446707866026 0.0234683756771191 0.0234988937209125 0.00222383596149721 0.00227711844848854 2226497 890311 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.0235173250966339 0.0234681112226668 0.0234836346990158 0.0234073395895323 0.00167818272132037 0.00160633718940635 2223963 887416 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.0233394935157352 0.0234943715497785 0.023270008392462 0.0234683756771191 0.00154413112753055 0.00151879512855105 2207146 888409 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.0234074030366088 0.023458167735261 0.0234073395895323 0.0234836346990158 0.00134400980439284 0.00144166544068139 2213568 887040 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.0234851680033644 0.0231644646205561 0.0234836346990158 0.023224231326772 0.00176591832369996 0.00160543812290444 2220922 875934 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.0244710298269465 0.1618235754015 0.0244754711223011 0.178820477607385 0.00185972039492138 0.0503449783607916 2314152 9130998 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.0236200564879897 0.0234965665217324 0.0235446707866026 0.0234073395895323 0.0014535167082617 0.00130283667059929 2233678 888492 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.0234357321562632 0.0233749703645729 0.0234531166552224 0.023422598611429 0.00142917312996509 0.00156280428182271 2216247 883894 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.0235980192034209 0.0236572490469392 0.0235446707866026 0.0236209658960861 0.00170225389625803 0.00161254618650198 2231594 894568 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.0234381854432209 0.0233678036489161 0.023422598611429 0.0233157854581521 0.00192577727218204 0.00200231649025042 2216479 883623 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.0234674028219462 0.0235893900344835 0.023422598611429 0.0235294117647059 0.00175740992897726 0.00164148579049812 2219242 892002 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.0233491691949005 0.0236025598662072 0.0233463035019455 0.0236362249179828 0.00151447733642775 0.00150882233763346 2208061 892500 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.0232702727552808 0.0233029594172164 0.0233005264362554 0.0233463035019455 0.001457052318149 0.00148428108416514 2200600 881171 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.0232421551258814 0.0236355108909616 0.0232547493705653 0.0236057068741894 0.00138511853745115 0.00131058039378217 2197941 893746 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.0234200078558055 0.0232586897419044 0.0234836346990158 0.0232089723048753 0.00156343107251163 0.00152526293856403 2214760 879497 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.0244528416650184 0.161221207346625 0.0244754711223011 0.178927290760662 0.00205648644323577 0.0495609338023199 2312432 9097009 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.0237302957833972 0.0234647262056776 0.0236972610055695 0.0235141527428092 0.00147742494724194 0.00143599474796294 2244103 887288 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.0234415798618133 0.0234877601884714 0.0234531166552224 0.023422598611429 0.0017308212321368 0.00158329579151384 2216800 888159 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.0234319993532628 0.0232923283482347 0.0233920805676356 0.0233920805676356 0.00174695327247079 0.00151196278660652 2215894 880769 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.0233710690108035 0.0231849862860532 0.0233768215457389 0.0230106050202182 0.00173542589159577 0.00200984346235399 2210132 876710 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.0233679706785681 0.0233109723871206 0.0233920805676356 0.0233005264362554 0.00167763957406934 0.0018399460292374 2209839 881474 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.0233034661507996 0.0230917925370689 0.0232852674143587 0.0231021591515984 0.00148083733913324 0.00141831944789892 2203739 873186 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.0234119818006291 0.0231282079151482 0.0233768215457389 0.0231021591515984 0.00150069603525207 0.00147244864775665 2214001 874563 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.0232936001304049 0.0234018918278153 0.0232852674143587 0.023422598611429 0.0015263353493413 0.00144994073515797 2202806 884912 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.0237097600796388 0.182421769755213 0.0236972610055695 0.194506752117189 0.00166556449029086 0.0467434733154341 2242161 8954303 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv new file mode 100644 index 0000000..3e5ee1d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.317867463392755 0.367524796132113 0.317845426108186 0.367986572060731 0.00620013774091582 0.0318243460274577 30059774 20737820 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.317465050310095 0.3174072515262 0.317402914473182 0.317601281757839 0.00492729550637337 0.00465705197978249 30021719 12002341 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.316957780359016 0.316778881302131 0.316853589684901 0.316426337071794 0.00428743261165129 0.00427622404837832 29973748 11978580 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.316671972428438 0.316973096651888 0.31648737315938 0.316975661860075 0.00445112985911122 0.00442183520045416 29946720 11985924 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.317334476226671 0.317243818674689 0.317204547188525 0.317036697947662 0.00597749206235878 0.00600337180536221 30009371 11996161 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.316815806950849 0.316943900880356 0.317036697947662 0.316914625772488 0.00661802684354813 0.0071803686715666 29960322 11984820 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.317304190822158 0.316980712940113 0.317326619363699 0.316838330663004 0.00624648766701539 0.00556505040955773 30006507 11986212 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.317298744948093 0.317325508654999 0.317448691538872 0.317509727626459 0.00595461732327324 0.00561110405378164 30005992 11999250 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.31716779018221 0.317120424227254 0.317204547188525 0.317204547188525 0.00448372206499126 0.00433502392815423 29993608 11991495 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.316636463214628 0.3446699359254 0.316594186312657 0.33829251544976 0.00572591419845666 0.0251512429077455 29943362 19448220 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.317124392381888 0.318471336905849 0.317067215991455 0.318577859159228 0.00528949625135051 0.004870766842807 29989504 12042578 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.317783692102758 0.317671044842351 0.31783016708629 0.317647058823529 0.00412745553718534 0.00404545027739264 30051852 12012316 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.317575257881964 0.31719587308249 0.317509727626459 0.317250324254215 0.00405518969149383 0.00457716588401252 30032141 11994348 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.317313602138505 0.316967834008287 0.317326619363699 0.317006179903868 0.00424425124706316 0.00383913538242858 30007397 11985725 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.317503647281629 0.317514910933724 0.317494468604562 0.317296101319905 0.00510700303930247 0.00449963524908389 30025369 12006412 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.317447115936473 0.3176951630884 0.317097734035248 0.317479209582666 0.00561976476105752 0.00607620192821041 30020023 12013228 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.31770145411711 0.317283301724415 0.317448691538872 0.316884107728695 0.00585738439449483 0.00586964814325294 30044075 11997654 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.317431782892987 0.318216746604636 0.317341878385595 0.318486305027848 0.0055306548276437 0.00534316049554891 30018573 12032951 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.317471786274716 0.317827548987212 0.317341878385595 0.317662317845426 0.00416970225840175 0.0039775972484872 30022356 12018234 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.316639995101886 0.316351998925257 0.316777294575418 0.316197451743343 0.00483613505296572 0.00457861930908998 29943696 11962438 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.317767090117742 0.318545304816152 0.317723353933013 0.318547341115434 0.00569304357068724 0.00587264574646697 30050282 12045375 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.317906938048847 0.318111652405299 0.317891203173877 0.318272678721294 0.00457300927973245 0.00433936090917638 30063507 12028977 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.318029538949658 0.317460486207444 0.317998016327153 0.317647058823529 0.00481225277227162 0.00510267902352631 30075101 12004354 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.318000226400318 0.318265617787418 0.317952239261463 0.318211642633707 0.0042291802698861 0.00413504223308033 30072329 12034799 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.318164205369516 0.318969701321175 0.318120088502327 0.318944075684749 0.0043461826913273 0.00438259623891713 30087836 12061423 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.318294948645143 0.318618955381113 0.31815060654612 0.318364232852674 0.00527447729541552 0.00534388056886014 30100200 12048160 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.318103528815362 0.318225711610569 0.31819638361181 0.317998016327153 0.00531672975000964 0.00519446902910496 30082098 12033290 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.318161455996201 0.318477340021915 0.31815060654612 0.318272678721294 0.00532322481009925 0.00530410434258605 30087576 12042805 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.318011371936755 0.317551881666153 0.31792172121767 0.317677576867323 0.00425750047255278 0.0045568013326525 30073383 12007810 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.317326587640161 0.317081496531878 0.317265583276112 0.316807812619211 0.00433244871706355 0.00442482838749893 30008625 11990023 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.317769078126139 0.317277536617355 0.317845426108186 0.317097734035248 0.00645904355284617 0.00738473089426984 30050470 11997436 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.318113627475037 0.318460705836867 0.31792172121767 0.318440527962158 0.0055101524937701 0.00511871279134811 30083053 12042176 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.319011170968141 0.319727521999635 0.319157701991302 0.319462882429236 0.00543004750194547 0.00568467759073174 30167931 12090079 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.318721503340409 0.318714925901846 0.318684672312505 0.318425268940261 0.0044444218043341 0.00448656762210201 30140538 12051789 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.31838891376543 0.318255753636348 0.318501564049744 0.318226901655604 0.00418452743834326 0.00385039643542205 30109086 12034426 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.318192354722453 0.318585581229235 0.31819638361181 0.318440527962158 0.00499372725314428 0.00470838590553072 30090498 12046898 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.318412124820914 0.317829823295502 0.318348973830777 0.317677576867323 0.00501195626720822 0.00531092854409545 30111281 12018320 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.318262410869415 0.317737211346313 0.318379491874571 0.317769130998703 0.00472223103449178 0.00464524081966611 30097123 12014818 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.31794457273972 0.317977706225218 0.317845426108186 0.317708094911116 0.0042940378406357 0.00389963012719965 30067066 12023912 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.317101900393271 0.317605883265309 0.317235065232319 0.317448691538872 0.00409905017252717 0.00380423745297429 29987377 12009852 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.317839218869203 0.318266781387008 0.317952239261463 0.317952239261463 0.0063727824179233 0.00626138661049926 30057103 12034843 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.31869211676948 0.319227306403143 0.318638895246815 0.318944075684749 0.00514570734594213 0.00486436262095651 30137759 12071164 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.318617947137059 0.318702496542589 0.318654154268711 0.318715190356298 0.00524326840566532 0.00501854598229418 30130745 12051319 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.3186058710435 0.318316921951161 0.318394750896468 0.318120088502327 0.00529496338153995 0.00545185363362648 30129603 12036739 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.318118142791981 0.318399775531061 0.318135347524224 0.318242160677501 0.0056422047095131 0.00589134202391786 30083480 12039872 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.318224448368646 0.318455496084157 0.31815060654612 0.318425268940261 0.0052855912530232 0.00487660625641986 30093533 12041979 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.318703590115813 0.318313484043281 0.318638895246815 0.31810482948043 0.00541582791616236 0.00568595450710625 30138844 12036609 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.31869815481626 0.317619132433368 0.318593118181125 0.317586022735943 0.00531406514870304 0.00538845013801892 30138330 12010353 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.317660403858619 0.31823113292684 0.317601281757839 0.318410009918364 0.00442604039845677 0.00385150411896001 30040193 12033495 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.31772407299988 0.316515934240227 0.317708094911116 0.316533150225071 0.00422694913263702 0.00428729214339217 30046214 11968637 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.327414948896898 0.317697358060354 0.318699931334401 0.317479209582666 0.0573430032641384 0.00500981377251199 30790994 12013311 1435 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.318656237447723 0.318523804669181 0.318730449378195 0.318440527962158 0.00451853471384246 0.0050317115575622 30134366 12044562 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.319031833566052 0.318629083986635 0.319096665903716 0.318532082093538 0.00406221111258853 0.00384904625360526 30169885 12048543 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.318839536051713 0.318372668949702 0.318760967421988 0.318043793392844 0.00492434774810593 0.00476509988961811 30151700 12038847 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.318235403563854 0.318361588308151 0.318089570458534 0.318257419699397 0.00639936627036059 0.00711462433213892 30094569 12038428 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.318140433864856 0.318628026168826 0.31792172121767 0.318715190356298 0.00607209265216231 0.00608745242252124 30085588 12048503 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.318203722323658 0.318683984730929 0.318165865568017 0.318577859159228 0.0053713389525904 0.00553081224200593 30091573 12050619 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.318078149984765 0.318504076367041 0.31810482948043 0.318532082093538 0.0054583808855834 0.00569791492661955 30079698 12043816 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.317801499582227 0.317513773779579 0.317753871976806 0.317708094911116 0.00506014807198148 0.00470921237942858 30053536 12006369 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.317537961575499 0.31756486637976 0.317601281757839 0.317235065232319 0.00508030304684891 0.00545343806418375 30028614 12008301 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.31824542820194 0.31756885964199 0.31805905241474 0.317433432516976 0.00474733947031168 0.00543514923170882 30095517 12008452 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.318063155325687 0.31782551268793 0.317936980239567 0.31796749828336 0.00413012579006455 0.00396555840820611 30078280 12018157 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.318503869293524 0.318363809725551 0.318348973830777 0.318165865568017 0.00409208223263123 0.00389758420416201 30119957 12038512 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.318667922284311 0.318336941153199 0.318745708400092 0.31815060654612 0.00452383551867514 0.00475493540502009 30135471 12037496 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.318278748491612 0.318510264601225 0.318165865568017 0.318440527962158 0.00626662907699775 0.00578905158438916 30098668 12044050 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.318248092979153 0.318227192555501 0.317906462195773 0.31805905241474 0.00678980990472309 0.00677341799904831 30095769 12033346 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.318005249293874 0.318622551961664 0.318043793392844 0.318822003509575 0.00575269743457233 0.0062445071021226 30072804 12048296 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.318371539840984 0.318007007778531 0.318547341115434 0.317723353933013 0.00569967055001945 0.00547958598651322 30107443 12025020 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.320797951608583 0.318370473977748 0.317998016327153 0.318120088502327 0.0308943617221688 0.00499843796462033 30315878 12038764 1442 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.317647365484399 0.317681385011436 0.317723353933013 0.317402914473182 0.00548895898406273 0.00561266741544451 30038960 12012707 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.317421493892082 0.31796406037548 0.317463950560769 0.3177843900206 0.00531420192548466 0.00538741895371525 30017600 12023396 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.317885366042839 0.316953500576973 0.317891203173877 0.316807812619211 0.00414455986125398 0.00393643458374924 30061467 11985183 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.31799819609387 0.317603608957019 0.317860685130083 0.317662317845426 0.00473199882140273 0.00472693977977005 30072137 12009766 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.318647196239323 0.318746475318003 0.318486305027848 0.318638895246815 0.00499715975290213 0.00431673920008753 30133511 12052982 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.318531088089339 0.318131830280008 0.318654154268711 0.318181124589914 0.00594606353610724 0.00605118135440285 30122531 12029740 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.318117476597678 0.318015179421107 0.318120088502327 0.31815060654612 0.00637388454473821 0.00709455235075205 30083417 12025329 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.318278092871821 0.317977573997992 0.318318455786984 0.317906462195773 0.00520250257155486 0.00464407050376079 30098606 12023907 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.318511641560394 0.318706939377387 0.318425268940261 0.318684672312505 0.00528132370079317 0.00541698213487661 30120692 12051487 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.318135241779096 0.318742746510226 0.318318455786984 0.318608377203021 0.00460502225774357 0.00429829498395472 30085097 12052841 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.318165601205198 0.317668241625157 0.317952239261463 0.31787594415198 0.00565142828786912 0.00546341372269459 30087968 12012210 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.316723153070143 0.347310987284414 0.316685740444038 0.343450064850843 0.00510768127227585 0.0233045671416084 29951560 19597243 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.317458409516089 0.317609691409422 0.317372396429389 0.317311360341802 0.00453548841829325 0.0041275907681646 30021091 12009996 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.316953074700843 0.317532682272917 0.316823071641108 0.317708094911116 0.00509468090522105 0.00511862056183391 29973303 12007084 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.317898943717209 0.318211193061138 0.317982757305257 0.318089570458534 0.00506235987910973 0.00534134401123941 30062751 12032741 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.318224638709876 0.317805361258666 0.318135347524224 0.317647058823529 0.00525112349458207 0.0052468543090454 30093551 12017395 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.318398938403516 0.318598777506403 0.318379491874571 0.318715190356298 0.00484395838364434 0.00452885248975087 30110034 12047397 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.318258128191751 0.318193157267493 0.318089570458534 0.318348973830777 0.00453210803619257 0.00447822818562594 30096718 12032059 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.318098410751192 0.317318817957356 0.318089570458534 0.317387655451286 0.00454272178741764 0.00420652793700631 30081614 11998997 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.31743606557065 0.318273630757322 0.317357137407492 0.318287937743191 0.00414351547521982 0.00397245439769161 30018978 12035102 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.317302921880628 0.317776879514155 0.317204547188525 0.317708094911116 0.00513938934691193 0.00512888929387453 30006387 12016318 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.316466054941679 0.346707733107479 0.316334782940414 0.341344319829099 0.0058757373213352 0.0302055467406012 29927247 19563204 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.317065227983058 0.317625241331216 0.317067215991455 0.317753871976806 0.00503001193948663 0.00515944887516165 29983909 12010584 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.317587143634294 0.316738049534699 0.317448691538872 0.316746776531624 0.00602302614323012 0.00557251214264505 30033265 11977036 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.317622303889184 0.317639997889653 0.317555504692149 0.317387655451286 0.00560565239483011 0.00527757347029863 30036590 12011142 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.317998745968533 0.31844367497014 0.318074311436637 0.318745708400092 0.00541961101084495 0.00538579046563205 30072189 12041532 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.318210035307769 0.318185488088376 0.31815060654612 0.318226901655604 0.0046525990265107 0.00436742949572006 30092170 12031769 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.317591288843292 0.317750724968824 0.317509727626459 0.31787594415198 0.00400658904820815 0.00398108586196392 30033657 12015329 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.317775031576817 0.317117277219272 0.317677576867323 0.317250324254215 0.0039806192752016 0.00382638508909344 30051033 11991376 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.317241177300688 0.317493410786753 0.317311360341802 0.317235065232319 0.00422196445347866 0.00387953247546845 30000548 12005599 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.316948707427078 0.352941054235433 0.316746776531624 0.341680018310826 0.00477946614348154 0.0336227329215935 29972890 17324364 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv new file mode 100644 index 0000000..5a552cc --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.0333523092964613 0.0388588626428396 0.0333409628442817 0.0387273975738155 0.0022360421352562 0.00412423397954494 3154028 2192636 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.0333222142331778 0.0334210925433233 0.0333409628442817 0.0334325169756619 0.00186822053065483 0.0018620103748078 3151182 1263775 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.0333717241018683 0.0333386091996564 0.0333409628442817 0.0333104448004883 0.00165418062090945 0.00160563708976968 3155864 1260656 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.033308266450862 0.0334540171226324 0.0333409628442817 0.0334477759975586 0.00177016844316959 0.00176603407928211 3149863 1265020 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0333291828370794 0.033363705927178 0.0332951857785916 0.033325703822385 0.00226816571781533 0.00234229448526009 3151841 1261605 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0334073390608067 0.0334078433752639 0.0333104448004883 0.0332951857785916 0.00251572356274786 0.00274488815693078 3159232 1263274 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.0334277901684631 0.0334551542767772 0.0333714808880751 0.0334019989318685 0.00248387968353054 0.00240500982887102 3161166 1265063 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.0334163273966433 0.0334168612720867 0.0334019989318685 0.0333867399099718 0.00226098819357417 0.00232965881047697 3160082 1263615 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.0332583970487381 0.033308091155863 0.0332494087129015 0.0332341496910048 0.00175964847763049 0.00146146243046548 3145147 1259502 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.0332732965372013 0.0364544058742095 0.0332341496910048 0.0360570687418936 0.00218123941092438 0.00362502909685816 3146556 2056963 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.0334466022266434 0.0335519446063126 0.0334172579537652 0.0335393301289387 0.00211424359084716 0.00193981719034346 3162945 1268723 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.0334904970290642 0.0333973709789535 0.0334477759975586 0.0334325169756619 0.00154512167603554 0.00148068458801857 3167096 1262878 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.033438745363671 0.0335807965870566 0.0334477759975586 0.0335851071946288 0.00150339728734034 0.00165375882059932 3162202 1269814 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0335226329733082 0.0335816957321944 0.0334935530632486 0.0336461432822156 0.00167408209836831 0.00153898658957378 3170135 1269848 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0333105505456158 0.0331821050547956 0.0332341496910048 0.0330968184939345 0.00186540170560972 0.00187390586946 3150079 1254738 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.033318544877254 0.0333337696831796 0.0332799267566949 0.0332799267566949 0.00217614802831293 0.00223622851947898 3150835 1260473 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.0334188441306775 0.0334486222518059 0.0334172579537652 0.0334172579537652 0.00226970538551961 0.00217003166809979 3160320 1264816 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.0334947479831893 0.0332755897036775 0.0334630350194553 0.0331883726253147 0.00203974370176519 0.00203593641530037 3167498 1258273 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.033463341680325 0.033530444459342 0.0334477759975586 0.0335545891508354 0.00163910936752821 0.00147598038228673 3164528 1267910 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.0333214105702089 0.0331499473933981 0.0333104448004883 0.0330968184939345 0.00194185255293519 0.00182420160249046 3151106 1253522 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.0334087031729513 0.0335309204773562 0.0334477759975586 0.0334172579537652 0.00213767472877264 0.00236852074776111 3159361 1267928 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.0334829996995252 0.0332308969012417 0.0334630350194553 0.0332494087129015 0.00167170203378284 0.001623157837158 3166387 1256583 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.0334973493133255 0.0334098003382108 0.0334477759975586 0.0333104448004883 0.00182832552497033 0.00188950608237531 3167744 1263348 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0334362920767132 0.0335655375651599 0.0334172579537652 0.0335851071946288 0.00159014037863461 0.00153505461036937 3161970 1269237 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0333445370295908 0.0335067228949723 0.0333409628442817 0.0334477759975586 0.00170065660287565 0.00167327432663347 3153293 1267013 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.0333954427339641 0.0336342428318629 0.0334019989318685 0.0336308842603189 0.00212707549359655 0.00202163485522641 3158107 1271835 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.0332876990235654 0.0334538055590706 0.0332494087129015 0.0335393301289387 0.00204736435702243 0.0020437772014314 3147918 1265012 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.0333213894211834 0.0333429462526738 0.0333104448004883 0.0332951857785916 0.00203142327164001 0.00212854132540891 3151104 1260820 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.0333136488778512 0.033251207003177 0.0333104448004883 0.0332646677347982 0.00160491146043466 0.00160725311948814 3150372 1257351 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.0334230527867516 0.0334897184736906 0.0334477759975586 0.0334630350194553 0.00171136345034678 0.00177808600020496 3160718 1266370 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.0334376561888578 0.0334028187406705 0.0334172579537652 0.0333104448004883 0.00251218379216204 0.00279898771646961 3162099 1263084 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.0333667752299018 0.0333419148803099 0.0332951857785916 0.033325703822385 0.00204873920856616 0.00197389503292225 3155396 1260781 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.0336193368923971 0.0335271387786885 0.0336003662165255 0.0334019989318685 0.00195691280688874 0.00213029607072143 3179280 1267785 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0334698767292038 0.0335937284097732 0.0334630350194553 0.0336156252384222 0.00171766431176401 0.00174140671098852 3165146 1270303 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.0335104934326724 0.0334477495521133 0.0335088120851453 0.0333562218661784 0.00160044663751826 0.00150241572964355 3168987 1264783 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.0334869016947296 0.033702498525997 0.0334477759975586 0.0336614023041123 0.0019467105232143 0.00188344142210904 3166756 1274416 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.0332819782121682 0.0333501129683307 0.033325703822385 0.0334477759975586 0.00199560535031354 0.00192421680436016 3147377 1261091 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.0334415476095494 0.0334200611709594 0.0334019989318685 0.0333714808880751 0.00184136104731555 0.00175745619446831 3162467 1263736 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.0334746669834791 0.033424186660415 0.0334935530632486 0.0334630350194553 0.00169292682121786 0.00160725500837967 3165599 1263892 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.0334538880659274 0.033406573993893 0.033524071107042 0.0333104448004883 0.00153546691640375 0.00166794735557896 3163634 1263226 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.0333611601636321 0.0333387149814373 0.0333714808880751 0.0333562218661784 0.0023723853953224 0.00268336480097552 3154865 1260660 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.0334480192113518 0.0335620203209446 0.0333714808880751 0.0334935530632486 0.00198536122886299 0.00189784233805175 3163079 1269104 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.033657500308908 0.0333371018092784 0.0336614023041123 0.0334477759975586 0.00189676020679142 0.00187436894982794 3182889 1260599 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.0336455511095017 0.0334849582935495 0.0336461432822156 0.0334019989318685 0.00199857209386085 0.00199767126890849 3181759 1266190 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.0335032816149777 0.0334974405436972 0.0334172579537652 0.0335088120851453 0.00211725546859537 0.00216801396831244 3168305 1266662 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.0334959640521554 0.0336212316728106 0.0334325169756619 0.0336308842603189 0.00198650325018616 0.00180300511150921 3167613 1271343 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.0336334115688659 0.0333979527787485 0.0335851071946288 0.0334172579537652 0.00211075236094688 0.00224348450560972 3180611 1262900 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.0332982523872888 0.0333811599210286 0.0332799267566949 0.0334019989318685 0.00199690080132925 0.00200645957600213 3148916 1262265 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.0335060944353689 0.03323301253686 0.0334935530632486 0.0331425955596246 0.00162394181701527 0.00157012087113167 3168571 1256663 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.0334442123867622 0.0331890073160002 0.0334325169756619 0.0330968184939345 0.00162902062279371 0.00165467897155078 3162719 1254999 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.0352592006059619 0.0334468768524208 0.0337224383916991 0.0334477759975586 0.011942144692824 0.00192551023868011 3334357 1264750 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.0335443530224945 0.0334665787091158 0.0334782940413519 0.0334630350194553 0.0018084086907219 0.00183600224110428 3172189 1265495 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.0335597495130569 0.0335770677792794 0.0335088120851453 0.0336308842603189 0.00153815291345541 0.00150960968334841 3173645 1269673 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.0336005036851913 0.0336089609862247 0.0336003662165255 0.0337071793698024 0.00193088000121506 0.00190385056111028 3177499 1270879 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.0335061790314709 0.0336263091982944 0.0335545891508354 0.0336156252384222 0.00241136011439695 0.00273709079299584 3168579 1271535 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.033536749947828 0.0333923992352506 0.0334935530632486 0.0333714808880751 0.00237563008480979 0.0022786666295896 3171470 1262690 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.0332788164328563 0.0335550651688495 0.0332341496910048 0.0336003662165255 0.00215043572670006 0.00207257562938011 3147078 1268841 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.0334802186026723 0.033622315936065 0.0334172579537652 0.0336308842603189 0.0020927445626024 0.0020656563594711 3166124 1271384 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.0333331800028985 0.0334053575034125 0.0332951857785916 0.0334019989318685 0.00195179023892046 0.00180796229693224 3152219 1263180 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.0333064582091819 0.0332963493781816 0.0332799267566949 0.0331425955596246 0.00188004754452157 0.00195106683581803 3149692 1259058 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.0334835389996754 0.0334569261216075 0.0334782940413519 0.033524071107042 0.001865969039324 0.00189145794566419 3166438 1265130 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.0334402152209431 0.0332957940238318 0.0334935530632486 0.0332799267566949 0.00150333654579202 0.00158912844276071 3162341 1259037 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.0336789242717373 0.0336217341362699 0.0337071793698024 0.0336461432822156 0.00160139490881349 0.00155425415612135 3184915 1271362 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.0335601936425924 0.033688482440026 0.0335393301289387 0.0337071793698024 0.00170519565667357 0.00175354963134159 3173687 1273886 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.0335112970956413 0.0333437925069211 0.033524071107042 0.0333409628442817 0.0023835228495831 0.00222655662041708 3169063 1260852 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.0335426399514292 0.0335068551221984 0.0335088120851453 0.0335088120851453 0.00259459277734746 0.00255608511334316 3172027 1267018 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.0334244168988962 0.0334953249080789 0.0334477759975586 0.0334935530632486 0.00217243710044842 0.00241858892150984 3160847 1266582 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.0333978114248199 0.0334089276385183 0.0332799267566949 0.0333409628442817 0.00210386802627168 0.0021723698170924 3158331 1263315 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.0338106086789996 0.0333248311226925 0.0335393301289387 0.0332799267566949 0.00445054349776226 0.00190625803754591 3197368 1260135 1443 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.0333913609720431 0.0335756926161276 0.0334019989318685 0.0336156252384222 0.00209157217777838 0.00214859021145016 3157721 1269621 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.0335500315358406 0.0333664562534817 0.0335545891508354 0.0332646677347982 0.00196135959464134 0.00204612755939164 3172726 1261709 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.0333044913498107 0.0333525723947369 0.0332494087129015 0.0332951857785916 0.00161652915638742 0.00150722811162307 3149506 1261184 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.0332857321641941 0.0333249369044734 0.0333409628442817 0.0332799267566949 0.00178267821794737 0.00196433438945842 3147732 1260139 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.0334038811951378 0.0335151589920001 0.0333409628442817 0.033524071107042 0.00184389447690897 0.00185654252163431 3158905 1267332 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.0334610152875202 0.0334703604077835 0.0334935530632486 0.0333562218661784 0.00240301693219328 0.00216606752545097 3164308 1265638 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.0332654079506906 0.0333102861278169 0.0332036316472114 0.0332646677347982 0.00243352000511274 0.00255191829878784 3145810 1259585 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.0333078540448648 0.0335831237862367 0.0332799267566949 0.033676661326009 0.00207354788255327 0.0018286119756074 3149824 1269902 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.0336193474669098 0.0335591642128599 0.0336308842603189 0.0336308842603189 0.00202863603372653 0.00197863297379988 3179281 1268996 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.0333367647627204 0.0335754017162301 0.0333409628442817 0.0335545891508354 0.00173051876543037 0.00173758199325096 3152558 1269610 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.0332985061755948 0.033449336278827 0.033325703822385 0.0334019989318685 0.00206561877113885 0.00215857090887086 3148940 1264843 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.0332500220346409 0.0363943799657726 0.0332188906691081 0.0361486228732738 0.00194752723704798 0.00316678952295929 3144355 2053576 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.0333988371525565 0.0332954237875986 0.0333409628442817 0.0331883726253147 0.00170883686322541 0.00175580822926557 3158428 1259023 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.0333996725390637 0.0333915000901129 0.0334019989318685 0.033325703822385 0.00188513125928566 0.0019873114386383 3158507 1262656 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.0334397605168949 0.0332983327865738 0.0334630350194553 0.0332951857785916 0.00206845952278876 0.00195379542721302 3162298 1259133 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.033472774145697 0.0337184186840244 0.0334477759975586 0.0336003662165255 0.00206952052601091 0.00207802461075917 3165420 1275018 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.0334125205720536 0.0335659871377288 0.0333562218661784 0.033524071107042 0.00186876623436028 0.00167384082762859 3159722 1269254 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.0333529754907645 0.033540176383186 0.0334019989318685 0.0336156252384222 0.00167174556081304 0.00161321077401309 3154091 1268278 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.0334568383549844 0.0331709186314641 0.0334325169756619 0.033173113603418 0.00161316545921428 0.0016269137375304 3163913 1254315 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.0334497217079044 0.0333031194121601 0.0333867399099718 0.0332951857785916 0.00150357865837511 0.00164338679839029 3163240 1259314 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.033370180223007 0.0333172412799119 0.033325703822385 0.0332951857785916 0.00203057826942264 0.00190381734625246 3155718 1259848 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.0331955950175222 0.0363978181193707 0.0332036316472114 0.0359502555886168 0.00222802055589764 0.00409558408957087 3139208 2053770 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.0333303037354308 0.0334807005768677 0.0333409628442817 0.0334172579537652 0.00188566133128628 0.00183924298969761 3151947 1266029 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.0335655760695816 0.0333467808422319 0.0335698481727321 0.0331578545815213 0.00208545419040813 0.00222006607610799 3174196 1260965 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.0334816673109189 0.0334829748851573 0.0334172579537652 0.0334477759975586 0.00210740558002349 0.00202461833479057 3166261 1266115 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.0334804512419527 0.033461263174625 0.0334325169756619 0.0334172579537652 0.00200080026884439 0.00211905838554786 3166146 1265294 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.0333753828832794 0.033421991688461 0.0332799267566949 0.0333867399099718 0.00170930635456838 0.00172954936439593 3156210 1263809 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.0334376350398323 0.0333299615390667 0.0334477759975586 0.0333714808880751 0.00151884555568615 0.00148395735289074 3162097 1260329 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.0333997888587039 0.0334803038951893 0.0333409628442817 0.0334172579537652 0.00160991190406561 0.00167036358857668 3158518 1266014 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.0333250482025946 0.0334417464360465 0.0333104448004883 0.0334325169756619 0.00165121614847661 0.00163533343218801 3151450 1264556 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.0332828876202646 0.0372562974788082 0.0332341496910048 0.0363775082017243 0.0018170153207359 0.00403552323562546 3147463 1828752 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv new file mode 100644 index 0000000..0ff0a5e --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.235788909673094 0.932939717913675 0.235080491340505 1 0.00665056461491196 0.167737669573712 22297851 52641716 1443 861 78 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.232252993525596 0.231131287222791 0.232028686961166 0.230823224231327 0.00563572992281072 0.00563527958417575 21963470 8739928 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.232426627024933 0.231534262917179 0.231876096742199 0.231403067063401 0.00795116238627381 0.00543967515604547 21979890 8755166 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.232186659607122 0.232165542140222 0.232349126420996 0.232013427939269 0.00489363984704459 0.00444291361089692 21957197 8779037 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.232962670225202 0.232918734865768 0.232944228274968 0.232959487296864 0.0038089928386495 0.00419150551371427 22030582 8807518 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.233039642103501 0.23314904824826 0.232990005340658 0.233096818493935 0.00368654355015699 0.00374784523554319 22037861 8816227 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.233628452122387 0.23328976446232 0.233524071107042 0.233325703822385 0.0040990924284155 0.00404466082779747 22093543 8821548 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.233769029694871 0.233712706467855 0.233676661326009 0.233508812085145 0.00559072869924725 0.00563608751215009 22106837 8837541 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.234758825237196 0.234470738709877 0.234546425574121 0.234393835355154 0.00605860610901595 0.00582412985261481 22200439 8866205 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.23787066112541 0.940352253014078 0.237491416800183 1 0.0058153826970132 0.149129204869639 22494716 53059973 1443 861 78 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.230845525878714 0.229981835945945 0.230731670099947 0.230197604333562 0.00408235135432767 0.0036765182514796 21830370 8696463 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.23102557810729 0.231153554287673 0.230914778362707 0.23099107347219 0.00420299835754197 0.00400768008368626 21847397 8740770 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.232157029822399 0.231649512167483 0.231998168917372 0.231937132829786 0.00490333790461141 0.00471355345865649 21954395 8759524 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.232980900685181 0.232710397648259 0.233051041428244 0.232684824902724 0.00454893517137061 0.00458166587299091 22032306 8799640 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.233636583922691 0.23280144931618 0.233585107194629 0.232730601968414 0.00360157321754968 0.0035431207266141 22094312 8803083 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.233762367751839 0.234016088615514 0.233600366216526 0.23399710078584 0.00362180929916404 0.00405855336168595 22106207 8849013 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.233791870642409 0.234248200288282 0.233676661326009 0.234164950026703 0.00375242432500402 0.00352782490953066 22108997 8857790 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.234604130690192 0.234725805029104 0.234561684596017 0.234790569924468 0.00465087180519212 0.00412522858236621 22185810 8875850 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.234570345121959 0.234641391167935 0.234393835355154 0.234927901121538 0.00517249590646424 0.00537244126457608 22182615 8872658 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.234754680028198 0.234721388639751 0.234744792858778 0.234546425574121 0.00448563237095713 0.00435537859907896 22200047 8875683 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.230695780203677 0.230782630472901 0.230838483253223 0.231052109559777 0.00447339977790196 0.00429706369630803 21816209 8726744 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.231597447756752 0.231520722849222 0.231464103150988 0.231342030975814 0.004453428165498 0.00409716519599239 21901477 8754654 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.232595396248406 0.232546382996954 0.23270008392462 0.232578011749447 0.00471637961430966 0.00437629745983445 21995850 8793438 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.233445534200856 0.233314067826485 0.233340962844282 0.233142595559625 0.00474887653861329 0.00480190875002849 22076245 8822467 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.234175736029707 0.233630143787853 0.23408865491722 0.233585107194629 0.00368923275713807 0.00342279408232796 22145298 8834419 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.235334702626989 0.234707055208437 0.235004196231022 0.234805828946365 0.00668444057168462 0.00430441114194888 22254898 8875141 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.235152683539042 0.234737731924902 0.235141527428092 0.234790569924468 0.00383098791579074 0.00409147030177748 22237685 8876301 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.235096215640963 0.235625055948645 0.235126268406195 0.235263599603265 0.00438292415494999 0.00460923222504994 22232345 8909854 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.235551564734444 0.234925864822256 0.235461966887922 0.234729533836881 0.00510901347834195 0.00453038399433374 22275406 8883415 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.235318925453968 0.235273490199781 0.235294117647059 0.235263599603265 0.00425563200812247 0.00434051103511435 22253406 8896560 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.231212694110382 0.231136206075603 0.231250476844434 0.231174181734951 0.00449808045504575 0.0047899501088611 21865092 8740114 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.232214724363958 0.232067984892775 0.232196536202029 0.232227054245823 0.00445104982772562 0.004370598310533 21959851 8775348 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.232822388739074 0.233064713723427 0.232791638056001 0.233310444800488 0.00477689066770947 0.00491928120375539 22017316 8813038 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.23370890301538 0.233731324061296 0.233783474479286 0.233707179369802 0.00525743603786172 0.00549322615121165 22101151 8838245 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.234654306753185 0.234472457663817 0.234561684596017 0.234210727092393 0.00464463257209378 0.00382638097943039 22190555 8866270 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.235278160707321 0.235676598121395 0.235156786449989 0.235614557106889 0.00553100529328143 0.00421743537737286 22249551 8911803 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.235887591026067 0.23647728686657 0.235965514610513 0.236408026245518 0.00402663347374008 0.00402264531413458 22307183 8942080 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.23608017405225 0.235803060240476 0.236057068741894 0.23607232776379 0.00433272992567847 0.0041391795858013 22325395 8916585 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.235426383652522 0.236236025069753 0.235355153734646 0.235873960479133 0.00434494881804425 0.00448559067424878 22263568 8932957 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.236056719782973 0.235716742307251 0.23593499656672 0.235584039063096 0.00384769713422788 0.00343364443869569 22323177 8913321 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.231632237903696 0.231899686079342 0.231570916304265 0.231555657282368 0.00535516233989216 0.00546176667573625 21904767 8768984 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.232649939585165 0.232951950344974 0.23260852979324 0.232730601968414 0.00516127092505986 0.00489971550111771 22001008 8808774 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.233528501827884 0.233673408536246 0.233600366216526 0.233585107194629 0.00595133898404823 0.00636646387206211 22084091 8836055 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.233863629285923 0.23390099803788 0.233676661326009 0.233875028610666 0.00588758892993137 0.00605996333135234 22115783 8844661 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.235005243107784 0.235237497948825 0.235156786449989 0.235400930800336 0.00446148087482073 0.00484864199506448 22223742 8895199 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.236104812666955 0.236160126641948 0.235812924391546 0.2360265506981 0.00446488635970463 0.0048106735113733 22327725 8930087 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.235562065225604 0.236445790341304 0.235950255588617 0.236392767223621 0.00532149525505513 0.00519893780854149 22276399 8940889 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.23594688231905 0.236421248968132 0.23579766536965 0.236270695048447 0.00544384912336475 0.00530654412955341 22312790 8939961 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.235924041371512 0.235948642416458 0.235828183413443 0.235584039063096 0.00501085207100661 0.0049119483047116 22310630 8922090 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.236082394699927 0.236472130004751 0.23593499656672 0.236362249179828 0.0046686264272475 0.00459058979236971 22325605 8941885 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.232289190082736 0.23198394126784 0.23224231326772 0.231830319676509 0.00522428161728119 0.00520624292188196 21966893 8772170 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.232909639043766 0.232846274345842 0.232852674143587 0.232623788815137 0.00553560505198209 0.00518749870061479 22025567 8804778 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.23357995740692 0.233585027858293 0.233478294041352 0.233585107194629 0.00569642478868683 0.00621089999031033 22088957 8832713 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.234104358068652 0.234073104995426 0.234195468070497 0.234103913939117 0.00500632005903978 0.00515809638556169 22138548 8851169 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.235299246285742 0.235458978552612 0.235248340581369 0.235461966887922 0.00387894735166171 0.00389659343149324 22251545 8903574 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.236535998998805 0.236605177039694 0.236362249179828 0.236530098420691 0.00440689098873668 0.00375428826094476 22368501 8946916 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.237459344303016 0.234479439261358 0.236285954070344 0.234592202639811 0.00954235778665202 0.00482145067527177 22455819 8866534 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.236830583774965 0.386897501960386 0.236865796902419 0.37625696192874 0.00599071551996696 0.0469548854214189 22396359 10674593 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.236382869479688 0.23675938043082 0.236240177004654 0.236621652552071 0.00522794492148941 0.00590841085189284 22354020 8952747 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.23577631542841 0.236221109838644 0.235645075150683 0.236285954070344 0.00496751617666447 0.00512043866341039 22296660 8932393 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.232770140071582 0.23252850587598 0.232776379034104 0.232806897077897 0.00403038724990628 0.00367587944777544 22012375 8792762 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.233189271458898 0.232799492353233 0.233218890669108 0.232669565880827 0.00437842582002368 0.00447253909924231 22052011 8803009 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.233585932006623 0.233101975355754 0.233508812085145 0.233112077515831 0.00517947587593576 0.00548494218189952 22089522 8814447 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.234904605469952 0.234925494586022 0.234454871442741 0.234622720683604 0.00535111700105358 0.00484817640741933 22214225 8883401 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.235584620661297 0.234995151888754 0.235584039063096 0.234821087968261 0.00382655396966321 0.00381416174303248 22278532 8886035 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.236032102317293 0.236346117458238 0.236011291676204 0.236591134508278 0.00378315961447439 0.00349634064728674 22320849 8937120 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.236407423498291 0.236705828404233 0.236270695048447 0.236911573968109 0.00400055873901356 0.00372141617749451 22356342 8950722 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.236823319084706 0.236766520701032 0.236865796902419 0.236987869077592 0.00555806589692831 0.00551878083762071 22395672 8953017 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.236245918965077 0.235940920346451 0.236041809719997 0.23588921950103 0.0057165625487589 0.00577268593682691 22341069 8921798 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.235631106219342 0.235558122526772 0.235553521019303 0.235523002975509 0.00461703574746126 0.0039688596871656 22282928 8907323 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.232780344476385 0.232910219432404 0.233020523384451 0.232944228274968 0.00427639011499543 0.00446020619574804 22013340 8807196 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.233649326210553 0.234248967206193 0.233646143282216 0.234073395895323 0.00464485449382993 0.00460180923836987 22095517 8857819 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.234133353382609 0.233941221560072 0.23404287785153 0.233630884260319 0.00493092099812411 0.00498095061541553 22141290 8846182 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.234348883101458 0.233792333703437 0.234500648508431 0.233768215457389 0.00452526427507552 0.00453685758616883 22161672 8840552 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.235073924568088 0.234585141705935 0.235065232318608 0.234668497749294 0.0035402251165556 0.00336038959149183 22230237 8870531 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.235974101114866 0.235400216773315 0.236011291676204 0.235370412756542 0.00374661120643507 0.00355251715133967 22315364 8901352 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.236166123691873 0.236563313899898 0.236209658960861 0.236362249179828 0.00423532396758583 0.00410964204105424 22333523 8945333 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.236308646974703 0.236171101501718 0.236377508201724 0.236057068741894 0.00498386475081131 0.00435566359649134 22347001 8930502 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.235814383674306 0.235696035523638 0.23566033417258 0.23584344243534 0.00521077089805102 0.00545343253693676 22300260 8912538 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.235213624456014 0.235075149360569 0.235233081559472 0.235049973296712 0.00411075420581243 0.00426842678665431 22243448 8889060 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.238541127531743 0.976549592890722 0.238056000610361 1 0.00576855504903406 0.0836955756968172 22558120 47934635 1443 749 86 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.234670855865637 0.234393835355154 0.234500648508431 0.234378576333257 0.00456447530816175 0.00410631632787916 22192120 8863297 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.234478357435556 0.234437602567006 0.234454871442741 0.234622720683604 0.00464291170729348 0.00446657011214229 22173916 8864952 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.233924961459866 0.233876721119161 0.233890287632563 0.233478294041352 0.00421227351838163 0.00497541534266321 22121583 8843743 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.234088750087835 0.234505567361243 0.234149691004807 0.234393835355154 0.00349169171725306 0.00342652469971779 22137072 8867522 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.234759322239295 0.235318024329545 0.234775310902571 0.235355153734646 0.00374703075883208 0.00371331135819222 22200486 8898244 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.23530247151213 0.235290706184624 0.235202563515679 0.235233081559472 0.00421943767175049 0.00385705445065811 22251850 8897211 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.235920668101945 0.235518851040608 0.235950255588617 0.23566033417258 0.00467527132142127 0.00499255922113799 22310311 8905838 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.235465932330203 0.236197044483487 0.235233081559472 0.2360265506981 0.00438503127848657 0.0041434643664886 22267308 8931483 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.235506073180598 0.234988619863782 0.235523002975509 0.234851606012055 0.00372501496523504 0.00388283546199499 22271104 8885788 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.23863605493269 0.981491458360136 0.238300144960708 1 0.00688043519522747 0.0709084900104364 22567097 48177210 1443 749 87 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.234844066384465 0.233697288773287 0.234760051880674 0.233615625238422 0.00491186655815767 0.00452308313000827 22208500 8836958 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.234248774189264 0.233779534107947 0.234073395895323 0.233936064698253 0.00533654982985493 0.0049582893811923 22152205 8840068 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.233683629929911 0.233260066227328 0.233661402304112 0.233340962844282 0.00494774280470218 0.00523613460640167 22098761 8820425 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.23392478169315 0.23374809047357 0.233859769588769 0.233508812085145 0.00383854963506196 0.00361222115133748 22121566 8838879 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.23436639449457 0.234314261010462 0.234378576333257 0.23399710078584 0.00443936387028621 0.00432839722032764 22163328 8860288 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.234617866982252 0.23489159152524 0.234515907530327 0.234882124055848 0.0044195403786614 0.00446519484671982 22187109 8882119 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.234816308288499 0.234936019873223 0.234821087968261 0.234973678187228 0.00447943396550998 0.00444711832356185 22205875 8883799 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.235130762574113 0.234830502546762 0.234927901121538 0.235034714274815 0.00465030330434124 0.00492492964801778 22235612 8879809 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.239052870501715 0.9831893250409 0.238605325398642 1 0.00516674261347962 0.0626292303482279 22606514 48260551 1443 749 89 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv new file mode 100644 index 0000000..3eb50c7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.0237814235525382 0.147277031087023 0.0237277790493629 0.164049744411383 0.00203136456216323 0.039337299676525 2248938 8310200 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.0235195668933366 0.0232952109017646 0.0236057068741894 0.0233157854581521 0.00216186099367395 0.00235858525179603 2224175 880878 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.0235263663050342 0.0232906093942948 0.0234988937209125 0.0233005264362554 0.00228432737797099 0.00199874838543286 2224818 880704 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.0235123656501546 0.0233310444800488 0.0236057068741894 0.0233768215457389 0.00189439228539774 0.00179044316490501 2223494 882233 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.0234627817598749 0.0233956771481867 0.0234683756771191 0.0233463035019455 0.0015111201242357 0.00161331729583558 2218805 884677 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.0235053653227148 0.0235657478064495 0.0235141527428092 0.0236209658960861 0.0014329587742479 0.00145296192523858 2222832 891108 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.0236281459902426 0.0237006989134492 0.023575188830396 0.0236514839398795 0.00167475831190593 0.00152936719851732 2234443 896211 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.0238163405936352 0.0237217494878509 0.0238040741588464 0.0237277790493629 0.0021405737783399 0.00237179230182628 2252240 897007 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.0237446559717102 0.0239151185833598 0.0236209658960861 0.0238803692683299 0.00238584595122073 0.00229989597227549 2245461 904319 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.0241379538243809 0.149887085896331 0.024124513618677 0.166781109330892 0.00195251425808932 0.0387378857218795 2282654 8457474 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.0233704874126023 0.023205693069667 0.0233768215457389 0.0231174181734951 0.00156785398519075 0.00159366067940804 2210077 877493 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.0233603676039016 0.0234049330540165 0.0233768215457389 0.023422598611429 0.00166885781967333 0.00166878611030018 2209120 885027 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.0234176074414115 0.023453883573134 0.0233920805676356 0.0234836346990158 0.00196014747077397 0.00199850915514961 2214533 886878 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.0236451815302811 0.0235843918453354 0.0236057068741894 0.0236362249179828 0.00182656825945962 0.00187576813730119 2236054 891813 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.0234902120459456 0.0236260698670151 0.0235141527428092 0.0235599298084993 0.00141110893046648 0.00139626440377174 2221399 893389 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.0237095908874348 0.0234750663747618 0.0236972610055695 0.0234683756771191 0.00147024415470198 0.00147241282356063 2242145 887679 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.0237059426805364 0.0236731956504118 0.0237125200274662 0.0236362249179828 0.00148395908208029 0.00139560970118017 2241800 895171 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.0239125263615994 0.0238183811447149 0.0238498512245365 0.0236820019836728 0.0018560019039276 0.00178093181848163 2261336 900661 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.0238098901408583 0.023918265591342 0.0237582970931563 0.0239414053559167 0.00206886694036833 0.00215316137064972 2251630 904438 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.0237182831369144 0.0239339477403623 0.0237125200274662 0.0238498512245365 0.00179685992445336 0.00175070893525456 2242967 905031 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.0232151689693461 0.0233397185860837 0.0232089723048753 0.0233768215457389 0.00171515867048577 0.001859926653189 2195389 882561 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.0235234583140282 0.0234722367121224 0.0234683756771191 0.0234378576333257 0.00178138916380323 0.00175189776259676 2224543 887572 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.0236575325611718 0.0233342443789214 0.0236667429617761 0.0233615625238422 0.00196707755034049 0.00189621158644765 2237222 882354 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.0235299933629071 0.0236439998788799 0.0235446707866026 0.0234988937209125 0.00187034928484436 0.00190423164617098 2225161 894067 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.0236902712526425 0.0237296831214194 0.0236820019836728 0.0237125200274662 0.00140922839544757 0.00137529937934078 2240318 897307 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.0238625300653225 0.0239579337591843 0.0237888151369497 0.0239108873121233 0.00168995004491462 0.00153157240149783 2256608 905938 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.023832265809835 0.0237759097596783 0.0238193331807431 0.023773556115053 0.00156640694635597 0.00156387674578187 2253746 899055 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.023923153746912 0.0240209797006085 0.0238651102464332 0.0240329594872969 0.00175372940292928 0.00179011400554284 2262341 908322 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.0236769790901171 0.023919429190932 0.0236514839398795 0.0239108873121233 0.00179789175774212 0.00183575708471064 2239061 904482 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.0237485685414273 0.0238819824404888 0.0236972610055695 0.0238803692683299 0.00174521753135071 0.00172036980853938 2245831 903066 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.0235533841851077 0.023286113668606 0.0235904478522927 0.023422598611429 0.00183504455336122 0.00192028295647898 2227373 880534 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.0234736629334936 0.0235867190445155 0.0234836346990158 0.0236514839398795 0.0017334687985886 0.00179547634402123 2219834 891901 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.0235381463122365 0.0234876544066905 0.0235446707866026 0.0235141527428092 0.00203074373203791 0.00196545288113091 2225932 888155 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.023439739896595 0.0236737510047616 0.0234378576333257 0.0237125200274662 0.00205051021714465 0.00212170637668657 2216626 895192 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.0238092979681444 0.0237783427406393 0.0237888151369497 0.0238345922026398 0.00172041106949486 0.00146456115185599 2251574 899147 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.0238577926836109 0.0239360633759806 0.0238193331807431 0.0238803692683299 0.00174239702534901 0.00168244582847574 2256160 905111 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.0238899497768804 0.0238858434754921 0.0238803692683299 0.0239108873121233 0.00161436466886015 0.00152226196092041 2259201 903212 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.0238245252665028 0.0239742241534449 0.0237888151369497 0.0239719233997101 0.00172766639234169 0.00164473257431264 2253014 906554 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.023746813172311 0.0236661876074264 0.0237430380712596 0.0235904478522927 0.00170901624374823 0.00173081076697788 2245665 894906 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.0238442573072923 0.023731613638921 0.0238345922026398 0.0236514839398795 0.00158784890197274 0.0015641983880374 2254880 897380 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.023398382977234 0.0234501547653568 0.0233768215457389 0.023270008392462 0.00213687810528527 0.00228226189784813 2212715 886737 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.0234874415236054 0.0236756550768181 0.0234683756771191 0.0236972610055695 0.00209938097283228 0.00184949134452769 2221137 895264 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.0235456859398265 0.023679939238945 0.0235294117647059 0.0237277790493629 0.00236016215403641 0.00237594254782269 2226645 895426 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.0237010784046719 0.0234177590949522 0.0236667429617761 0.0234531166552224 0.00233839783901509 0.00245692688749013 2241340 885512 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.0238435276659126 0.023743540534719 0.0237582970931563 0.0236667429617761 0.00175070833344677 0.00193196995570318 2254811 897831 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.0239774115718268 0.0240489325362147 0.0239566643778134 0.0239871824216068 0.0017630511835284 0.00182872699797214 2267472 909379 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.0237912155513437 0.0240738441456197 0.0238040741588464 0.024277103837644 0.00194471219237385 0.00200372351940782 2249864 910321 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.0237767496179032 0.0241134065316812 0.0238040741588464 0.024124513618677 0.00216445073766095 0.00210186856427817 2248496 911817 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.0238873061486932 0.0240265332441064 0.0238345922026398 0.0240177004654002 0.00200901899247964 0.00196211790554187 2258951 908532 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.0236894781641863 0.0240667832117438 0.0236514839398795 0.0240634775310903 0.00185284678161646 0.00186837657352251 2240243 910054 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.0234973498420511 0.0233293519715542 0.0234988937209125 0.0233005264362554 0.00197313489769853 0.00211987609292643 2222074 882169 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.0236669544520311 0.0236866828274782 0.0236667429617761 0.0237277790493629 0.00217729947520534 0.0021910114483077 2238113 895681 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.0235757492795717 0.0236135082805317 0.0234683756771191 0.0236667429617761 0.00227344997814844 0.00240932951596624 2229488 892914 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.023685449274829 0.0234679789954407 0.0236667429617761 0.0233920805676356 0.00199928254629225 0.00197771577300745 2239862 887411 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.0237163057030304 0.024108752133321 0.0236514839398795 0.0240482185091936 0.00162728029595954 0.00158313860031069 2242780 911641 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.0239142817307157 0.0239499472347254 0.0238498512245365 0.0239108873121233 0.00158633051238854 0.00166261231076118 2261502 905636 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.023990249030304 0.023740525753963 0.0239108873121233 0.0237277790493629 0.00208179725642957 0.00181183155087648 2268686 897717 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.0240381409985438 0.039333155371819 0.0240939955748837 0.0385900663767453 0.00237632030181097 0.00559404462398275 2273215 1085211 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.0238648458836145 0.0238067451488145 0.023773556115053 0.0237277790493629 0.0020533006895439 0.00204727030012494 2256827 900221 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.0238657764407364 0.0238036245862775 0.0238040741588464 0.0238651102464332 0.00194777066536212 0.00198152253086909 2256915 900103 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.0234294826192286 0.0233781438180003 0.0234073395895323 0.0234073395895323 0.0015960082339939 0.00143805290380077 2215656 884014 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.0236320479854469 0.023682372219906 0.0236362249179828 0.0237277790493629 0.00182261652611693 0.00181385008753267 2234812 895518 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.0235755906618804 0.0233347468423808 0.0236209658960861 0.0233463035019455 0.00206160737142904 0.00216029786593809 2229473 882373 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.0236932849887759 0.0237965372069564 0.0236667429617761 0.0238193331807431 0.00187048710282522 0.00180786020176396 2240603 899835 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.0238379654722067 0.0238458315168618 0.0237888151369497 0.023773556115053 0.0014906091693572 0.00148281697065902 2254285 901699 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.0238462558902019 0.0240397824121658 0.0238345922026398 0.0239566643778134 0.00143884809779487 0.00140539239251858 2255069 909033 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.0240669142477337 0.0240405757755226 0.0240634775310903 0.0239871824216068 0.00161971239621597 0.00142058472619583 2275936 909063 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.0240183137871396 0.0238596095938257 0.0240177004654002 0.0238040741588464 0.00216655708446975 0.00224848382244151 2271340 902220 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.0239418706344776 0.023952909124591 0.0238345922026398 0.0239414053559167 0.0021806109081459 0.00225550568644064 2264111 905748 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.0239080533427066 0.0237719164974489 0.0238651102464332 0.0237277790493629 0.00178554312133255 0.00174604013755545 2260913 898904 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.0234694542774195 0.023596160068462 0.0234836346990158 0.0235599298084993 0.0016331925983 0.00172232383370616 2219436 892258 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.0235169761377131 0.0235439567595814 0.0234531166552224 0.0234378576333257 0.00183050550297078 0.00199475505302589 2223930 890284 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.0236678215620765 0.0234267769917751 0.0236667429617761 0.0234378576333257 0.00197219634920016 0.00213523397035446 2238195 885853 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.0238010498482002 0.0237765180049186 0.0237125200274662 0.0236820019836728 0.00178303413580305 0.00189612035651959 2250794 899078 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.0237304015285247 0.0235489549487296 0.0237125200274662 0.0235141527428092 0.00139740181926447 0.00134817808101116 2244113 890473 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.0237334681372219 0.0239270454791577 0.0237125200274662 0.0239566643778134 0.00151736920118922 0.00156889243826781 2244403 904770 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.0239931358722844 0.0238864252752872 0.0240024414435035 0.0239108873121233 0.00171516512950443 0.00157814114060209 2268959 903234 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.0240004534351067 0.0240144741210823 0.0239871824216068 0.0239871824216068 0.00190122183327369 0.00192263090367055 2269651 908076 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.023854588606248 0.0239825015778014 0.0237277790493629 0.0238193331807431 0.0020256051745147 0.00224368615348037 2255857 906867 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.0237216458319686 0.0237704619979613 0.0236667429617761 0.0236820019836728 0.00168113016096829 0.00166890878006268 2243285 898849 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.0241432728042936 0.161531985425902 0.024124513618677 0.170077058060578 0.00171819706264012 0.0269949541498296 2283157 7928913 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.0237241202679518 0.0237712024704277 0.0236820019836728 0.0238193331807431 0.00171986504060985 0.00156667184049967 2243519 898877 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.0235779487782234 0.0235823555460528 0.0235904478522927 0.0235141527428092 0.00179183431255929 0.00180168858117277 2229696 891736 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.0236215897923382 0.0236603167185857 0.0236057068741894 0.0236057068741894 0.0018379698350831 0.00196385086462614 2233823 894684 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.0235939480160126 0.0237409488810866 0.0236057068741894 0.0236820019836728 0.00139543201175862 0.00133944683829608 2231209 897733 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.0238092133720424 0.0238161332818705 0.0237888151369497 0.0238193331807431 0.00148807311416629 0.00154982206097822 2251566 900576 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.0238937777504955 0.0241088050242115 0.0238803692683299 0.0240939955748837 0.00162311614197098 0.0016685266083921 2259563 911643 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.0238347190967928 0.0238890433743648 0.0238651102464332 0.0240329594872969 0.00192055404229159 0.00189022025366244 2253978 903333 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.0237143071201208 0.0238317360945552 0.0236514839398795 0.0237277790493629 0.00169768934584624 0.00161444619709052 2242591 901166 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.0238266507435654 0.0238858699209374 0.023773556115053 0.0237582970931563 0.00146955292505738 0.00139064816997283 2253215 903213 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.0240830192306503 0.161172614069083 0.0240939955748837 0.167040512703136 0.0020845228218699 0.0249074366653394 2277459 7911273 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.0236693231428869 0.0236248533765346 0.0236667429617761 0.0236209658960861 0.00173026209663493 0.00182567575753243 2238337 893343 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.0236088686535013 0.0234813074998357 0.0236209658960861 0.0234531166552224 0.00202537606893823 0.00194233639931827 2232620 887915 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.0236967005563939 0.023507065363488 0.023575188830396 0.0234683756771191 0.00201897166785326 0.00203699991413579 2240926 888889 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.0237195415039315 0.0235755326211839 0.0236820019836728 0.0235294117647059 0.00154847541933221 0.00146039367293009 2243086 891478 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.0236472435602671 0.0237421653715671 0.0236820019836728 0.0236667429617761 0.00179695404973928 0.00173755476812607 2236249 897779 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.0237611627861113 0.0238244107062269 0.0237125200274662 0.0237582970931563 0.00172741421353106 0.0016474892289876 2247022 900889 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.0237236338403654 0.0239803594967379 0.0237582970931563 0.0239871824216068 0.0017489228636778 0.00177448024697479 2243473 906786 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.0236643848454331 0.02381608039098 0.0236209658960861 0.0238040741588464 0.00181838143775957 0.00195903798540193 2237870 900574 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.0241300652378702 0.166568420160529 0.024124513618677 0.168764782177462 0.00158523812325391 0.0261465541631679 2281908 8176130 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv new file mode 100644 index 0000000..8e57a99 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.324992971914464 0.347315028001014 0.324650949874113 0.348165102616922 0.00518784988806814 0.00899975421208001 30733612 19597471 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.325627537850014 0.325753936503693 0.325459678034638 0.325978484779126 0.00598278806215598 0.00563993315471956 30793621 12317960 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.325312808627068 0.326007283868979 0.325200274662394 0.326039520866712 0.00650411946913108 0.00626252377820875 30763858 12327540 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.325242255478007 0.325584764990568 0.325123979552911 0.325627527275502 0.00551804749631333 0.00535410251013543 30757186 12311563 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.325249213507396 0.325685151900654 0.325123979552911 0.325291828793774 0.00474377487812102 0.00465187633026479 30757844 12315359 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.325230433172754 0.325372778301618 0.325291828793774 0.325413900968948 0.00432064726630659 0.00401524443568181 30756068 12303547 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.325040017921684 0.324548262210292 0.325062943465324 0.32462043183032 0.00420080033290916 0.00404394849730606 30738061 12272369 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.324950229733933 0.325451347719391 0.324910353246357 0.325307087815671 0.00574159757939598 0.00536390418696322 30729570 12306518 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.324954723901851 0.32454289378491 0.324910353246357 0.32452887769894 0.00698800792842053 0.00749287199134754 30729995 12272166 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.324220387438515 0.351547448247592 0.324223697261006 0.352529182879377 0.00615932350562316 0.0120840933469748 30660551 19836288 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.323977374561032 0.324461336031827 0.323765926604105 0.32452887769894 0.00470526324567423 0.00470342032736457 30637570 12269082 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.325051649885708 0.324654334891102 0.32489509422446 0.324483100633249 0.00461713293473954 0.00465730794508723 30739161 12276380 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.325490682506018 0.325759780947088 0.325474937056535 0.325917448691539 0.00508282376947794 0.00480904117573086 30780679 12318181 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.325661101353479 0.326008156568672 0.325535973144121 0.325947966735332 0.00522812214507919 0.00494119357208144 30796795 12327573 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.325500939783384 0.325768931071137 0.325505455100328 0.325551232166018 0.00445383094126954 0.00410464355789014 30781649 12318527 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.325469501756982 0.325096291171757 0.325383382925155 0.325337605859464 0.00428563802526745 0.00453368205038064 30778676 12293092 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.325683064616459 0.325197233436193 0.325597009231708 0.325215533684291 0.00422582550054241 0.0039886659926351 30798872 12296909 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.325319935848661 0.325158411522598 0.325261310749981 0.325185015640497 0.00458979788824602 0.00479435681022201 30764532 12295441 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.325745189878859 0.324846302378014 0.325749599450675 0.324910353246357 0.00560555943884153 0.00577540323509274 30804747 12283639 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.325244486700197 0.325191441883688 0.325246051728084 0.325154497596704 0.00571066658973826 0.0058599391902769 30757397 12296690 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.324126168529922 0.324587269242003 0.324147402151522 0.32457465476463 0.00535068023583692 0.0054871711293866 30651641 12273844 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.324978558853587 0.32548138974517 0.324864576180667 0.325337605859464 0.0049893917183218 0.00509638705543978 30732249 12307654 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.325578768197216 0.325429477336187 0.325490196078431 0.325398641947051 0.00573688124333496 0.00589721371134243 30789009 12305691 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.325928276992594 0.326292445104875 0.325810635538262 0.326268406195163 0.00606664134555969 0.00622566236272239 30822061 12338323 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.3266390322925 0.326480763120346 0.326588845654994 0.3265583276112 0.00492837510651293 0.00457449461282036 30889275 12345444 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.326682007112311 0.326384845490503 0.326451514457923 0.326146334019989 0.0056726718640234 0.00505802662826369 30893339 12341817 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.32601327492607 0.325999323789966 0.325886930647745 0.32632944228275 0.00441819602589956 0.00417629345285341 30830099 12327239 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.326071202106908 0.326364059370553 0.326070038910506 0.326268406195163 0.00432840358207962 0.00435332179916718 30835577 12341031 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.326402342973641 0.326085456605074 0.32642099641413 0.325749599450675 0.00523105463278622 0.00524860304152929 30866892 12330496 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.325813332039013 0.325812460273983 0.325841153582055 0.325734340428779 0.00549091708791472 0.00507549830325901 30811191 12320173 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.324366548353731 0.323939276497576 0.324223697261006 0.323994811932555 0.00547832005065653 0.00569981840485785 30674373 12249341 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.324762690750331 0.324432748505535 0.32480354009308 0.32452887769894 0.00529928450658524 0.0046895044111555 30711835 12268001 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.326065047740488 0.325300952472378 0.325978484779126 0.325322346837568 0.00616051913887972 0.00574846229066879 30834995 12300831 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.326457351588961 0.326025637007968 0.326390478370336 0.325902189669642 0.00686911195899236 0.00779056391293849 30872094 12328234 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.326790522762141 0.326689311901416 0.326848249027237 0.326878767071031 0.00522898325060038 0.00552661378236029 30903601 12353330 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.326438708722984 0.327308796455887 0.326436255436027 0.327077134355688 0.00545033474570062 0.00512929201893838 30870331 12376755 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.326538405229181 0.327322706760077 0.326665140764477 0.327382314793622 0.0048581239416355 0.00452591928303273 30879759 12377281 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.3262269646797 0.326327194419905 0.326268406195163 0.325932707713436 0.00456436527769137 0.00439820573261172 30850307 12339637 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.325827565333173 0.326440962725277 0.326009002822919 0.326451514457923 0.00505850330449942 0.00474849205034556 30812537 12343939 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.326084060714411 0.325454045154804 0.326161593041886 0.325261310749981 0.00538957627870708 0.00548767610070601 30836793 12306620 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.324131075103838 0.324155653130433 0.324010070954452 0.324254215304799 0.00593494330681324 0.00657398796831859 30652105 12257523 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.325313030691836 0.325046970416406 0.325307087815671 0.325078202487221 0.00617113532049197 0.00651839792978128 30763879 12291227 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.325767354057581 0.325673277895747 0.325535973144121 0.325307087815671 0.00645641004402272 0.00655804518149309 30806843 12314910 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.326259904286913 0.326618596780875 0.326115815976196 0.326817730983444 0.00669003614832011 0.00614691955592015 30853422 12350656 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.32695200614633 0.327079461554868 0.326909285114824 0.327275501640345 0.00504267331310756 0.0051263394229354 30918872 12368083 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.327080359582076 0.327212561480702 0.327031357289998 0.327092393377585 0.00468453242431837 0.00462656189036147 30931010 12373116 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.325183038206613 0.326120999283461 0.325566491187915 0.325703822384985 0.00626756796800359 0.00537132789530489 30751586 12331840 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.326019143780645 0.325980150842175 0.326222629129473 0.326176852063783 0.00627439091333786 0.00628533651138054 30830654 12326514 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.326005037380638 0.325693720224908 0.326131074998093 0.325856412603952 0.00568879400116947 0.00592715191605271 30829320 12315683 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.32622611871868 0.325568818387095 0.326176852063783 0.325535973144121 0.00581581439467895 0.00573893622063042 30850227 12310960 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.323751947098251 0.324024827512889 0.323750667582208 0.324238956282902 0.00510082555562234 0.00478825564094435 30616252 12252576 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.32462681883602 0.324776380620831 0.324589913786526 0.324559395742733 0.00547668150341177 0.00556962385125687 30698986 12280995 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.325582278935449 0.325698797750392 0.325764858472572 0.325627527275502 0.00600030584455912 0.00638252319546357 30789341 12315875 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.326091769534205 0.32611917454774 0.326070038910506 0.326085297932403 0.00502357658475371 0.00493804982083116 30837522 12331771 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.326797459642504 0.326757303141097 0.326787212939651 0.326771953917754 0.00456452659731085 0.00482501848193852 30904257 12355901 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.326619881849912 0.326656466658442 0.32660410467689 0.326405737392233 0.0040014803469122 0.00397176539523881 30887464 12352088 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.326081321915609 0.326834418059383 0.326146334019989 0.326817730983444 0.00552391770713615 0.00424963117422639 30836534 12358817 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.325959715018996 0.36915227434634 0.325993743801022 0.366155489433127 0.00640309011740801 0.0135764373031215 30825034 10184998 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.326290908758293 0.325982478041355 0.326268406195163 0.325917448691539 0.00622145612065088 0.00638037358247159 30856354 12326602 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.326257366403853 0.326271209412357 0.326100556954299 0.326100556954299 0.00564125119654203 0.00546055070327482 30853182 12337520 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.323912743139111 0.32301572221387 0.323903257801175 0.322789349202716 0.00455712242522597 0.00439893071501475 30631458 12214418 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.324553706654874 0.324556090062079 0.324559395742733 0.324498359655146 0.00493263937698183 0.00472397739108455 30692072 12272665 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.325454496523391 0.325050514106067 0.325520714122225 0.32484931715877 0.00561575775694049 0.00565048512554389 30777257 12291361 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.325838351336177 0.325647096904971 0.325673304341192 0.325825894560159 0.00505649108431232 0.00574378224629675 30813557 12313920 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.326037405964163 0.326141600285293 0.326100556954299 0.326161593041886 0.00403083909035604 0.00421690928493216 30832381 12332619 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.326459603960176 0.326878370389352 0.326573586633097 0.326832990005341 0.00412351186354168 0.00432966621770953 30872307 12360479 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.326391324331356 0.326206867644117 0.326405737392233 0.326146334019989 0.00460089908388431 0.00468216899270792 30865850 12335087 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.326431761268108 0.32634977883013 0.326405737392233 0.325993743801022 0.00637019176059097 0.006200644446244 30869674 12340491 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.325845446834231 0.326058826041729 0.325749599450675 0.326085297932403 0.00698467546104316 0.0073851454809852 30814228 12329489 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.326108773350705 0.325399461755853 0.32632944228275 0.325322346837568 0.00580791847918199 0.00556059268775912 30839130 12304556 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.323485004098417 0.323648535272737 0.323430228122377 0.323262378881514 0.00500797219071046 0.0055808356930269 30591008 12238347 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.324598278226111 0.323797634692933 0.324925612268254 0.323842221713588 0.00521730181688108 0.00511467026987641 30696287 12243985 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.324433125485998 0.32471486851523 0.324315251392386 0.324773022049287 0.00551304976922758 0.00559257844006913 30680669 12278669 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.325170655452184 0.324896548723948 0.325139238574807 0.324513618677043 0.00531711506767655 0.005616601429221 30750415 12285539 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.325105262665345 0.325775463096108 0.325017166399634 0.325658045319295 0.00412265495378858 0.00406368543411343 30744231 12318774 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.326002488923066 0.325169862400382 0.325947966735332 0.32503242542153 0.00490849255700182 0.00483768682518006 30829079 12295874 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.326382589783826 0.326484412591787 0.326298924238956 0.326298924238956 0.00492954706903376 0.00473322398858692 30865024 12345582 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.326001960197428 0.325486282152538 0.325856412603952 0.325764858472572 0.00565240954677823 0.0057848978692174 30829029 12307839 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.326080296187872 0.326389446997973 0.326298924238956 0.32637521934844 0.00582449439947603 0.00582482545390863 30836437 12341991 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.326060394954879 0.326084213669148 0.325825894560159 0.325749599450675 0.00483508315646133 0.00517883693231087 30834555 12330449 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.322146672615888 0.355422061184196 0.322209506370642 0.353200579842832 0.005340985191361 0.0146296952047395 30464446 17446146 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.323254839253924 0.32337606785055 0.323262378881514 0.323338673990997 0.00497856719630013 0.00519866935776153 30569242 12228044 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.324457087331887 0.323785892915252 0.324681467917906 0.323582818341344 0.00582145224856154 0.00598567855326174 30682935 12243541 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.324510404025167 0.324898320568778 0.324406805523766 0.324498359655146 0.00545232305287642 0.00551006268828356 30687977 12285606 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.324518144568499 0.324548791119196 0.324559395742733 0.324162661173419 0.00459769842719491 0.00443497464103171 30688709 12272389 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.325010039178041 0.324734226581137 0.32498664835584 0.324696726939803 0.00528337961842776 0.00541276973142952 30735226 12279401 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.325598658855697 0.325842264290755 0.325337605859464 0.325734340428779 0.00517356992111445 0.00506813191947416 30790890 12321300 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.32538648125739 0.326020295028032 0.325368123903258 0.325932707713436 0.00527052065229397 0.00480558081974449 30770825 12328032 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.325814727874696 0.325740237763064 0.325764858472572 0.325612268253605 0.00447550171257061 0.00445849333482186 30811323 12317442 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.3250104198605 0.32547729070116 0.324925612268254 0.325276569771878 0.00431479370257049 0.00449968017233938 30735262 12307499 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.3211101271527 0.354582590882093 0.320927748531319 0.353841458762493 0.00634122423106957 0.0138776976025012 30366423 17404940 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.322936419526028 0.323707561506486 0.322926680399786 0.323628595407034 0.0060335685631651 0.00589291186940445 30539130 12240579 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.323491528572783 0.323401957941428 0.323567559319448 0.323216601815824 0.00674012593899025 0.00631835476063947 30591625 12229023 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.323862059499505 0.323660012595966 0.323598077363241 0.323552300297551 0.00638204181352882 0.00695778259691478 30626665 12238781 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.32380376221072 0.323980187601344 0.323857480735485 0.323872739757382 0.00556672846337133 0.00503186183744373 30621152 12250888 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.324464690406554 0.324074677177144 0.324330510414282 0.323826962691691 0.00624078143246586 0.0056178875326691 30683654 12254461 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.325169418234193 0.325084628730411 0.325215533684291 0.325062943465324 0.00574509691028958 0.00583861408012848 30750298 12292651 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.325507263342008 0.325583760063649 0.325398641947051 0.325413900968948 0.00545504392030877 0.00618643534700057 30782247 12311525 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.325488260942598 0.325548032267146 0.325520714122225 0.325856412603952 0.0047994220118745 0.00479874246702083 30780450 12310174 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.32508635543655 0.359190469161955 0.324925612268254 0.358419165331502 0.0040365136057837 0.0121854676026494 30742443 17631121 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv new file mode 100644 index 0000000..52dad5d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.0339626807468419 0.0362196544177128 0.0339513237201495 0.0361638818951705 0.00199744214913465 0.00214046804167986 3211749 2043717 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.0339780032158151 0.0341295131300974 0.0339360646982528 0.0341496910048066 0.00227135280468618 0.00236123370586266 3213198 1290563 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.0339985071960352 0.0341600840647813 0.0339665827420462 0.0341344319829099 0.00251711969529618 0.00233927704110451 3215137 1291719 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.0340681403624869 0.0337852992150066 0.034027618829633 0.0338597695887694 0.00217812163324203 0.00201443016222366 3221722 1277547 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.0340832407666924 0.0342432020991337 0.0340581368734264 0.0342870222018769 0.00176434911839542 0.00171110620970774 3223150 1294862 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.0339432342178966 0.0342454764074233 0.0339360646982528 0.0342107270923934 0.00163692560894511 0.00156071087877943 3209910 1294948 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.0340241821129896 0.0338725956297051 0.0340428778515297 0.0339208056763561 0.00152099013116598 0.00145474763573255 3217565 1280848 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.0340445274755185 0.0340490131948227 0.0339665827420462 0.0339513237201495 0.00215853536329687 0.00207440843864155 3219489 1287519 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.0339272244055947 0.0339803343735649 0.0338902876325628 0.0337529564354925 0.00260208533972762 0.00271591567459443 3208396 1284922 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.0340940584932345 0.0366508236903315 0.0339818417639429 0.0366979476615549 0.00252895985914641 0.00259564550992484 3224173 2068046 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.0337731537548429 0.03379553360231 0.0337682154573892 0.0338139925230793 0.00175416125103767 0.0017056745541466 3193826 1277934 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.0339704530137123 0.0340503883579745 0.0339971007858396 0.0340733958953231 0.00185912646204649 0.00184348937209179 3212484 1287571 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.0338887120301632 0.0339880035526811 0.0338750286106661 0.0340733958953231 0.00192555494006759 0.00184613290572559 3204754 1285212 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.0340988064494588 0.0338940428857852 0.034027618829633 0.0338902876325628 0.00201391102006758 0.00200156499421486 3224622 1281659 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.0341029305094309 0.0342691715263478 0.0341191729610132 0.0343022812237736 0.00161683574776495 0.00162496131080857 3225012 1295844 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.0341398990060011 0.0341717729515722 0.0341039139391165 0.0341344319829099 0.00162491121996328 0.00160796382084329 3228508 1292161 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.034086582312721 0.0341851807923029 0.0340886549172198 0.0342412451361868 0.00158677931493175 0.00156565841211434 3223466 1292668 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.034256060028548 0.0341865030645643 0.0341802090486 0.0341802090486 0.00190456249128297 0.00180133355962391 3239493 1292718 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.0342848650012761 0.033951720401828 0.0342412451361868 0.0338902876325628 0.00214836099178769 0.00203004610088586 3242217 1283840 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.0340565612710268 0.0341269214764651 0.0341802090486 0.0341344319829099 0.00229733755112251 0.00211565448171145 3220627 1290465 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.0338626141326988 0.0337519250631286 0.0339055466544594 0.0337376974135958 0.00206299880424627 0.00214921760165708 3202286 1276285 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.0339412567840126 0.0340769395849837 0.0338597695887694 0.0339360646982528 0.00202031383707839 0.00199562869526171 3209723 1288575 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.0340834734059728 0.0338108719605423 0.0340886549172198 0.0337529564354925 0.00213217934949608 0.00245757235000966 3223172 1278514 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.0339982111096783 0.0340935208791418 0.0339360646982528 0.0338902876325628 0.00229770997561415 0.00240330225147615 3215109 1289202 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.0343504058312939 0.034101428067265 0.0343175402456703 0.0341191729610132 0.0018894126830791 0.00165967055805823 3248415 1289501 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.0342811321982757 0.0343735252532184 0.0342259861142901 0.0343938353551537 0.00191375260913259 0.00195572944741646 3241864 1299790 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.0341986087007831 0.0342727945523441 0.0341802090486 0.0342870222018769 0.00162131748844622 0.00164575541597271 3234060 1295981 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.0342432860171473 0.0340897391804742 0.0342259861142901 0.0341039139391165 0.00167519507393323 0.00160206520332478 3238285 1289059 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.0342291584681148 0.0340959274146576 0.0342717631799802 0.0341802090486 0.00197936245084677 0.00199233454492185 3236949 1289293 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.0341158631385228 0.0341865295100095 0.0341496910048066 0.0341496910048066 0.0020382145940358 0.00206193935355946 3226235 1292719 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.0338701220367506 0.0338144949865386 0.0338902876325628 0.0338750286106661 0.00201406811010882 0.00213016230348419 3202996 1278651 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.0339371750220915 0.0339563748001881 0.0339208056763561 0.0339360646982528 0.00200956914651554 0.00194737015619971 3209337 1284016 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.0340130260020395 0.0341896500725465 0.0339360646982528 0.0342717631799802 0.00244628303163295 0.00227304106999487 3216510 1292837 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.034057438955585 0.0339813393004836 0.0339818417639429 0.0339360646982528 0.00258167349060241 0.00290520137728043 3220710 1284960 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.0341556338809715 0.0343949460638533 0.0341496910048066 0.0344548714427405 0.00208797231314695 0.00209197644562873 3229996 1300600 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.0342704519403993 0.0343743450620205 0.0342259861142901 0.0343480582894636 0.00197591417513607 0.0020018749001566 3240854 1299821 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.0341981645712477 0.0340535089205115 0.0341344319829099 0.0340123598077363 0.00180115692514019 0.00182798213069919 3234018 1287689 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.0341064095241252 0.0340927539612302 0.0341649500267033 0.0340886549172198 0.00182015312371447 0.0016489162590086 3225341 1289173 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.0341974878024317 0.0341239066957091 0.0341649500267033 0.0341802090486 0.00182932790337141 0.00181700531810611 3233954 1290351 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.0341000013693994 0.0339460346311039 0.0340886549172198 0.0339513237201495 0.00194642538428706 0.00197692394895363 3224735 1283625 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.0337963225122758 0.0337591446696759 0.0337682154573892 0.0337529564354925 0.00229803539690512 0.00251103547434705 3196017 1276558 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.0339857226101218 0.0341147830171053 0.0339360646982528 0.0341802090486 0.00231707265580466 0.00231041287839894 3213928 1290006 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.0340577773399929 0.0341067436017559 0.034027618829633 0.0340581368734264 0.00249143008093316 0.00245529674959607 3220742 1289702 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.0340461348014564 0.034032246782548 0.0341191729610132 0.0340733958953231 0.00239112098728001 0.00239459363464031 3219641 1286885 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.0342201278342272 0.0343130445199814 0.0342412451361868 0.0343022812237736 0.00186794528518155 0.00193310979564586 3236095 1297503 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.0341079005304228 0.0344743088449833 0.0341039139391165 0.0344243533989471 0.00187091399797578 0.00182983670422259 3225482 1303601 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.0342453163235951 0.0339574326179973 0.0342870222018769 0.0338597695887694 0.0021555344590451 0.00181509159934655 3238477 1284056 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.0339988984530069 0.0343301282775989 0.0340123598077363 0.0343633173113603 0.0022977030448374 0.00229458840342569 3215174 1298149 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.0341917035439581 0.0343094743848756 0.0341344319829099 0.0341954680704967 0.00219116722613322 0.00221346595924852 3233407 1297368 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.0340257788644147 0.0342043537400934 0.0340581368734264 0.0341649500267033 0.00219072544869941 0.00215628013295193 3217716 1293393 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.03378726015485 0.0337587215425522 0.0338597695887694 0.0337834744792859 0.0019138882316873 0.00191685031309937 3195160 1276542 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.033840830636436 0.0340443323510173 0.0337834744792859 0.0340733958953231 0.00221648436548896 0.00220905500574527 3200226 1287342 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.0341156093502168 0.0339838516177803 0.0340428778515297 0.0339513237201495 0.0023777172681898 0.00248305126724787 3226211 1285055 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.0340663849933706 0.0341999373507403 0.0340733958953231 0.0341191729610132 0.00200676769759075 0.00182470671446404 3221556 1293226 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.0341715908207096 0.0342296091402863 0.0341802090486 0.0342107270923934 0.00175643295424648 0.0017047117309283 3231505 1294348 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.0342959365161242 0.0343663585375616 0.0342870222018769 0.0344548714427405 0.00161456962253534 0.00149772059444295 3243264 1299519 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.0341515944171014 0.034226435686859 0.0341344319829099 0.0340581368734264 0.00177986851535395 0.00167194213301687 3229614 1294228 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.0341894828962808 0.038562919090758 0.0341802090486 0.0385442893110552 0.00250812594274691 0.00272816191051209 3233197 1063960 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.0341055318395671 0.0342480680610557 0.0340886549172198 0.0342412451361868 0.00246763483388806 0.00237845767604006 3225258 1295046 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.0340577561909675 0.0342136889822589 0.0341039139391165 0.0341802090486 0.00207646503578029 0.00212520008234693 3220740 1293746 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.0336798125308082 0.0336268116617538 0.0336614023041123 0.0336614023041123 0.00175575640283877 0.00164939432622872 3184999 1271554 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.0338491527779694 0.0338709824575461 0.0338139925230793 0.0338597695887694 0.00197784062206523 0.00184156232643647 3201013 1280787 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.0340621340392455 0.0339833755997662 0.0340123598077363 0.0338750286106661 0.00218467927875866 0.00224992943729525 3221154 1285037 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.0340425394671217 0.034230376058198 0.0340733958953231 0.0341496910048066 0.00198535507878473 0.00221761689923581 3219301 1294377 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.0339837134526995 0.0340326170187812 0.0339971007858396 0.0339818417639429 0.0016284745102094 0.00159496895460548 3213738 1286899 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.0342932188663477 0.0341337972922244 0.0342565041580835 0.0340733958953231 0.00162316267837622 0.00156100578209932 3243007 1290725 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.0342427149934589 0.0340615218904156 0.0342717631799802 0.0340123598077363 0.00169165717348432 0.00172718286966775 3238231 1287992 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.0342894649143219 0.0342331792753922 0.0342870222018769 0.0341649500267033 0.0024200340585016 0.00237971819002718 3242652 1294483 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.0340806182875306 0.0338929586225308 0.0340886549172198 0.0337529564354925 0.00266949388054947 0.00289486154434755 3222902 1281618 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.034093952748107 0.0339439983318213 0.0341496910048066 0.0339055466544594 0.00221162895630283 0.00210277970455084 3224163 1283548 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.0336782580774341 0.0339253542929354 0.0336003662165255 0.0339513237201495 0.00199438887580766 0.00196633088466987 3184852 1282843 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.0338697307797788 0.034042798515194 0.033829251544976 0.0340886549172198 0.0020732621841632 0.00195966739424869 3202959 1287284 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.0338536998184515 0.0337529299900473 0.033829251544976 0.0337224383916991 0.00218684877513327 0.00202615866271394 3201443 1276323 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.0339592546047112 0.0338913190049267 0.0339513237201495 0.0337529564354925 0.00205032135569271 0.00204535263772008 3211425 1281556 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.0340877243600979 0.0342559752491789 0.0340733958953231 0.0342565041580835 0.00163074361829097 0.00160182857028908 3223574 1295345 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.0340571111456898 0.0341158937258049 0.0340733958953231 0.0341191729610132 0.00197282057369335 0.00188860004955261 3220679 1290048 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.034256313816854 0.033986945734872 0.0342717631799802 0.0340733958953231 0.00200321636275016 0.00195708630457138 3239517 1285172 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.0341595464506886 0.0341445076975419 0.0341039139391165 0.0341344319829099 0.00224823507418133 0.00225326071782181 3230366 1291130 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.0341663775859244 0.034172910105717 0.0341191729610132 0.0341191729610132 0.00224146102320207 0.00219468923552035 3231012 1292204 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.0341520596956624 0.0340396779526571 0.0341649500267033 0.0341039139391165 0.00184127940346785 0.00196064038920738 3229658 1287166 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.033641913477116 0.0371248539417222 0.0336308842603189 0.0368963149462119 0.00210923337364213 0.00257458526262876 3181415 1822300 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.0335939051892359 0.0338286432997357 0.0335698481727321 0.0338902876325628 0.00188818868763369 0.00194403483982847 3176875 1279186 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.033758032201612 0.0337516341632311 0.0337224383916991 0.0337376974135958 0.00222229648445952 0.00228725680392903 3192396 1276274 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.0340110591426682 0.0338181973488706 0.0340123598077363 0.0338445105668727 0.00210623478371314 0.002132937529969 3216324 1278791 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.0339535443678268 0.0340059600099911 0.0339360646982528 0.0339818417639429 0.001716241877929 0.00165381439868515 3210885 1285891 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.0339357263138449 0.0341643946723535 0.0338902876325628 0.034027618829633 0.00201126183525704 0.00206200708906592 3209200 1291882 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.0342262081790578 0.0339465370945632 0.0341496910048066 0.0338750286106661 0.00197295863893395 0.00189372951918992 3236670 1283644 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.0341348126653689 0.0340917490343115 0.0341649500267033 0.0341191729610132 0.00207659627944951 0.00201073933434273 3228027 1289135 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.0342284288267351 0.0340294171199085 0.0342412451361868 0.0340428778515297 0.00172492744941303 0.00171492141108013 3236880 1286778 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.0341142875361232 0.0340309245102866 0.0340886549172198 0.0339971007858396 0.00156394788187644 0.00164397256105095 3226086 1286835 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.0334438740023542 0.0373257677921163 0.0333562218661784 0.0373235675593194 0.00236472324809578 0.00285590042217623 3162687 1832162 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.0336700945535919 0.033481308822108 0.0335698481727321 0.0334477759975586 0.00222100257337134 0.00218634302657093 3184080 1266052 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.0337091991017374 0.0335910045289147 0.0336919203479057 0.0335088120851453 0.00246644926943278 0.00275195713040622 3187778 1270200 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.0338507918274455 0.0337398130492141 0.0338750286106661 0.033676661326009 0.00239839998890393 0.00260757445473634 3201168 1275827 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.0339619511054622 0.0340058542282102 0.0339360646982528 0.0340886549172198 0.00200463413558605 0.00217679152893355 3211680 1285887 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.0340155215870483 0.0341945689253589 0.0340428778515297 0.0340581368734264 0.00232843749960561 0.00236853380295069 3216746 1293023 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.0340470865076038 0.0339400579604823 0.034027618829633 0.0339360646982528 0.00230651599185247 0.00218578481862873 3219731 1283399 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.0341389155763154 0.0343216392896806 0.0341496910048066 0.0343633173113603 0.00211767656385187 0.00219697217514484 3228415 1297828 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.034165721966134 0.034149743895697 0.0341649500267033 0.0341039139391165 0.00175733974287382 0.00180063226417202 3230950 1291328 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.0339796211162657 0.0376151187774284 0.0339971007858396 0.0375829709315633 0.00154278100591291 0.00205960396911938 3213351 1846365 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv new file mode 100644 index 0000000..ec20d2f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.241042563567364 0.932282445735879 0.240421149004349 1 0.00840781657704896 0.167781256208258 20519945 52604629 1299 861 75 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.236752734480744 0.23531046093221 0.236133363851377 0.234882124055848 0.00601446571663094 0.00456987828626851 20154752 8897958 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.235842772870869 0.234346021990181 0.235523002975509 0.234073395895323 0.00532429580624478 0.00407267662774945 20077287 8861489 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.235045145384472 0.235123280070884 0.235004196231022 0.234912642099641 0.00464370904431351 0.00482869212542449 20009385 8890880 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.235239965152106 0.235327121562704 0.235111009384298 0.235614557106889 0.00564027247537111 0.00519473288665607 20025970 8898588 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.235541139949958 0.235281450278794 0.235538261997406 0.235095750362402 0.00584139349291113 0.00593608495630782 20051609 8896861 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.236327361346854 0.235484101725579 0.236102845807584 0.235614557106889 0.00750254692190147 0.00570706272821348 20118540 8904524 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.23590535952881 0.236361164916573 0.235782406347753 0.23611810482948 0.00504231500308516 0.00510401545133959 20082615 8937689 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.236404020605435 0.236316710123145 0.236240177004654 0.236133363851377 0.00421337925999169 0.00394070660027772 20125066 8936008 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.23936591539771 0.938238072110309 0.239139391165026 1 0.00484772037975157 0.136892340312803 20377212 52940679 1299 861 74 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.23857283390167 0.23499644771557 0.236209658960861 0.234790569924468 0.0202500877106094 0.00513652043475575 20309697 8886084 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.234786470310425 0.235238370648518 0.234821087968261 0.235156786449989 0.00410942808388048 0.00380875518538899 19987364 8895232 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.234978130203625 0.235303399998334 0.235080491340505 0.235431448844129 0.00366862111703207 0.00335837312523835 20003680 8897691 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.238446991021317 0.235516523841428 0.23584344243534 0.235523002975509 0.0154606130769048 0.00355081238934945 20298984 8905750 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.235365197201714 0.235360998178041 0.235233081559472 0.235248340581369 0.0046423256962418 0.00445078990499741 20036631 8899869 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.235575041056342 0.235895883753228 0.235446707866026 0.235523002975509 0.00565203229138767 0.00615367764106944 20054495 8920095 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.236712866027843 0.236632072057491 0.236606393530175 0.236667429617761 0.00508091848149667 0.00484923129270066 20151358 8947933 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.236213652854198 0.236852944416038 0.236301213092241 0.236850537880522 0.00438961185962633 0.00448445729931074 20108860 8956285 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.236060933421035 0.236569555024972 0.236057068741894 0.236652170595865 0.0035473050118961 0.00330676284763071 20095859 8945569 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.236204419912542 0.236116465211876 0.236270695048447 0.236057068741894 0.00381183371198963 0.00404319032367879 20108074 8928436 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.238471036608555 0.234959556319476 0.235248340581369 0.234988937209125 0.0179819043557574 0.00473666303240474 20301031 8884689 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.235047459493258 0.246418314845984 0.235065232318608 0.239734493018997 0.00401844041621949 0.0170130117239348 20009582 9317987 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.235528747133868 0.235990611338035 0.235385671778439 0.235904478522927 0.00382121599747337 0.00349608159087749 20050554 8923677 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.235733528141354 0.235314031067316 0.235507743953613 0.235172045471885 0.00445806700258483 0.00366692797537648 20067987 8898093 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.235780691322967 0.23642563891204 0.235629816128786 0.236667429617761 0.00426768367734362 0.00441459091392588 20072002 8940127 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.237027925478414 0.237274907940099 0.236881055924315 0.237216754406043 0.00498914608222238 0.00522454415866166 20178179 8972241 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.237639613736479 0.237569986217956 0.237537193865873 0.237445639734493 0.00437407233351681 0.00467367617657378 20230252 8983399 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.238464940047843 0.237667569910848 0.237857633325704 0.237491416800183 0.00553215221982015 0.00455333192617715 20300512 8987089 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.237051113553259 0.23691633414825 0.236743724727245 0.236957351033799 0.00416880930587402 0.00344448384958338 20180153 8958682 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.236609001307589 0.237106582681222 0.236652170595865 0.236865796902419 0.00343211823973701 0.00374099589543023 20142516 8965876 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.235135607068557 0.23536665750332 0.235126268406195 0.235416189822232 0.00518218566727912 0.00528058373032895 20017086 8900083 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.235385413350047 0.235920716026297 0.235416189822232 0.236011291676204 0.00420016004093219 0.00390288376047177 20038352 8921034 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.235718468814124 0.236233354079785 0.235675593194476 0.236133363851377 0.00401384168085584 0.0039591792058086 20066705 8932856 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.236237815908887 0.236367617605209 0.236224917982757 0.236362249179828 0.00409488070542618 0.00381145109051692 20110917 8937933 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.236844347345849 0.236713153792561 0.236789501792935 0.236697947661555 0.00418580109293174 0.00406558313055771 20162551 8950999 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.237981138603781 0.238065996988657 0.237979705500877 0.23773556115053 0.0045475988256741 0.00436557298973921 20259326 9002155 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.238019844128915 0.238248920133301 0.238101777676051 0.238406958113985 0.0041126301950209 0.00411379572166496 20262621 9009072 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.237936500972366 0.237575989334023 0.237842374303807 0.23750667582208 0.00421860966238913 0.00411162970318093 20255526 8983626 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.237808473197422 0.237655669460496 0.237628747997253 0.237521934843976 0.00382597553774253 0.003784282960235 20244627 8986639 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.236912055584658 0.236627285431905 0.236972610055695 0.236591134508278 0.00359378598043049 0.00346708492951904 20168315 8947752 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.235291533363135 0.234864564280216 0.235339894712749 0.234897383077745 0.00545829102650996 0.00576389910494373 20030360 8881097 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.235884802724869 0.235387443623269 0.235812924391546 0.235523002975509 0.00485818409157171 0.00435649442425506 20080865 8900869 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.235876333321645 0.235759795492083 0.23584344243534 0.23575188830396 0.00441555929986231 0.00438919000952446 20080144 8914949 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.236957351033799 0.236690780945898 0.236743724727245 0.236697947661555 0.0058359467880279 0.00430097651263394 20172171 8950153 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.237474736422128 0.237658737132142 0.23746089875639 0.237705043106737 0.00441748681838003 0.00418342362817218 20216216 8986755 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.238082771442464 0.238354014332638 0.238071259632258 0.238284885938811 0.00454572027343072 0.0046075732259233 20267978 9013046 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.238256905191961 0.238750775347397 0.238223849851225 0.238910505836576 0.0041440155047381 0.0038067131696772 20282802 9028049 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.2382837112643 0.238814905552076 0.238284885938811 0.238712138551919 0.00418649014942516 0.00418513848010835 20285084 9030474 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.238119315566499 0.237904415318313 0.237994964522774 0.237888151369497 0.0040184522428971 0.00376583418414393 20271089 8996045 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.236646731852879 0.236818591782686 0.236865796902419 0.236957351033799 0.00420645644868825 0.00388080228268187 20145728 8954986 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.235353051067271 0.235187172266556 0.235385671778439 0.234836346990158 0.00605073245967115 0.00634141062889641 20035597 8893296 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.235518409998172 0.235590491751732 0.235568780041199 0.235507743953613 0.00491280515141191 0.00529177367357001 20049674 8908547 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.236281901443281 0.236297775184361 0.236530098420691 0.236438544289311 0.0044355597512722 0.00421636385497421 20114670 8935292 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.237427526253535 0.237320367660447 0.237277790493629 0.237430380712596 0.00466815444712092 0.00485497021603796 20212197 8973960 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.238184498255109 0.238220702843242 0.238193331807431 0.238315403982605 0.00557611860190989 0.00568911241928228 20276638 9008005 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.238529300464296 0.238607361697925 0.238574807354849 0.238544289311055 0.00549321395733542 0.00589156563381686 20305991 9022626 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.238600591460363 0.238717877213533 0.238574807354849 0.238696879530022 0.00518199877415866 0.00504602190032012 20312060 9026805 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.238992709558849 0.239272253081853 0.238986800946059 0.239154650186923 0.00497501525848958 0.00535159938434205 20345441 9047768 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.237938427438564 0.237866201649958 0.237705043106737 0.23773556115053 0.0046127674319396 0.00485854229576513 20255690 8994600 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.236771893422017 0.23657693330419 0.236621652552071 0.236697947661555 0.00500311451736769 0.00488758630065302 20156383 8945848 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.235293929699137 0.235851799196032 0.235172045471885 0.235828183413443 0.005317605500753 0.00547700822683561 20030564 8918428 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.235648716641667 0.235518057677252 0.235690852216373 0.235523002975509 0.0039842913664596 0.00396387658837017 20060767 8905808 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.23650625252812 0.236696995625527 0.236545357442588 0.236667429617761 0.00397116709379515 0.00367313842699566 20133769 8950388 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.237321335677749 0.237754548980204 0.237247272449836 0.237567711909667 0.0038582993440055 0.00378248024211069 20203157 8990378 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.23811136302006 0.238215625317759 0.238178072785534 0.238254367895018 0.00527701263494652 0.00562138168166442 20270412 9007813 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.238530017015748 0.238811811434984 0.238437476157778 0.238773174639506 0.00593145507857758 0.00554908259497304 20306052 9030357 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.238834563129446 0.238936395927454 0.238788433661402 0.239230945296407 0.00485594724838943 0.0044355249784182 20331978 9035068 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.238737863923708 0.238655836199028 0.238498512245365 0.238895246814679 0.00510173579132952 0.00500848097097953 20323746 9024459 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.23756325989327 0.237308070528416 0.237537193865873 0.237232013427939 0.00429102752153992 0.00421423932197096 20223752 8973495 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.236765867341776 0.236656507648882 0.236820019836728 0.236606393530175 0.00417453354817145 0.00371289695410393 20155870 8948857 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.239814288658523 0.235971438390245 0.236713206683452 0.235812924391546 0.0162501180410937 0.00537647649461447 20415382 8922952 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.23587956367655 0.23625937639789 0.235828183413443 0.236362249179828 0.00399233387240067 0.00378378455293837 20080419 8933840 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.236661215589599 0.23679706519027 0.236621652552071 0.236835278858625 0.00385293170533496 0.00374684104428496 20146961 8954172 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.237382101590198 0.238345604681055 0.237430380712596 0.238330663004501 0.00371146735354191 0.0038599469718917 20208330 9012728 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.237928407464986 0.238091463952412 0.23773556115053 0.238086518654154 0.00469435510100863 0.00488294239310757 20254837 9003118 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.23881675506386 0.238648695928816 0.238742656595712 0.238559548332952 0.00594540896477681 0.00640890960562895 20330462 9024189 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.238819891444804 0.238376413624746 0.238651102464332 0.238483253223468 0.00478431262635853 0.00505490515768728 20330729 9013893 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.238043126177721 0.238078347011579 0.238010223544671 0.23782711528191 0.00415895868024842 0.00431407894812104 20264603 9002622 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.236749504125839 0.236791961219341 0.236606393530175 0.236591134508278 0.00366766930618888 0.0035284502497834 20154477 8953979 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.236380844277335 0.236374757875421 0.236484321355001 0.236362249179828 0.00412155372838198 0.00370280716541046 20123093 8938203 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.247542530999514 0.973270960808048 0.243366140230411 1 0.0161717353605638 0.0880486691481976 21073287 47773701 1299 749 84 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.238560899208639 0.23735836976524 0.237933928435187 0.237293049515526 0.00536261961208442 0.00355635152644817 20308681 8975397 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.236556798772324 0.236545383888033 0.236560616464485 0.236377508201724 0.0035105612587696 0.00339006406326907 20138072 8944655 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.237302341190907 0.237113564278762 0.237186236362249 0.236972610055695 0.00403136171182455 0.00403853717717366 20201540 8966140 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.237575711443086 0.23773667185923 0.237430380712596 0.237659266041047 0.00475947265198417 0.00489275214021348 20224812 8989702 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.238269861851817 0.238358959630896 0.238147554741741 0.238437476157778 0.00528020357998612 0.00506538705849642 20283905 9013233 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.237873785100229 0.237866836340643 0.237918669413291 0.237750820172427 0.00423164908230498 0.00442250651449608 20250187 8994624 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.237583605255799 0.236882854214591 0.237277790493629 0.236560616464485 0.0053635546350425 0.00369224604827968 20225484 8957416 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.236380585848943 0.236077987089069 0.236301213092241 0.236240177004654 0.00347700697187376 0.00353884676898546 20123071 8926981 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.236816730748098 0.236691018954905 0.236652170595865 0.236697947661555 0.00377335751088658 0.0036483041456469 20160200 8950162 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.244012951256353 0.965797666388276 0.243030441748684 1 0.0087964863468751 0.105833717094155 20772814 47406869 1299 749 82 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.237952664493636 0.236683111766782 0.237186236362249 0.236591134508278 0.00536031043440889 0.00378740537538271 20256902 8949863 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.236010610364987 0.23595295302403 0.2360265506981 0.236133363851377 0.00387520199241812 0.00356634000143619 20091575 8922253 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.236580797372582 0.236533853673914 0.236621652552071 0.236453803311208 0.00409612287171926 0.00400061549094026 20140115 8944219 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.237179857879655 0.23905756895749 0.237140459296559 0.23764400701915 0.0044609794972789 0.00704992750858761 20191113 9039650 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.237385696094201 0.23741977608906 0.237430380712596 0.237354085603113 0.00464914456740386 0.00436948059087454 20208636 8977719 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.237242503271322 0.237008258515863 0.237155718318456 0.236850537880522 0.00401503001510725 0.00343076620574944 20196446 8962158 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.23633130825321 0.236479825629312 0.236438544289311 0.236346990157931 0.0036104290678541 0.00338504420498117 20118876 8942176 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.237038943925326 0.236560616464485 0.236942092011902 0.236331731136034 0.00393769063131558 0.00400909273203099 20179117 8945231 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.239683007035184 0.930738821104982 0.239673456931411 1 0.00428073580859341 0.157743216239126 20404206 52517529 1299 861 75 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv new file mode 100644 index 0000000..d6677a2 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.0242550904373096 0.146384458057052 0.0241702906843671 0.16577401388571 0.00241403153152713 0.0456168604825973 2064835 8259836 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.0240736032253743 0.0237956116163734 0.0240177004654002 0.0237277790493629 0.00192092731318968 0.0018395790682933 2049385 899800 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.0238708778982818 0.0239144574472291 0.0238803692683299 0.0238498512245365 0.00171849028767145 0.00156643925354367 2032127 904294 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.0238975547564245 0.0237553087578455 0.0238803692683299 0.0236667429617761 0.00190076791645261 0.0019875454469361 2034398 898276 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.0238482066802212 0.0240551472158434 0.0238498512245365 0.0240482185091936 0.00220369235508943 0.00206489092008069 2030197 909614 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.0238192392067822 0.0238615930022178 0.0238345922026398 0.0239108873121233 0.0023068001579168 0.00229881760179479 2027731 902295 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.0238700203858888 0.023994507809935 0.0237277790493629 0.02392614633402 0.00230458362526109 0.00235339164409725 2032054 907321 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0239274619694722 0.0240886007040571 0.02392614633402 0.0241397726405737 0.00183148658999066 0.00205506018944423 2036944 910879 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0239892028617655 0.0240178855835168 0.0240024414435035 0.0240024414435035 0.0015982682983259 0.00159106893280493 2042200 908205 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.0243105585677147 0.15134844295505 0.024277103837644 0.170214389257649 0.00182703521283775 0.0456582108266726 2069557 8539932 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.0241940073627424 0.0237658604904916 0.0239566643778134 0.0237430380712596 0.00270070531124284 0.00207405665470289 2059635 898675 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.023908913858945 0.0235447501229383 0.0238803692683299 0.0235904478522927 0.0015800692004448 0.00163796509595346 2035365 890314 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.0238326304962066 0.0237208767881584 0.023773556115053 0.0236972610055695 0.00141764348398739 0.00148910920349904 2028871 896974 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.0242416521609048 0.0237205858882609 0.0240177004654002 0.0236820019836728 0.00217254070108811 0.00138491391230836 2063691 896963 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.0239185814301697 0.0237451537068779 0.0238193331807431 0.0236820019836728 0.00187270073561494 0.00179065038026758 2036188 897892 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.023746421133851 0.0241931924399348 0.0236514839398795 0.0240482185091936 0.00225986862867441 0.00234343195386611 2021532 914834 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.024121706146596 0.0241405395584854 0.0240329594872969 0.0240939955748837 0.00208762229235179 0.00192021668893635 2053480 912843 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.0239503563756898 0.0240164310840292 0.0239414053559167 0.024078736552987 0.00181476786889998 0.0017935619742966 2038893 908150 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.0241078919743477 0.0240132840760471 0.0240634775310903 0.0239871824216068 0.0014761507591744 0.00145930014764282 2052304 908031 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.0239790536739913 0.0236932941887853 0.02392614633402 0.0237277790493629 0.00158896980534933 0.00144865835327453 2041336 895931 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.0242376700143128 0.0238318418763361 0.0239871824216068 0.0237582970931563 0.00259827344184561 0.00194580434953753 2063352 901170 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.0237811562591386 0.0250590427621527 0.0237888151369497 0.0247959105821317 0.00159594499085403 0.00217855112423925 2024489 947575 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.0239606700178956 0.0236762633220583 0.0239871824216068 0.0236667429617761 0.00155545747904814 0.00152245581343599 2039771 895287 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.0239070578732177 0.0237819393211904 0.0239108873121233 0.0238193331807431 0.00156340528469323 0.00147264695983798 2035207 899283 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.0237672246194392 0.0237697215254949 0.0237582970931563 0.023773556115053 0.0016513836674727 0.00157997299645038 2023303 898821 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.0241241377228336 0.0239979457178147 0.0241550316624704 0.0239108873121233 0.00191323292314161 0.0021327794296646 2053687 907451 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.024110405777801 0.0240766738082592 0.024078736552987 0.0240482185091936 0.00188681257445463 0.00173961820611696 2052518 910428 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.0242358257753307 0.0241384768137576 0.0243076218814374 0.0241702906843671 0.00177916113302144 0.00187887360940041 2063195 912765 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.0240010670743257 0.0240042661792242 0.0239871824216068 0.0238651102464332 0.00139028672985193 0.00145187873843754 2043210 907690 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.0241289421415832 0.0241479971740397 0.0240939955748837 0.0241397726405737 0.00145763191916496 0.00146743063184544 2054096 913125 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.0238708309113013 0.0236516426125508 0.0238193331807431 0.0236514839398795 0.00206743125782994 0.00209746260941459 2032123 894356 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.0238733329680096 0.023783631829685 0.0238498512245365 0.0238040741588464 0.00156770450158264 0.00144838679422474 2032336 899347 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.0239395141299541 0.0240532166983417 0.0238345922026398 0.0240482185091936 0.00152991998677886 0.00153041123170407 2037970 909541 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.02400206554766 0.0237002228954351 0.0240482185091936 0.0236667429617761 0.00161452813320114 0.00154064835428294 2043295 896193 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.0240358961735741 0.0239478844899976 0.0240329594872969 0.0240177004654002 0.0016653966618083 0.00163948074837896 2046175 905558 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.0239453522622733 0.0240903725488874 0.02392614633402 0.0240634775310903 0.0017967860858861 0.00185475154183876 2038467 910946 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.0241776324000603 0.0240265861349969 0.0242008087281605 0.0240024414435035 0.00163493765887983 0.00153131158249528 2058241 908534 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.02418298891583 0.0240051388789168 0.0241092545967803 0.0238345922026398 0.00162963470241396 0.00169390068214602 2058697 907723 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.0241551491299215 0.0240239944813645 0.024124513618677 0.0239719233997101 0.00153087142461007 0.00145898807961743 2056327 908436 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.0241001038823404 0.0237863821559887 0.024078736552987 0.0237888151369497 0.00139283386432649 0.00131152402221893 2051641 899451 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.0239397255713661 0.023606130001313 0.0238498512245365 0.0236209658960861 0.00223210607175871 0.00220643282422495 2037988 892635 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.0238480657192799 0.0238899689649478 0.0238040741588464 0.0238956282902266 0.00194219223284698 0.00171388512066273 2030185 903368 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.0239391852210911 0.0240717549554467 0.02392614633402 0.0240634775310903 0.00173981181191612 0.00174436097664435 2037942 910242 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.0240046850718193 0.0238632590652672 0.0239566643778134 0.0238803692683299 0.00171995165689854 0.00169348248852209 2043518 902358 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.0240167019920659 0.0240831000514496 0.02392614633402 0.0239871824216068 0.00176096006884708 0.00172480003533587 2044541 910671 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.0241486649266213 0.0243134398793876 0.0242008087281605 0.024277103837644 0.00187691913535849 0.00181647119450251 2055775 919381 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.0241039920549715 0.024178382990607 0.0241092545967803 0.0241855497062638 0.00169123684484732 0.00151108155351609 2051972 914274 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.0242442246980837 0.0242330986167842 0.0242618448157473 0.024277103837644 0.00163906090467412 0.00157788658364629 2063910 916343 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.0242896258679303 0.0240727334369201 0.024277103837644 0.0240482185091936 0.00155651680754576 0.00157976676119746 2067775 910279 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.023992163041533 0.0240174095655027 0.02392614633402 0.0240939955748837 0.00159892190116314 0.00164572065012995 2042452 908187 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.0237904479345199 0.0237617085555908 0.023773556115053 0.023773556115053 0.00243251875799116 0.00246117423715021 2025280 898518 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.0238481949334761 0.0235810597192366 0.0237430380712596 0.0236057068741894 0.00194526993055058 0.00191707670662367 2030196 891687 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.0239676358377453 0.0238789676597328 0.0238956282902266 0.0239108873121233 0.00176311018923137 0.00172939777955286 2040364 902952 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.0241009496479882 0.0241391908407787 0.0240024414435035 0.0240939955748837 0.00197947401074885 0.0018646289388762 2051713 912792 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.0241873587050106 0.0242513459739917 0.0241702906843671 0.024277103837644 0.00222772779687745 0.00225675133995435 2059069 917033 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.0241648754348718 0.0240090528048105 0.0240634775310903 0.0240329594872969 0.00222681404830962 0.00223876693014026 2057155 907871 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.0240431204218162 0.0242371976607946 0.0240482185091936 0.024124513618677 0.00203050295994077 0.00191313706706783 2046790 916498 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.0243511670655568 0.0241186427298364 0.0243686579690242 0.0241092545967803 0.00196935111969042 0.00213482438198922 2073014 912015 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.024121811867302 0.0240595636051965 0.0241702906843671 0.0240177004654002 0.00182356225128572 0.00174855637560435 2053489 909781 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.0239784076030103 0.0239608163127142 0.0239719233997101 0.0240177004654002 0.00192751086075328 0.00214895171284357 2041281 906047 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.0238951114334418 0.0236946164610467 0.0239108873121233 0.0237888151369497 0.00205591131333493 0.00214243658679228 2034190 895981 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.024026193362114 0.0238136738554643 0.0240329594872969 0.0237125200274662 0.00159702685435638 0.00153103094606534 2045349 900483 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.023975247728576 0.0240712789374326 0.0240329594872969 0.0240177004654002 0.0014863419811359 0.00141870043088957 2041012 910224 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.0241140002818044 0.0241237467007654 0.0240939955748837 0.0240177004654002 0.00155078312416804 0.00153212659225364 2052824 912208 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.024063125128737 0.0240886535949475 0.0240024414435035 0.0240177004654002 0.00214064318646831 0.00223988306758227 2048493 910881 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.0241042269898737 0.0241845183338999 0.0240177004654002 0.0240482185091936 0.00226351948560453 0.00216706662347746 2051992 914506 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.024404391567646 0.0239275479426171 0.024277103837644 0.0239871824216068 0.00191725575681784 0.00200562459798671 2077545 904789 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.0241947943946647 0.0239288437694333 0.024124513618677 0.02392614633402 0.00182935799013912 0.00191161582683511 2059702 904838 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.0240199206002258 0.023928923105769 0.0239108873121233 0.0238498512245365 0.00163339127218973 0.00164726972376523 2044815 904841 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.0239249011790384 0.0238868219569656 0.0238956282902266 0.0239414053559167 0.00171595269865727 0.00153579677981818 2036726 903249 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.0243916933361831 0.0239637517571346 0.0241855497062638 0.0239871824216068 0.0025852108230714 0.0020369153232717 2076464 906158 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.0237248658565759 0.0238818502132627 0.0237125200274662 0.0238651102464332 0.00165017555376209 0.00140918371333961 2019697 903061 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.0238653686748256 0.0239687235008375 0.0238651102464332 0.0239414053559167 0.00143587792000096 0.00149655964610299 2031658 906346 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.0239540213601638 0.0240994433366007 0.0240024414435035 0.0240939955748837 0.00147581366414457 0.00157290084955344 2039205 911289 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.0241455872794027 0.0241685981758725 0.024124513618677 0.0240329594872969 0.00186014959341513 0.00184291650853278 2055513 913904 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.0241769863290793 0.0241025638991376 0.0240634775310903 0.0238193331807431 0.00233738226073761 0.00241855195199438 2058186 911407 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.0241290948492696 0.0240924881845056 0.0241092545967803 0.0242008087281605 0.00190434240207815 0.0018880886768881 2054109 911026 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.0240355907582013 0.024175368209851 0.024078736552987 0.0240939955748837 0.00155698958005452 0.00159592919313427 2046149 914160 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.0240105819378641 0.0240482185091936 0.0239719233997101 0.0240482185091936 0.00144436599436816 0.00144733474893732 2044020 909352 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.0240118153461005 0.024075377981443 0.0239719233997101 0.0240329594872969 0.00159400828776877 0.00148926692507446 2044125 910379 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.0250182647203015 0.157416470351914 0.0247959105821317 0.169954985885405 0.00243730881965806 0.0359703129092961 2129804 7726900 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.0241583677380814 0.0238752652974009 0.0240939955748837 0.0238651102464332 0.00161834705028998 0.00146055333904415 2056601 902812 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.0239436019972521 0.0239569552777109 0.0239566643778134 0.0239566643778134 0.00140888491506342 0.00139274655164316 2038318 905901 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.024060646565519 0.0241592100428165 0.0240024414435035 0.024078736552987 0.0016348961072778 0.00168850015112971 2048282 913549 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.0240650750884251 0.024087437104467 0.0240329594872969 0.0240024414435035 0.00187827902110999 0.00176911448106618 2048659 910835 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.0239691511678643 0.0241723534290949 0.02392614633402 0.0241550316624704 0.00203014294568539 0.00186742575425929 2040493 914046 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.0240924567512744 0.0242080018892626 0.0240634775310903 0.0241855497062638 0.00166671888373045 0.00170806237739981 2050990 915394 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.0240737559330607 0.0238802899319942 0.0240329594872969 0.02392614633402 0.00154010228019996 0.00164515980467767 2049398 903002 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.0239940190272603 0.0239866535127022 0.0239871824216068 0.0239719233997101 0.00140897976762443 0.00141642297901504 2042610 907024 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.023913013472988 0.0241352504694397 0.0238956282902266 0.024078736552987 0.00148470706020564 0.00136025732234131 2035714 912643 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.024801220110921 0.156980600160352 0.0247348744945449 0.169893949797818 0.00214005602491329 0.0384673229076188 2111327 7705505 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.0241898255214835 0.0240250787446188 0.0241092545967803 0.0239566643778134 0.00160032226060183 0.00143069197107194 2059279 908477 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.0238984357623077 0.0239451870545843 0.0238498512245365 0.0239414053559167 0.00150160089557881 0.00154378422136359 2034473 905456 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.0239529524063589 0.0240843958782658 0.0239108873121233 0.0239871824216068 0.00162630584313452 0.00158662250640338 2039114 910720 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.0239499922265914 0.0240996284547173 0.02392614633402 0.024078736552987 0.00167169541579252 0.00166365880932612 2038862 911296 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.0240559948544558 0.0241482880739372 0.0240482185091936 0.024124513618677 0.00186493783014214 0.00191554156693325 2047886 913136 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.0240030640209943 0.0240282521980462 0.0239719233997101 0.0240482185091936 0.00151061729134464 0.00139180578748487 2043380 908597 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.024166402511736 0.0239448961546868 0.0241855497062638 0.0239108873121233 0.00140741092792014 0.0013935255859278 2057285 905445 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.0240629959145408 0.0238335872757211 0.0240634775310903 0.0238498512245365 0.00154579483278616 0.00146312538415454 2048482 901236 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.024196979289255 0.149057675646893 0.0241702906843671 0.16910048065919 0.00157326832188506 0.0454948803572185 2059888 8410674 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv new file mode 100644 index 0000000..61dbe24 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.319659299754205 0.339732428354595 0.319615472648203 0.33141069657435 0.00705638299859455 0.0234088470430742 27212585 19169618 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.319248022714446 0.319545894681808 0.319050888838025 0.319569695582513 0.00569568950711441 0.00542911635743781 27177573 12083211 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.319054271900617 0.318862359258993 0.318898298619059 0.318913557640955 0.00495117179715599 0.00441161002764916 27161079 12057364 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.31896684087677 0.319752486499931 0.318944075684749 0.319569695582513 0.00435965534220409 0.0043919837336907 27153636 12091023 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.318885271478733 0.319269354661056 0.318730449378195 0.319462882429236 0.00598866758463208 0.00594747029874131 27146692 12072754 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.319291285976683 0.319656092852074 0.319157701991302 0.31949340047303 0.00681296916634963 0.00660341965724501 27181256 12087378 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.319686881111721 0.31976451917751 0.319325551232166 0.320149538414588 0.00643432225217916 0.00646850377762947 27214933 12091478 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.319317316763845 0.319195730541541 0.319203479056992 0.318791485465782 0.0061734532455199 0.00636696089169163 27183472 12069970 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.319286786973306 0.319535554512724 0.319188220035096 0.319340810254063 0.00513007406104651 0.00459778814353953 27180873 12082820 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.319298075595356 0.33402454398608 0.319371328297856 0.325154497596704 0.00520062495038423 0.0207226382974532 27181834 18847547 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.319887139622341 0.31920548891083 0.319295033188373 0.319386587319753 0.00820649754655946 0.00553588079967616 27231981 12070339 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.318941103758236 0.319755607062468 0.318822003509575 0.319569695582513 0.0047762612485616 0.0045173536570731 27151445 12091141 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.318993552975148 0.32004211701607 0.318883039597162 0.320042725261311 0.00429580418469088 0.00413062823511484 27155910 12101975 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.321317482040548 0.318719580300206 0.319188220035096 0.318547341115434 0.0138326886462773 0.00404572053850184 27353746 12051965 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.319942549019021 0.319759573879252 0.319798580910964 0.31958495460441 0.00467976179226741 0.00475075214876204 27236698 12091291 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.320139812109637 0.320319582627405 0.320119020370794 0.320149538414588 0.00615926831085866 0.00699808603199911 27253491 12112467 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.319825539690989 0.32006517744431 0.31985961699855 0.320042725261311 0.00601565834191712 0.00558990776176564 27226737 12102847 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.320165008877896 0.319688832313266 0.320210574502174 0.31953917753872 0.00570030214906066 0.00554787006724554 27255636 12088616 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.31986336421024 0.319943925077938 0.319935912108034 0.320180056458381 0.00439748197452377 0.00400103058065564 27229957 12098262 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.319182793038855 0.319451748896795 0.319249256122683 0.3196307316701 0.00427392971388445 0.00470344618188058 27172020 12079651 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.320154871436867 0.319557715795825 0.3196307316701 0.319844357976654 0.00701067291140214 0.00539336124338569 27254773 12083658 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.319354072329291 0.323858247653396 0.319356069275959 0.322270542458228 0.00493218107255678 0.00847242280690752 27186601 12246277 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.319900307723608 0.319946648958797 0.319874876020447 0.31990539406424 0.00457366587619595 0.00408279247232576 27233102 12098365 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.320180361873754 0.31955142177986 0.320256351567864 0.31967650873579 0.00430615933960081 0.00453376662089249 27256943 12083420 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.320115108704673 0.319391770627018 0.320164797436484 0.319356069275959 0.00424012979018431 0.00401411893572302 27251388 12077383 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.320381865539355 0.320664642796743 0.320332646677348 0.320607309071489 0.0050241502868546 0.00470691179956311 27274097 12125515 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.320914404228875 0.320998807442647 0.320897230487526 0.320714122224765 0.00542166926422018 0.00540601510820699 27319432 12138151 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.321033410503575 0.320719966668161 0.321095597772183 0.320912489509422 0.00578874884664285 0.00576994909668542 27329563 12127607 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.320655517713416 0.320313447284112 0.320729381246662 0.320134279392691 0.00446934680777786 0.0045956558038407 27297393 12112235 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.319730261841409 0.320375091616939 0.319645990691997 0.320408941786831 0.00398481130095669 0.00388885745593546 27218626 12114566 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.318838249258061 0.319000404483085 0.318806744487678 0.319020370794232 0.00658689289510117 0.00679874362719371 27142689 12062584 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.319282053035027 0.319325789241173 0.319279774166476 0.319295033188373 0.00565597566460635 0.00475432062486835 27180470 12074888 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.320126538287664 0.320028524057223 0.320012207217517 0.320073243305104 0.00517276489539795 0.00552640060978936 27252361 12101461 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.320823860317574 0.320280126023125 0.320851453421836 0.320042725261311 0.00457497924442142 0.00481929500541304 27311724 12110975 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.320301881951907 0.320342378601192 0.320286869611658 0.319996948195621 0.00407347808679302 0.00434891005442272 27267288 12113329 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.320712254492293 0.320963291209706 0.320653086137179 0.320881971465629 0.0044937778559236 0.00468089100251158 27302223 12136808 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.321178153896809 0.321596818295594 0.321278706034943 0.321614404516671 0.00535686396025998 0.00493513950877718 27341885 12160764 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.321102551845287 0.320929917057828 0.321049820706493 0.320698863202869 0.00518812124131799 0.00472664336122735 27335449 12135546 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.320247294827385 0.320153637458598 0.320149538414588 0.320073243305104 0.00446406800519714 0.0043739072443217 27262641 12106192 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.320192872157295 0.320503325580851 0.320286869611658 0.320454718852522 0.00407416895860149 0.00380050571420329 27258008 12119415 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.319003267533353 0.319411366701932 0.319066147859922 0.319295033188373 0.00688541235037202 0.00678711737478073 27156737 12078124 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.319656081146045 0.319866360587084 0.319752803845273 0.320164797436484 0.00598032131564114 0.00563306509469454 27212311 12095329 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.320248739677034 0.320311199421268 0.320103761348898 0.320378423743038 0.00521751365552121 0.00497536514649721 27262764 12112150 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.321120512618559 0.320895723097148 0.321141374837873 0.320897230487526 0.00526772603440963 0.00563280465740439 27336978 12134253 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.320827807223931 0.320959509511038 0.320836194399939 0.321095597772183 0.00509449257028007 0.00518185687158194 27312060 12136665 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.320703914303266 0.320705791909518 0.320958266575113 0.320653086137179 0.00508925075463674 0.00504742101149572 27301513 12127071 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.320986681951531 0.320973419815228 0.321126115815976 0.320576791027695 0.00525682714583171 0.00480538671441674 27325585 12137191 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.320921393542215 0.321039480537408 0.320759899290456 0.321019302662699 0.00537742613949603 0.00574729369935106 27320027 12139689 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.320799556301944 0.320544368911845 0.320759899290456 0.320195315480278 0.00468865984559349 0.00439092760615314 27309655 12120967 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.320202762916677 0.320813292644371 0.320119020370794 0.320927748531319 0.00422685842245764 0.00416321837934544 27258850 12131136 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.319520183051878 0.318629692231875 0.319661249713893 0.318593118181125 0.00609955743231917 0.00645682470565598 27200742 12048566 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.319641726623522 0.319645117992304 0.31967650873579 0.319432364385443 0.00509806061664286 0.00488396078521366 27211089 12086963 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.320380878812766 0.320062929581465 0.320195315480278 0.319966430151827 0.00431168754195437 0.00436215118619469 27274013 12102762 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.32065159430055 0.320686592516283 0.320683604180972 0.320622568093385 0.00456471613964171 0.00432219116360606 27297059 12126345 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.320388326249165 0.320697964057731 0.320378423743038 0.320668345159075 0.00610163492652482 0.00634569594292947 27274647 12126775 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.321039847719895 0.319480627322984 0.321019302662699 0.319218738078889 0.00633972972865888 0.00650162713026352 27330111 12080743 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.321145991308701 0.32055304301788 0.320759899290456 0.320408941786831 0.00569257049607696 0.00564871907754933 27339147 12121295 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.321321781349258 0.321849874760983 0.32124818799115 0.321492332341497 0.00562314450296994 0.00565732373861965 27354112 12170333 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.320997970573581 0.320823632813456 0.320851453421836 0.320607309071489 0.00488962240961861 0.00497607164525187 27326546 12131527 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.320572996829025 0.321066772236884 0.320531013962005 0.320927748531319 0.00472570079512089 0.00488434058353519 27290368 12140721 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.31891621240535 0.319337636800635 0.318883039597162 0.319401846341649 0.00549888419050566 0.00548090349488562 27149326 12075336 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.319823683705262 0.319522675580897 0.319935912108034 0.319478141451133 0.00444959576143397 0.00416408661279083 27226579 12082333 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.320254707023549 0.319843141486173 0.320271610589761 0.31981383993286 0.00422179484338299 0.00400860162733552 27263272 12094451 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.320502116969037 0.319500778752248 0.320561532005798 0.319478141451133 0.00403855499472697 0.00420190810021187 27284334 12081505 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.320166806129898 0.320648193729811 0.319935912108034 0.320439459830625 0.00555544410638724 0.00543505377687764 27255789 12124893 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.320465831273395 0.320685455362138 0.320332646677348 0.320729381246662 0.00655427968088436 0.00679214848323105 27281245 12126302 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.320622168704051 0.320796261777644 0.320653086137179 0.321034561684596 0.00614934396894232 0.00588230176862473 27294554 12130492 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.321204959969148 0.321485059844059 0.321324483100633 0.321675440604257 0.00590362113805157 0.00529649836010326 27344167 12156538 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.321318280819216 0.320870044569831 0.321126115815976 0.320500495918212 0.00527026490266776 0.00553022362464359 27353814 12133282 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.321127290490487 0.320786133172122 0.320958266575113 0.320637827115282 0.00541402670106145 0.00522271222748511 27337555 12130109 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.31990424288322 0.319278002321646 0.319707026779583 0.319432364385443 0.00628729099775016 0.00559791559758918 27233437 12073081 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.319001975391391 0.31903108119955 0.318989852750439 0.319081406881819 0.00433881417670286 0.00422999124253412 27156627 12063744 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.319799332702651 0.319334965810667 0.319752803845273 0.319295033188373 0.00469553928619831 0.00433833729062201 27224506 12075235 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.32038396820673 0.320407090605666 0.320515754940108 0.320119020370794 0.00469374758310163 0.00444603819785055 27274276 12115776 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.320359147334314 0.321196989609188 0.320393682764935 0.32111085679408 0.00555860363997583 0.00522771387143569 27272163 12145645 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.320638285238341 0.320986351637945 0.320561532005798 0.321080338750286 0.00702993647945611 0.00735325417454219 27295926 12137680 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.320881196180452 0.320512026132331 0.320943007553216 0.320759899290456 0.0059733166441187 0.00536554041795428 27316605 12119744 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.321098334763793 0.320641079905045 0.321004043640803 0.320729381246662 0.00554855343048718 0.00565525593170026 27335090 12124624 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.321017951787012 0.321151794343293 0.320943007553216 0.321141374837873 0.00478286078591928 0.00491882891538096 27328247 12143936 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.320883522035983 0.320955146012576 0.320836194399939 0.320912489509422 0.00529478864753468 0.00481754943446595 27316803 12136500 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.318991238866362 0.340077678403992 0.318715190356298 0.334248874647135 0.00587175713592862 0.0213157375626497 27155713 16692956 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.319272491184508 0.318550673241533 0.319295033188373 0.318669413290608 0.00431323814871936 0.00408548520162845 27179656 12045578 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.319311184962898 0.319464178256053 0.319096665903716 0.319417105363546 0.00475647660360078 0.00494638814388237 27182950 12080121 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.319682170666933 0.319735111842416 0.31967650873579 0.319798580910964 0.00491412977787515 0.00514201439476633 27214532 12090366 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.32024240818142 0.320198779833603 0.319996948195621 0.320347905699245 0.00563651555903332 0.00518809355028583 27262225 12107899 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.320380033047118 0.320603950499945 0.320317387655451 0.320378423743038 0.00521938785592488 0.00530737942103651 27273941 12123220 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.320938931432663 0.320456649370023 0.320973525597009 0.320332646677348 0.00478195657553113 0.00464977302803525 27321520 12117650 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.320709353046251 0.321331570479954 0.320653086137179 0.321278706034943 0.00521608309140698 0.00467407584837457 27301976 12150734 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.320959734918251 0.32113407589499 0.320881971465629 0.321126115815976 0.0041193754013458 0.00410616980224887 27323291 12143266 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.320677072990691 0.320377365925229 0.320759899290456 0.320241092545968 0.00485876779177361 0.00462599894340838 27299228 12114652 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.317755551761357 0.339255646984056 0.317570763714046 0.334386205844205 0.00623231760772613 0.0205365019032773 27050519 16652606 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.318731024968705 0.318772947208677 0.318867780575265 0.318623636224918 0.00516925403928565 0.00415765037474278 27133561 12053983 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.319107731337608 0.318754620515133 0.319050888838025 0.318791485465782 0.00524624397290669 0.00558069105864562 27165630 12053290 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.319497112444484 0.31903002338174 0.319249256122683 0.318959334706645 0.00530044157501348 0.00502238654789697 27198778 12063704 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.319960650753234 0.321005630367516 0.320119020370794 0.320592050049592 0.00532084553280298 0.00605468269284791 27238239 12138409 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.320550302117474 0.32012021041583 0.320653086137179 0.320210574502174 0.00475995853057671 0.00454629006739594 27288436 12104928 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.320354436889525 0.320125816850218 0.320378423743038 0.320332646677348 0.00406466259097358 0.00411922919640227 27271762 12105140 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.319952874407971 0.320615877395742 0.319920653086137 0.320439459830625 0.00418053998041558 0.00372692644812437 27237577 12123671 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.3200857418419 0.32013073570303 0.320073243305104 0.320042725261311 0.00417437645512026 0.00397577623410429 27248888 12105326 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.320393600537719 0.335087713235305 0.320119020370794 0.326054779888609 0.00443947069891215 0.0191531349090572 27275096 18907537 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv new file mode 100644 index 0000000..0144d31 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.033352733082881 0.035624499396418 0.0332799267566949 0.0356145571068894 0.00257140821764557 0.00339990500514886 2839317 2010135 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.0332892536723115 0.0332927263521854 0.0332494087129015 0.0333714808880751 0.00201023033124923 0.0020863756772569 2833913 1258921 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.0331839088621733 0.0335298891049923 0.0331578545815213 0.0334782940413519 0.00178247626187384 0.00179476684788364 2824945 1267889 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.033342501667891 0.0333615902915597 0.0332951857785916 0.033325703822385 0.00178976850516566 0.00167811198152413 2838446 1261525 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.033408189466541 0.0334790874047088 0.0333714808880751 0.033524071107042 0.00224809095622794 0.00232189796616303 2844038 1265968 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.0334904284290496 0.03356265501163 0.0334477759975586 0.0335851071946288 0.00274932637103506 0.00261909077214589 2851039 1269128 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.0334379087316669 0.0334026600679992 0.0333562218661784 0.033325703822385 0.00263996565772943 0.00264522036432668 2846568 1263078 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0333889600447974 0.0334151158727017 0.0334019989318685 0.0332646677347982 0.00235077865748956 0.00242420197875748 2842401 1263549 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0332777418621046 0.0334670282816847 0.0333562218661784 0.0334935530632486 0.00193563244151122 0.00200369047078839 2832933 1265512 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.033176661120441 0.0349169309304184 0.0331578545815213 0.0345769436179141 0.00212697249097741 0.0027405361318919 2824328 1970210 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.0335423255489416 0.0331626147616624 0.0334477759975586 0.0331120775158312 0.00225766434406157 0.002165216710644 2855457 1254001 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.0331533085911641 0.0334955100261955 0.0331425955596246 0.033524071107042 0.00179513236494178 0.00176828687333833 2822340 1266589 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.033249678888039 0.0335670449555379 0.0332494087129015 0.0335088120851453 0.00152209811546823 0.0014749452294929 2830544 1269294 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.0336548358735963 0.0332125966531438 0.0334630350194553 0.0331883726253147 0.00200531609237882 0.00145049493405025 2865035 1255891 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.0333942578268416 0.0333429462526738 0.0333714808880751 0.0333867399099718 0.00181823983760474 0.00182682406352961 2842852 1260820 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.033522238614805 0.0336344279499795 0.0335545891508354 0.0335088120851453 0.00238229387581079 0.00240555329859084 2853747 1271842 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.033506404002398 0.0334505792147528 0.0334782940413519 0.0334325169756619 0.00230557659209314 0.00225049310523019 2852399 1264890 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.0333360996918065 0.0333011624492132 0.033325703822385 0.0332951857785916 0.00227694919059546 0.00221175285402818 2837901 1259240 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.0334458025443802 0.0333257302678302 0.0334782940413519 0.0332951857785916 0.0017033898459887 0.00168180023898181 2847240 1260169 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.0332149672562417 0.0335219025805333 0.0332036316472114 0.0334782940413519 0.00176995773450395 0.00173226872729747 2827589 1267587 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.0334255394090671 0.0332737649679567 0.0333714808880751 0.0333104448004883 0.00215429101206857 0.00203146551687338 2845515 1258204 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.0333246936023056 0.0337054075249721 0.0333104448004883 0.0335698481727321 0.00197435559888252 0.00186999737135344 2836930 1274526 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.0335187968184881 0.0333468866240128 0.0336003662165255 0.0333409628442817 0.00169130521946636 0.00170195870480505 2853454 1260969 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.0334142742805075 0.0334713124438117 0.0333714808880751 0.0334935530632486 0.00162905522158094 0.00160030069423674 2844556 1265674 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.0335791046078781 0.0337126800224099 0.0336156252384222 0.033676661326009 0.0016777667291688 0.00146396241098521 2858588 1274801 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.033398181239708 0.0337079991786045 0.0334477759975586 0.0337376974135958 0.00194608799182813 0.0019136295963992 2843186 1274624 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.0334535906363876 0.0333343779284198 0.0334172579537652 0.0333104448004883 0.00211205304003751 0.00199404140692715 2847903 1260496 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.033426937271735 0.0337518192813477 0.0333714808880751 0.0336308842603189 0.00222433427215878 0.00234904208891684 2845634 1276281 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.033368344507131 0.0333131157904563 0.0333104448004883 0.0333104448004883 0.00167870256184175 0.0017345041821784 2840646 1259692 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.0332966776152204 0.0333519112586062 0.033325703822385 0.0333562218661784 0.00161626971850395 0.00166054760642784 2834545 1261159 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.0332997905026743 0.0333085142829866 0.0332646677347982 0.0332036316472114 0.00256294805593792 0.00257686325115597 2834810 1259518 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.0332608852828731 0.0333987461421054 0.0331883726253147 0.0333562218661784 0.00215597196732453 0.00178854205741987 2831498 1262930 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.0334630937531808 0.0336735672089173 0.0334782940413519 0.0336614023041123 0.00201253378329723 0.00214805289991319 2848712 1273322 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.0334114903019166 0.0335137838288483 0.0333714808880751 0.0335393301289387 0.00179368314249345 0.00181370982269169 2844319 1267280 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.0336982166032842 0.0335503049887085 0.0336919203479057 0.0334935530632486 0.00157305768642853 0.00148929259419544 2868728 1268661 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.0335210287000588 0.0337294728801298 0.0335088120851453 0.0338139925230793 0.00177785918032203 0.00168040181039362 2853644 1275436 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.0334459200118313 0.0334963298349976 0.0334172579537652 0.0333714808880751 0.00207064876377597 0.00205152423995848 2847250 1266620 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.033376860897335 0.0335803205690425 0.0333867399099718 0.0335545891508354 0.00192415049188245 0.00183557990702353 2841371 1269796 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.0333129351104514 0.0333963131611444 0.0332951857785916 0.0334019989318685 0.00165467549548024 0.00167099749081044 2835929 1262838 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.033407331954148 0.0334168083811963 0.0333714808880751 0.0334477759975586 0.00149830738649423 0.00159885658992957 2843965 1263613 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.0331122302235177 0.0331755730298242 0.0331578545815213 0.0331425955596246 0.00255101283315122 0.00240726802623506 2818843 1254491 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.0333147910961786 0.0333623043185809 0.0333409628442817 0.0333409628442817 0.00223282608306223 0.00214667272825382 2836087 1261552 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.0335406340176458 0.033267074270314 0.033524071107042 0.0332188906691081 0.00199211333730875 0.00184189166520261 2855313 1257951 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.0334726321102094 0.0335194167086819 0.0334325169756619 0.0334935530632486 0.00198473921643191 0.00207505977333147 2849524 1267493 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.0336163065496385 0.033621046554694 0.0335851071946288 0.0336919203479057 0.00198802211857737 0.00201751528109447 2861755 1271336 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.0336498200134348 0.0334169934993129 0.0336614023041123 0.0333409628442817 0.00196857074133038 0.00197126242122449 2864608 1263620 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.0336191962489354 0.0334140051640021 0.0336614023041123 0.0333562218661784 0.00202832844429598 0.00203757108373957 2862001 1263507 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.0335087533514198 0.0334252973691145 0.0334630350194553 0.0334325169756619 0.00201415079889138 0.0020271618702671 2852599 1263934 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.0334274306350296 0.033520130735703 0.0334172579537652 0.033524071107042 0.00182188633782635 0.00172416363352754 2845676 1267520 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.0332463310656829 0.0335110335025445 0.0332799267566949 0.0335088120851453 0.00154840971112998 0.00159017857563056 2830259 1267176 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.0333390951118093 0.0332942072971181 0.0333562218661784 0.0332494087129015 0.00233390526142853 0.00219004117168518 2838156 1258977 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.0334471886603031 0.033425112250998 0.0334172579537652 0.0334630350194553 0.00194303575337138 0.0018755497700424 2847358 1263927 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.0335008360452163 0.0335421333461329 0.0334935530632486 0.0335698481727321 0.00172976479932116 0.00177631242720645 2851925 1268352 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.0336543072700664 0.0332844224823837 0.0336919203479057 0.0332799267566949 0.00179412327011483 0.00165170237341791 2864990 1258607 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.03366976598663 0.0335962671725151 0.0337071793698024 0.0334935530632486 0.00232920237003779 0.00248544471265885 2866306 1270399 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.0335935413576171 0.0335948126730276 0.0335698481727321 0.0336614023041123 0.00239962870282624 0.00241684344652151 2859817 1270344 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.0335384256295653 0.0336301702332978 0.0335698481727321 0.0335393301289387 0.00211962134058787 0.00213454925504463 2855125 1271681 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.0333810427385939 0.03338885554559 0.0333104448004883 0.0334325169756619 0.00212602296244003 0.00208186863429333 2841727 1262556 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.0335093759289106 0.0335828328863392 0.0334782940413519 0.0335545891508354 0.00197345660921128 0.001960208493514 2852652 1269891 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.033479809371471 0.0335000586427748 0.033524071107042 0.0334172579537652 0.00191537681081157 0.00190581068940405 2850135 1266761 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.0333472943398955 0.0335321898587271 0.0333409628442817 0.0335851071946288 0.00200084819581079 0.0020161426660591 2838854 1267976 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.033267228525232 0.0334209603160971 0.0332951857785916 0.0333104448004883 0.00171911234323711 0.00151648207432765 2832038 1263770 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.0334747582710741 0.033569715945506 0.0334325169756619 0.0336003662165255 0.00157951250546949 0.00145711290243095 2849705 1269395 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.0335696837183006 0.0335572336953583 0.0335545891508354 0.0335698481727321 0.00159059587558124 0.00144324701015093 2857786 1268923 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.0334566447901159 0.0334956686988669 0.0334172579537652 0.0335088120851453 0.00215487800546501 0.00185722758286303 2848163 1266595 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.0335748287926584 0.0334671076180204 0.0335393301289387 0.0334019989318685 0.00255803267144221 0.00259341007147445 2858224 1265515 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.0334707996179724 0.0337079198422688 0.0334782940413519 0.0337376974135958 0.00227251660395379 0.00220379683714733 2849368 1274621 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.0336573496770497 0.0334345797203897 0.0336308842603189 0.0334477759975586 0.00209536747686057 0.00228110535908299 2865249 1264285 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.0333673695272869 0.03363448084087 0.033325703822385 0.0336003662165255 0.00210918008778787 0.00207903318177917 2840563 1271844 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.0333898645441708 0.0334202198436307 0.0333714808880751 0.0334782940413519 0.00200984629546489 0.0019730923128093 2842478 1263742 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.0332520164903157 0.0333099423370289 0.033173113603418 0.033325703822385 0.00218327134630994 0.00230455442607897 2830743 1259572 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.0334034320347718 0.0333119521908663 0.0334019989318685 0.0333409628442817 0.00178022693427582 0.00160599444182033 2843633 1259648 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.0334480814129314 0.0334732429613134 0.0334935530632486 0.033524071107042 0.00168838485085253 0.00166722946365099 2847434 1265747 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.0333833333538901 0.0333024053851389 0.0333562218661784 0.0334172579537652 0.00176650272896923 0.00158525324435592 2841922 1259287 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.0333888425773463 0.0338889653603013 0.0334019989318685 0.0339665827420462 0.00209803142736615 0.0022293052223595 2842391 1281467 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.0334917205710116 0.0337760433091767 0.0334477759975586 0.0337224383916991 0.00258730694258458 0.00283511942734791 2851149 1277197 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.0334093993812872 0.0334674514088084 0.0333104448004883 0.0334019989318685 0.00230074823775416 0.00212874600784249 2844141 1265528 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.0336767083129894 0.033714901439809 0.0336308842603189 0.0337376974135958 0.00208299629360952 0.00208386736811938 2866897 1274885 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.0334663710950662 0.0337131824858692 0.0334325169756619 0.0336308842603189 0.00193978289276763 0.00185375147012207 2848991 1274820 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.0335871863685131 0.0335917714468263 0.0335393301289387 0.0336003662165255 0.00205690743406452 0.00185694869130694 2859276 1270229 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.0334399291718257 0.0354887975045286 0.0333562218661784 0.0350652323186084 0.00201908895561982 0.00305796285417006 2846740 1741993 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.0332576901682034 0.0332036580926566 0.0332494087129015 0.0332494087129015 0.00172435998315632 0.0016151947768934 2831226 1255553 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.0332440874373671 0.033425694050793 0.0332799267566949 0.0333104448004883 0.00176696727894953 0.00204574306825429 2830068 1263949 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.0333378617035729 0.0335004024335628 0.033325703822385 0.0335393301289387 0.00193487929916095 0.00183941675729449 2838051 1266774 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.0336350543548326 0.0332975129777717 0.0335545891508354 0.0332799267566949 0.00208239953053644 0.0021482885849131 2863351 1259102 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.0334832981547684 0.0336050470603309 0.033524071107042 0.0336003662165255 0.00205879300282892 0.00200123469767607 2850432 1270731 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.0335140393867189 0.033602508297589 0.0335545891508354 0.0335393301289387 0.00187126101700385 0.00175422409704178 2853049 1270635 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.0335008712854516 0.0332368471264181 0.0335088120851453 0.0332951857785916 0.00186847677452798 0.00197974852609381 2851928 1256808 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.0333957261699802 0.0334771833326524 0.033325703822385 0.0334477759975586 0.00152905050425203 0.00155913797471566 2842977 1265896 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.0335465543771808 0.0333659273445771 0.033524071107042 0.0334172579537652 0.00179363969330966 0.00188155043199907 2855817 1261689 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.0328463543947187 0.0352257474501492 0.0328068970778973 0.0349584191653315 0.002462431182791 0.00341608118873777 2796209 1729081 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.0332943047727084 0.0331672956054678 0.0333409628442817 0.0331883726253147 0.00191553909673961 0.00167186050701518 2834343 1254178 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.033076085488817 0.0330550346904739 0.0330205233844511 0.0331120775158312 0.00204829331976168 0.00208776135523106 2815766 1249933 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.0332794098999101 0.0333913414174415 0.0332799267566949 0.0333867399099718 0.00195368867947022 0.0018695851953139 2833075 1262650 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.0336493618903755 0.0335804792417139 0.0336156252384222 0.0335851071946288 0.00208800249762715 0.00199270495894081 2864569 1269802 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.0333520635184098 0.0334003328688191 0.0332646677347982 0.0333104448004883 0.00188554054327149 0.00185430239230893 2839260 1262990 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.0333728787507431 0.0334732165158681 0.0333562218661784 0.0334325169756619 0.00158920130616019 0.00142160553627083 2841032 1265746 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.033370823070349 0.0332055357192678 0.0333409628442817 0.0331425955596246 0.00162373968402055 0.00148246655868243 2840857 1255624 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.0334637045839265 0.0333161041257671 0.0334935530632486 0.0332951857785916 0.00153851216635943 0.00150234154803665 2848764 1259805 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.0332799032632047 0.0349764074431772 0.0332646677347982 0.0347142748149844 0.00169142031966893 0.00251627288709915 2833117 1973566 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} From 8169daeb891374a265412c32527de6b5fb56e7a5 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 4 Jan 2023 13:35:25 +0100 Subject: [PATCH 11/11] Added parser for the assay results xml file The `sensospot_parser.parse_folder()` function now tries to parse the xml file first and will fall back to parsing csv files if an error occurs --- README.md | 14 +- src/sensospot_parser/__init__.py | 40 +++- src/sensospot_parser/xml_parser.py | 192 ++++++++++++++++ tests/conftest.py | 4 +- tests/test_sensospot_data.py | 44 +++- tests/test_xml_parser.py | 341 +++++++++++++++++++++++++++++ 6 files changed, 621 insertions(+), 14 deletions(-) create mode 100644 src/sensospot_parser/xml_parser.py create mode 100644 tests/test_xml_parser.py diff --git a/README.md b/README.md index f2a7ee0..cd7a5fc 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,16 @@ There is a `columns` module available, providing constans that define the column ## Avaliable public functions: - **parse_folder(path_to_folder)** + Tries the `parse_xml_folder()` function first and if an error occurs, + it falls back to the `parse_csv_folder()` + - **parse_xml_folder(path_to_folder)** + Searches the folder for a parsable Sensospot XML result file and parses it into + a pandas data frame. It will add additional meta data from parameters folder, + if it is present. + - **parse_csv_folder(path_to_folder)** Searches the folder for parsable Sensospot .csv files, parses them into one big pandas data frame and will add additional meta data from parameters folder, if it is present. -- **parse_file(path_to_csv_file)** - Parses a Sensospot csv file into a pandas data frame and will add some additional - meta data from the file name. Is internally also used by `parse_folder()` ## CLI @@ -63,8 +67,8 @@ Arguments: SOURCES: One or more folders with Sensospot measurements Options: - -o, --output FILE Output file path, defaults to 'collected_data.csv' - -q, --quiet Ignore Sanity Check + -o, --output FILE Output file path, defaults to 'collected_data.csv' + -q, --quiet Ignore sanity check for csv file parsing --help Show this message and exit. ``` diff --git a/src/sensospot_parser/__init__.py b/src/sensospot_parser/__init__.py index 74c69ab..9a8cf36 100644 --- a/src/sensospot_parser/__init__.py +++ b/src/sensospot_parser/__init__.py @@ -3,19 +3,43 @@ Parsing the numerical output from Sensovations Sensospot image analysis. """ -__version__ = "1.0.1" +__version__ = "2.0.0" import pathlib +from typing import Union import click import pandas from . import columns # noqa: F401 -from .csv_parser import parse_csv_file, parse_csv_folder # noqa: F401 +from .csv_parser import parse_csv_folder +from .xml_parser import parse_xml_folder DEFAULT_OUTPUT_FILENAME = "collected_data.csv" +PathLike = Union[str, pathlib.Path] + + +def parse_folder(source: PathLike, quiet: bool = False) -> pandas.DataFrame: + """parses an assay result folder + + The function will first try to use an assay results xml file, and will + fall back to parsing csv files if the xml file could not be parsed. + + Args: + folder: path of folder containing the assay result + quiet: skip sanity check for csv files, defaults to False + + Returns: + a pandas data frame with parsed data + """ + try: + return parse_xml_folder(source) + except ValueError: + pass + return parse_csv_folder(source, quiet) + @click.command() @click.argument( @@ -42,18 +66,22 @@ DEFAULT_OUTPUT_FILENAME = "collected_data.csv" "--quiet", is_flag=True, default=False, - help="Ignore Sanity Check", + help="Ignore sanity check for csv file parsing", ) def main(sources, output, quiet=False): """Parses the measurement results of the Sensospot reader The resulting output is either echoed to stdout or saved to a file. + At first parsing the assay result xml file is tried. + I this doesn't work, the fallback is to parse the csv files. """ paths = (pathlib.Path(source) for source in sources) - collection = (parse_csv_folder(source, quiet) for source in paths) - result = pandas.concat(collection, ignore_index=True).to_csv( - output, sep="\t", index=False + collection = (parse_folder(source, quiet) for source in paths) + result = ( + pandas.concat(collection, ignore_index=True) + .reset_index() + .to_csv(output, sep="\t", index=False) ) # if 'output' is None, the call to 'to_csv()' returns the csv as text # if 'output' is not None, 'to_csv()' writes to the file and returns None diff --git a/src/sensospot_parser/xml_parser.py b/src/sensospot_parser/xml_parser.py new file mode 100644 index 0000000..d097944 --- /dev/null +++ b/src/sensospot_parser/xml_parser.py @@ -0,0 +1,192 @@ +""" Sensospot Data Parser + +Parsing the csv result files from Sensovations Sensospot image analysis. +""" + +import pathlib +from typing import Union, Optional +from datetime import datetime + +import pandas +from defusedxml import ElementTree + +from . import columns, parameters + +PathLike = Union[str, pathlib.Path] + +RESULT_TAG_TYPES = { + "System.Int32": int, + "System.UInt32": int, + "System.Double": float, + "System.Boolean": lambda x: x.lower() == "true", +} + +DATETIME_XML_FORMAT = "%m/%d/%Y %I:%M:%S %p" + + +class ParserTarget: + """Class to parse the event stream emitted by ElementTree.XMLParser + + The methods "start()", "data()", "end()" and "close()" are defined + according to the requirements of the ElementTree.XMLParser + """ + + def __init__(self): + """initialization of the object instance""" + self.collected = [] + self._current = {} + self._data_func = None + + def start(self, tag: str, attributes: dict[str:str]) -> None: + """start of an xml tag + + The sensovation software uses sometimes the attributes of a tag to + store relevant data and sometimes the data part of the xml tree. + + This methods extracts the data from the attributes or preparse the + parsing of the data section + + Args: + tag: the name of the tag + attributes: the attributes of the tag as a dict + """ + if tag == "ScanJobResult": + self._current[columns.ANALYSIS_NAME] = attributes["ID"] + elif tag == "AssayResult": + well = attributes["ID"] + self._current[columns.WELL_NAME] = attributes["ID"] + self._current[columns.WELL_ROW] = well[0] + self._current[columns.WELL_COLUMN] = int(well[1:]) + elif tag.startswith("ChannelConfig"): + self._current[columns.EXPOSURE_ID] = int(tag[13:]) + elif tag == "Spot": + self._current[columns.POS_ID] = int(attributes["ID"]) + elif tag == "Result": + self._result_attributes_parser(attributes) + elif tag == "Timestamp": + self._data_func = self._data_timestamp_parser + elif tag == "ImageFileName": + self._data_func = self._data_image_name_parser + + def _result_attributes_parser(self, data: dict[str:str]) -> None: + """parses the attributes of the "Result" tag""" + label = data["Label"] + converter = RESULT_TAG_TYPES.get(data["Type"], str) + self._current[label] = converter(data["Value"]) + + def _data_timestamp_parser(self, data: str) -> None: + """parses the data section of a "Timestamp" tag""" + timestamp = datetime.strptime(data.strip(), DATETIME_XML_FORMAT) + self._current[columns.ANALYSIS_DATETIME] = timestamp + + def _data_image_name_parser(self, data: str) -> None: + """parses the data section of a "ImageFileName" tag""" + self._current[columns.ANALYSIS_IMAGE] = data.strip() + + def data(self, data: str) -> None: + """parses the data section of the xml tree + + The data sections in the xml tree of the sensovation software are + not often used. + + The "start()" method sets a parser for the upcoming data section and + this parser is removed after it was called. + """ + if self._data_func: + self._data_func(data) + self._data_func = None + + def end(self, tag: str) -> None: + """the end of a tag is reached + + If it is the end of a "Spot" tag, a copy of the current data is added + to the collected data property. + """ + if tag == "Spot": + spot_data = dict(self._current) + self.collected.append(spot_data) + + def closed(self) -> None: + """the end of the xml file is reached""" + pass + + +def _find_result_xml_file(folder: PathLike) -> Optional[pathlib.Path]: + """searches a results folder for the analysis xml file + + There may be multiple xml files in the folder, but only one xsl file with + the same (base) name as the xml file we are looking for. This is why we + first look for the xsl file and then derive the path from the xml file + from it. + + Args: + folder: path of folder containing data files + + Returns: + Path to xml assay result file or None if it could not be found + """ + source = pathlib.Path(folder) + files = (i for i in source.iterdir() if i.is_file()) + not_hidden = (f for f in files if not f.name.startswith(".")) + xsl_files = [f for f in not_hidden if f.suffix == ".xsl"] + if len(xsl_files) != 1: + # multiple xsl files in a folder + # this does not to be a "normal" results folder + return None + xsl_file = xsl_files[0] + xml_file = xsl_file.with_suffix(".xml") + return xml_file if xml_file.is_file() else None + + +def parse_xml_file(xml_file: PathLike) -> pandas.DataFrame: + """parses an assay result xml file into a pandas data frame + + Will raise a ValueError on a non-parsable xml file. + + Args: + xml_file: path to the xml file + + Returns: + A pandas DataFrame with the parsed data + + Raises: + ValueError if the xml file could not be parsed + """ + xml_file = pathlib.Path(xml_file) + if not xml_file.is_file(): + raise ValueError("Xml file does not exist") + + target = ParserTarget() + parser = ElementTree.DefusedXMLParser(target=target) + + try: + parser.feed(xml_file.read_text()) + except (IndexError, KeyError, ValueError, TypeError) as e: + raise ValueError("Malformed data in xml file") from e + + data_frame = pandas.DataFrame(data=target.collected).reset_index() + if data_frame.empty: + raise ValueError("Could not parse assay results xml file") + + return columns._cleanup_data_columns(data_frame) + + +def parse_xml_folder(folder: PathLike) -> pandas.DataFrame: + """parses the xml result file in a folder to one large dataframe + + Will raise an ValueError, if no sensospot data could be found in + the folder + + Args: + folder: path of folder containing data files + + Returns: + a pandas data frame with parsed data + """ + folder = pathlib.Path(folder) + xml_file = _find_result_xml_file(folder) + if xml_file is None: + raise ValueError("Could not find assay results xml file") + data_frame = parse_xml_file(xml_file) + data_frame = parameters.add_measurement_parameters(data_frame, folder) + return columns._cleanup_data_columns(data_frame) diff --git a/tests/conftest.py b/tests/conftest.py index d176031..3c575a1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -7,8 +7,8 @@ import pytest EXAMPLE_DIR_CSV_WO_PARAMS = "csv_wo_parameters" EXAMPLE_DIR_CSV_WITH_PARAMS = "csv_with_parameters" -EXAMPLE_DIR_XML_WO_RECORD = "xml_wo_parameters" -EXAMPLE_DIR_XML_WITH_RECORD = "xml_wo_parameters" +EXAMPLE_DIR_XML_WO_PARAMS = "xml_wo_parameters" +EXAMPLE_DIR_XML_WITH_PARAMS = "xml_with_parameters" @pytest.fixture(scope="session") diff --git a/tests/test_sensospot_data.py b/tests/test_sensospot_data.py index a8a2e16..61a83a3 100644 --- a/tests/test_sensospot_data.py +++ b/tests/test_sensospot_data.py @@ -1,8 +1,50 @@ """ testing the __ini__ file """ +import pytest + +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_XML_WO_PARAMS def test_import_api(): from sensospot_parser import main # noqa: F401 from sensospot_parser import columns # noqa: F401 - from sensospot_parser import parse_csv_file # noqa: F401 + from sensospot_parser import parse_folder # noqa: F401 from sensospot_parser import parse_csv_folder # noqa: F401 + from sensospot_parser import parse_xml_folder # noqa: F401 + + +def test_compare_xml_to_csv(example_dir): + import pandas + + from sensospot_parser import parse_csv_folder, parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + + csv_df = parse_csv_folder(folder) + xml_df = parse_xml_folder(folder) + + assert isinstance(csv_df, pandas.DataFrame) + assert isinstance(xml_df, pandas.DataFrame) + + assert len(csv_df) == len(xml_df) + assert set(csv_df["Well.Name"]) == set(xml_df["Well.Name"]) + assert set(csv_df["Exposure.Id"]) == set(xml_df["Exposure.Id"]) + assert set(csv_df["Spot.Diameter"]) == set(xml_df["Spot.Diameter"]) + + +@pytest.mark.parametrize( + "folder, length, hasnans", + [ + (EXAMPLE_DIR_XML_WO_PARAMS, 6400, False), + (EXAMPLE_DIR_CSV_WO_PARAMS, 28800, True), + ], +) +def test_parse_folder_switches_parser(example_dir, folder, length, hasnans): + import pandas + + from sensospot_parser import parse_folder + + result = parse_folder(example_dir / folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == length + assert result["Analysis.Datetime"].hasnans == hasnans diff --git a/tests/test_xml_parser.py b/tests/test_xml_parser.py new file mode 100644 index 0000000..a485ddf --- /dev/null +++ b/tests/test_xml_parser.py @@ -0,0 +1,341 @@ +from datetime import datetime + +import pytest + +from .conftest import EXAMPLE_DIR_XML_WO_PARAMS, EXAMPLE_DIR_XML_WITH_PARAMS + + +class DummyDataFunc: + def __init__(self, as_bool): + self.data = None + self.as_bool = as_bool + + def __call__(self, data): + self.data = data + + def __bool__(self): + return self.as_bool + + +def test_parser_target_init(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + assert target.collected == [] + assert target._current == {} + assert target._data_func is None + + +@pytest.mark.parametrize( + "tag, attributes, expected", + [ + ("UnknownTag", {"ID": "something"}, {}), + ( + "ScanJobResult", + {"ID": "scan job 1"}, + {"Analysis.Name": "scan job 1"}, + ), + ( + "AssayResult", + {"ID": "C03"}, + {"Well.Name": "C03", "Well.Row": "C", "Well.Column": 3}, + ), + ("ChannelConfig1", {}, {"Exposure.Id": 1}), + ("Spot", {"ID": "456"}, {"Pos.Id": 456}), + ( + "Result", + {"Label": "a label", "Type": "Unknown", "Value": "a value"}, + {"a label": "a value"}, + ), + ], +) +@pytest.mark.parametrize("additionals", [{}, {"Ignored": "value"}]) +def test_parser_target_start_simple_attributes( + tag, attributes, additionals, expected +): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + attributes.update(additionals) + + target.start(tag, attributes) # stateful operation + + assert target._current == expected + assert target._data_func is None + + +def test_parser_target_start_timestamp(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target.start("Timestamp", {}) + + assert target._data_func == target._data_timestamp_parser + + +def test_parser_target_start_image_file_name(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target.start("ImageFileName", {}) + + assert target._data_func == target._data_image_name_parser + + +@pytest.mark.parametrize( + "data_type, value, expected", + [ + ("unknown type", 1, "1"), + ("System.Int32", "12", 12), + ("System.UInt32", "23", 23), + ("System.Double", "4.56", 4.56), + ("System.Boolean", "true", True), + ("System.Boolean", "True", True), + ("System.Boolean", "Xrue", False), + ], +) +def test_parser_target_result_attributes_parser(data_type, value, expected): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + data = {"Label": "some label", "Type": data_type, "Value": value} + + target._result_attributes_parser(data) # stateful operation + + assert target._current == {"some label": expected} + assert type(target._current["some label"]) == type(expected) + + +@pytest.mark.parametrize( + "value, expected", + [ + ("3/7/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("03/7/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("3/07/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("03/07/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("3/7/2022 5:3:47 PM", datetime(2022, 3, 7, 17, 3, 47)), + ("3/7/2022 5:31:4 PM", datetime(2022, 3, 7, 17, 31, 4)), + ("3/7/2022 5:31:47 pm", datetime(2022, 3, 7, 17, 31, 47)), + ("3/7/2022 5:31:47 AM", datetime(2022, 3, 7, 5, 31, 47)), + ], +) +def test_parser_target_data_timestamp_parser(value, expected): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target._data_timestamp_parser(value) # stateful operation + + assert target._current == {"Analysis.Datetime": expected} + + +def test_parser_target_data_image_name_parser(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target._data_image_name_parser(" some file path ") # stateful operation + + assert target._current == {"Analysis.Image": "some file path"} + + +def test_parser_target_data_does_not_call_function(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + dummy = DummyDataFunc(as_bool=False) + target._data_func = dummy + + target.data("some data") # the NotImplementedError is not raised + + assert dummy.data is None + + +def test_parser_target_data_does_call_function(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + dummy = DummyDataFunc(as_bool=True) + target._data_func = dummy + + target.data("some data") # stateful operation + + assert dummy.data == "some data" + + +def test_parser_target_data_reacts_on_spot(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target._current = {"some current": "data values"} + + target.end("Spot") # stateful operation + + assert target.collected == [{"some current": "data values"}] + assert target.collected[0] is not target._current + + +def test_parser_target_data_does_only_react_on_spot(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target._current = {"some current": "data values"} + + target.end("NonSpotTag") # stateful operation + + assert target.collected == [] + + +def test_parser_target_closed(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target.closed() # stateful operation, must be callable + + +def test_find_result_xml_file_ok(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + xml_file = tmp_path / "result.xml" + xml_file.touch() + + print(list(tmp_path.iterdir())) + + result = _find_result_xml_file(tmp_path) + + assert result == xml_file + + +def test_find_result_xml_file_no_matching_xml_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + xml_file = tmp_path / "other.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_xml_file_no_xsl_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xml_file = tmp_path / "result.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_xml_file_multiple_xsl_files(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + surplus_file = tmp_path / "surplus.xsl" + surplus_file.touch() + xml_file = tmp_path / "result.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_hidden_xsl_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / ".result.xsl" + xls_file.touch() + xml_file = tmp_path / ".result.xml" + xml_file.touch() + + print(list(tmp_path.iterdir())) + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_parse_xml_file_ok(example_dir): + import pandas + + from sensospot_parser.xml_parser import ( + parse_xml_file, + _find_result_xml_file, + ) + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + xml_file = _find_result_xml_file(folder) + + result = parse_xml_file(xml_file) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert set(result["Well.Row"]) == set("ABCD") + assert set(result["Well.Column"]) == {1, 2, 3, 4} + assert set(result["Exposure.Id"]) == {1, 2, 3, 4} + assert min(result["Spot.Diameter"]) == 22 + assert max(result["Spot.Diameter"]) == 34 + assert "Parameters.Time" not in result + + +@pytest.mark.parametrize( + "file_name, message", + [ + ("not_existing.xml", "Xml file does not exist"), + ("incomplete.xml", "Could not parse assay results xml file"), + ("malformed_data.xml", "Malformed data in xml file"), + ], +) +def test_parse_xml_file_raies_error(file_name, message, example_dir): + from sensospot_parser.xml_parser import parse_xml_file + + xml_file = example_dir / file_name + + with pytest.raises(ValueError) as e: + parse_xml_file(xml_file) + assert message in str(e) + + +def test_parse_xml_folder_with_params(example_dir): + import pandas + + from sensospot_parser.xml_parser import parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WITH_PARAMS + + result = parse_xml_folder(folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert not result["Parameters.Time"].hasnans + + +def test_parse_xml_folder_without_params(example_dir): + import pandas + + from sensospot_parser.xml_parser import parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + + result = parse_xml_folder(folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert result["Parameters.Time"].hasnans + + +def test_parse_xml_folder_non_existing_xml_file(tmp_path): + from sensospot_parser.xml_parser import parse_xml_folder + + with pytest.raises(ValueError) as e: + parse_xml_folder(tmp_path) + assert "Could not find assay results xml file" in str(e)