├── .coveragerc ├── .github ├── test_conda_env.yml └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _templates │ └── mynavigation.html ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── qopen ├── __init__.py ├── core.py ├── example │ ├── conf.json │ ├── create_example_files.py │ ├── example_data.mseed │ ├── example_events.xml │ └── example_inventory.xml ├── imaging.py ├── rt.py ├── site.py ├── source.py ├── tests │ ├── __init__.py │ ├── __main__.py │ ├── data │ │ └── usarray_dataset.json │ ├── test_rt.py │ ├── test_site.py │ ├── test_util.py │ ├── test_xcore.py │ └── util.py └── util.py └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/test_conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/.github/test_conda_env.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/mynavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/_templates/mynavigation.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /qopen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/__init__.py -------------------------------------------------------------------------------- /qopen/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/core.py -------------------------------------------------------------------------------- /qopen/example/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/example/conf.json -------------------------------------------------------------------------------- /qopen/example/create_example_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/example/create_example_files.py -------------------------------------------------------------------------------- /qopen/example/example_data.mseed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/example/example_data.mseed -------------------------------------------------------------------------------- /qopen/example/example_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/example/example_events.xml -------------------------------------------------------------------------------- /qopen/example/example_inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/example/example_inventory.xml -------------------------------------------------------------------------------- /qopen/imaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/imaging.py -------------------------------------------------------------------------------- /qopen/rt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/rt.py -------------------------------------------------------------------------------- /qopen/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/site.py -------------------------------------------------------------------------------- /qopen/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/source.py -------------------------------------------------------------------------------- /qopen/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/__init__.py -------------------------------------------------------------------------------- /qopen/tests/__main__.py: -------------------------------------------------------------------------------- 1 | from qopen.tests import run 2 | 3 | run() 4 | -------------------------------------------------------------------------------- /qopen/tests/data/usarray_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/data/usarray_dataset.json -------------------------------------------------------------------------------- /qopen/tests/test_rt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/test_rt.py -------------------------------------------------------------------------------- /qopen/tests/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/test_site.py -------------------------------------------------------------------------------- /qopen/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/test_util.py -------------------------------------------------------------------------------- /qopen/tests/test_xcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/test_xcore.py -------------------------------------------------------------------------------- /qopen/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/tests/util.py -------------------------------------------------------------------------------- /qopen/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/qopen/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trichter/qopen/HEAD/setup.py --------------------------------------------------------------------------------