├── .github └── workflows │ ├── publish.yml │ └── test-and-lint.yml ├── .gitignore ├── .readthedocs.yaml ├── .ruff.toml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── README.md ├── _tasks.py ├── docs ├── .gitignore ├── Makefile ├── _static │ └── videos │ │ └── gui_guide.webm ├── conf.py ├── guides │ ├── cal_store.rst │ ├── ferraris_calibration_instructions.png │ ├── ferraris_guide.rst │ └── index.rst ├── index.rst ├── make.bat ├── modules │ └── index.rst └── templates │ ├── class.rst │ ├── class_with_private.rst │ ├── function.rst │ └── numpydoc_docstring.rst ├── example_data ├── __init__.py ├── annotated_session.csv ├── example_ferraris_session.csv ├── example_ferraris_session_list.json └── legacy_calibration_pre_2.0.json ├── examples ├── README.rst ├── basic_ferraris.py └── custom_calibration_info.py ├── imucal ├── __init__.py ├── calibration_gui.py ├── calibration_info.py ├── ferraris_calibration.py ├── ferraris_calibration_info.py ├── legacy.py └── management.py ├── paper ├── img │ └── imucal_ferraris_gui.png ├── imucal.bib └── paper.md ├── poetry.lock ├── pyproject.toml ├── pytest.ini └── tests ├── __init__.py ├── _test_gui.py ├── conftest.py ├── ferraris_example.csv ├── snapshots └── example_cal.json ├── test_calibration_calculation.py ├── test_calibration_info_basic.py ├── test_calibration_info_math.py ├── test_examples.py ├── test_legacy.py └── test_management.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/.github/workflows/test-and-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/.ruff.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/README.md -------------------------------------------------------------------------------- /_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/_tasks.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | modules/generated 2 | auto_examples 3 | README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/videos/gui_guide.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/_static/videos/gui_guide.webm -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/guides/cal_store.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/guides/cal_store.rst -------------------------------------------------------------------------------- /docs/guides/ferraris_calibration_instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/guides/ferraris_calibration_instructions.png -------------------------------------------------------------------------------- /docs/guides/ferraris_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/guides/ferraris_guide.rst -------------------------------------------------------------------------------- /docs/guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/guides/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/modules/index.rst -------------------------------------------------------------------------------- /docs/templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/templates/class.rst -------------------------------------------------------------------------------- /docs/templates/class_with_private.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/templates/class_with_private.rst -------------------------------------------------------------------------------- /docs/templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/templates/function.rst -------------------------------------------------------------------------------- /docs/templates/numpydoc_docstring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/docs/templates/numpydoc_docstring.rst -------------------------------------------------------------------------------- /example_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/example_data/__init__.py -------------------------------------------------------------------------------- /example_data/annotated_session.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/example_data/annotated_session.csv -------------------------------------------------------------------------------- /example_data/example_ferraris_session.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/example_data/example_ferraris_session.csv -------------------------------------------------------------------------------- /example_data/example_ferraris_session_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/example_data/example_ferraris_session_list.json -------------------------------------------------------------------------------- /example_data/legacy_calibration_pre_2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/example_data/legacy_calibration_pre_2.0.json -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/basic_ferraris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/examples/basic_ferraris.py -------------------------------------------------------------------------------- /examples/custom_calibration_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/examples/custom_calibration_info.py -------------------------------------------------------------------------------- /imucal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/__init__.py -------------------------------------------------------------------------------- /imucal/calibration_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/calibration_gui.py -------------------------------------------------------------------------------- /imucal/calibration_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/calibration_info.py -------------------------------------------------------------------------------- /imucal/ferraris_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/ferraris_calibration.py -------------------------------------------------------------------------------- /imucal/ferraris_calibration_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/ferraris_calibration_info.py -------------------------------------------------------------------------------- /imucal/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/legacy.py -------------------------------------------------------------------------------- /imucal/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/imucal/management.py -------------------------------------------------------------------------------- /paper/img/imucal_ferraris_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/paper/img/imucal_ferraris_gui.png -------------------------------------------------------------------------------- /paper/imucal.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/paper/imucal.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/paper/paper.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_test_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/_test_gui.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/ferraris_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/ferraris_example.csv -------------------------------------------------------------------------------- /tests/snapshots/example_cal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/snapshots/example_cal.json -------------------------------------------------------------------------------- /tests/test_calibration_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_calibration_calculation.py -------------------------------------------------------------------------------- /tests/test_calibration_info_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_calibration_info_basic.py -------------------------------------------------------------------------------- /tests/test_calibration_info_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_calibration_info_math.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_legacy.py -------------------------------------------------------------------------------- /tests/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mad-lab-fau/imucal/HEAD/tests/test_management.py --------------------------------------------------------------------------------