├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── config.yml └── pull_request_template.md ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── README.md ├── __init__.py ├── changelog.rst ├── code_dev_plan.rst ├── conf.py ├── contributing.md ├── environment.yml ├── environment_local.yml ├── ex_data_data.rst ├── ex_data_syn.rst ├── ex_w_mpi.rst ├── first_glance.rst ├── gallery.rst ├── images │ ├── data-synthetic_misfit.png │ ├── first_glance_files │ │ └── first_glance_1_1.png │ ├── insp_gallery_files │ │ ├── insp_gallery_11_0.png │ │ ├── insp_gallery_13_0.png │ │ ├── insp_gallery_15_0.png │ │ ├── insp_gallery_17_1.png │ │ ├── insp_gallery_19_0.png │ │ ├── insp_gallery_21_0.png │ │ ├── insp_gallery_23_0.png │ │ ├── insp_gallery_25_1.png │ │ ├── insp_gallery_27_0.png │ │ ├── insp_gallery_29_0.png │ │ ├── insp_gallery_31_0.png │ │ ├── insp_gallery_3_0.png │ │ ├── insp_gallery_5_1.png │ │ ├── insp_gallery_7_0.png │ │ └── insp_gallery_9_0.png │ ├── inversion_flowchart.png │ ├── pyatoa_favicon.png │ ├── pyatoa_inline_text_bigO.png │ ├── pyatoa_logo.png │ ├── pyatoa_logo_w_text.png │ └── waveform_breakdown.png ├── index.rst ├── insp_gallery.rst ├── inspector.rst ├── make.bat ├── misfit.rst ├── notebooks │ ├── convert.py │ ├── first_glance_raw.ipynb │ └── insp_gallery_raw.ipynb ├── overview.rst ├── quickstart.rst ├── requirements.txt ├── standards.rst ├── storage.rst └── windows.rst ├── environment.yml ├── pyatoa ├── __init__.py ├── core │ ├── __init__.py │ ├── config.py │ ├── executive.py │ ├── inspector.py │ └── manager.py ├── scripts │ ├── __init__.py │ ├── data_data_example.py │ ├── load_example_data.py │ ├── process_data_w_mpi.py │ └── syn_syn_example.py ├── tests │ ├── __init__.py │ ├── test_asdf_utils.py │ ├── test_config.py │ ├── test_data │ │ ├── 2018p130600.h5 │ │ ├── baseline_images │ │ │ ├── default_manager_plot_both.png │ │ │ ├── default_manager_plot_map.png │ │ │ └── default_manager_plot_wav.png │ │ ├── process_data_w_mpi.tar.gz │ │ ├── synthetics │ │ │ ├── 2012p242656 │ │ │ │ ├── NZ.MRZ.BXE.semd │ │ │ │ ├── NZ.MRZ.BXN.semd │ │ │ │ ├── NZ.MRZ.BXZ.semd │ │ │ │ ├── NZ.TSZ.BXE.semd │ │ │ │ ├── NZ.TSZ.BXN.semd │ │ │ │ ├── NZ.TSZ.BXZ.semd │ │ │ │ ├── NZ.VRZ.BXE.semd │ │ │ │ ├── NZ.VRZ.BXN.semd │ │ │ │ ├── NZ.VRZ.BXZ.semd │ │ │ │ ├── NZ.WAZ.BXE.semd │ │ │ │ ├── NZ.WAZ.BXN.semd │ │ │ │ └── NZ.WAZ.BXZ.semd │ │ │ ├── 2018p130600 │ │ │ │ ├── NZ.MRZ.BXE.semd │ │ │ │ ├── NZ.MRZ.BXN.semd │ │ │ │ ├── NZ.MRZ.BXZ.semd │ │ │ │ ├── NZ.TSZ.BXE.semd │ │ │ │ ├── NZ.TSZ.BXN.semd │ │ │ │ ├── NZ.TSZ.BXZ.semd │ │ │ │ ├── NZ.VRZ.BXE.semd │ │ │ │ ├── NZ.VRZ.BXN.semd │ │ │ │ ├── NZ.VRZ.BXZ.semd │ │ │ │ ├── NZ.WAZ.BXE.semd │ │ │ │ ├── NZ.WAZ.BXN.semd │ │ │ │ └── NZ.WAZ.BXZ.semd │ │ │ ├── NZ.BFZ.BXE.semd │ │ │ ├── NZ.BFZ.BXN.semd │ │ │ └── NZ.BFZ.BXZ.semd │ │ ├── test_ASDFDataSet.h5 │ │ ├── test_CMTSOLUTION_2018p130600 │ │ ├── test_FORCESOLUTION_2018p130600 │ │ ├── test_SOURCE_2018p130600 │ │ ├── test_STATIONS_NZ_BFZ │ │ ├── test_adjoint_source_NZ_BFZ_N_2018p130600.adj │ │ ├── test_catalog_2018p130600.xml │ │ ├── test_dataless_NZ_BFZ.xml │ │ ├── test_executive │ │ │ ├── 2228901 │ │ │ │ ├── NZ.BFZ.HXE.semd │ │ │ │ ├── NZ.BFZ.HXN.semd │ │ │ │ ├── NZ.BFZ.HXZ.semd │ │ │ │ ├── NZ.COVZ.HXE.semd │ │ │ │ ├── NZ.COVZ.HXN.semd │ │ │ │ ├── NZ.COVZ.HXZ.semd │ │ │ │ ├── NZ.KNZ.HXE.semd │ │ │ │ ├── NZ.KNZ.HXN.semd │ │ │ │ ├── NZ.KNZ.HXZ.semd │ │ │ │ ├── NZ.PXZ.HXE.semd │ │ │ │ ├── NZ.PXZ.HXN.semd │ │ │ │ ├── NZ.PXZ.HXZ.semd │ │ │ │ ├── NZ.WEL.HXE.semd │ │ │ │ ├── NZ.WEL.HXN.semd │ │ │ │ └── NZ.WEL.HXZ.semd │ │ │ ├── 2012p242656 │ │ │ │ ├── NZ.BFZ.HXE.semd │ │ │ │ ├── NZ.BFZ.HXN.semd │ │ │ │ ├── NZ.BFZ.HXZ.semd │ │ │ │ ├── NZ.COVZ.HXE.semd │ │ │ │ ├── NZ.COVZ.HXN.semd │ │ │ │ ├── NZ.COVZ.HXZ.semd │ │ │ │ ├── NZ.KNZ.HXE.semd │ │ │ │ ├── NZ.KNZ.HXN.semd │ │ │ │ ├── NZ.KNZ.HXZ.semd │ │ │ │ ├── NZ.PXZ.HXE.semd │ │ │ │ ├── NZ.PXZ.HXN.semd │ │ │ │ ├── NZ.PXZ.HXZ.semd │ │ │ │ ├── NZ.WEL.HXE.semd │ │ │ │ ├── NZ.WEL.HXN.semd │ │ │ │ └── NZ.WEL.HXZ.semd │ │ │ ├── 2017p015402 │ │ │ │ ├── NZ.BFZ.HXE.semd │ │ │ │ ├── NZ.BFZ.HXN.semd │ │ │ │ ├── NZ.BFZ.HXZ.semd │ │ │ │ ├── NZ.COVZ.HXE.semd │ │ │ │ ├── NZ.COVZ.HXN.semd │ │ │ │ ├── NZ.COVZ.HXZ.semd │ │ │ │ ├── NZ.KNZ.HXE.semd │ │ │ │ ├── NZ.KNZ.HXN.semd │ │ │ │ ├── NZ.KNZ.HXZ.semd │ │ │ │ ├── NZ.PXZ.HXE.semd │ │ │ │ ├── NZ.PXZ.HXN.semd │ │ │ │ ├── NZ.PXZ.HXZ.semd │ │ │ │ ├── NZ.WEL.HXE.semd │ │ │ │ ├── NZ.WEL.HXN.semd │ │ │ │ └── NZ.WEL.HXZ.semd │ │ │ └── 2018p130600 │ │ │ │ ├── NZ.BFZ.HXE.semd │ │ │ │ ├── NZ.BFZ.HXN.semd │ │ │ │ ├── NZ.BFZ.HXZ.semd │ │ │ │ ├── NZ.COVZ.HXE.semd │ │ │ │ ├── NZ.COVZ.HXN.semd │ │ │ │ ├── NZ.COVZ.HXZ.semd │ │ │ │ ├── NZ.KNZ.HXE.semd │ │ │ │ ├── NZ.KNZ.HXN.semd │ │ │ │ ├── NZ.KNZ.HXZ.semd │ │ │ │ ├── NZ.PXZ.HXE.semd │ │ │ │ ├── NZ.PXZ.HXN.semd │ │ │ │ ├── NZ.PXZ.HXZ.semd │ │ │ │ ├── NZ.WEL.HXE.semd │ │ │ │ ├── NZ.WEL.HXN.semd │ │ │ │ └── NZ.WEL.HXZ.semd │ │ ├── test_inspector.csv │ │ ├── test_inspector_rcv.csv │ │ ├── test_inspector_src.csv │ │ ├── test_mseeds │ │ │ └── 2018 │ │ │ │ └── NZ │ │ │ │ └── BFZ │ │ │ │ ├── HHE │ │ │ │ └── NZ.BFZ.10.HHE.D.2018.049 │ │ │ │ ├── HHN │ │ │ │ └── NZ.BFZ.10.HHN.D.2018.049 │ │ │ │ └── HHZ │ │ │ │ └── NZ.BFZ.10.HHZ.D.2018.049 │ │ ├── test_obs_data_NZ_BFZ_2018p130600.ascii │ │ ├── test_seed │ │ │ └── BFZ.NZ │ │ │ │ ├── RESP.NZ.BFZ.10.HHE │ │ │ │ ├── RESP.NZ.BFZ.10.HHN │ │ │ │ └── RESP.NZ.BFZ.10.HHZ │ │ ├── test_syn_data_NZ_BFZ_2018p130600.ascii │ │ └── test_window_NZ_BFZ_N_0_2018p130600.json │ ├── test_executive.py │ ├── test_inspector.py │ ├── test_manager.py │ ├── test_mgmt_plot.py │ ├── test_process_util.py │ ├── test_utils.py │ └── test_wave_maker.py ├── utils │ ├── __init__.py │ ├── adjoint.py │ ├── asdf │ │ ├── __init__.py │ │ ├── add.py │ │ ├── clean.py │ │ ├── load.py │ │ └── write.py │ ├── calculate.py │ ├── form.py │ ├── images.py │ ├── process.py │ ├── srcrcv.py │ ├── window.py │ └── write.py └── visuals │ ├── __init__.py │ ├── insp_plot.py │ ├── map_maker.py │ ├── wave_maker.py │ └── wave_train.py └── pyproject.toml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-documentation 2 | 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | Chow, Bryant 2 | Örsvuran, Ridvan 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/code_dev_plan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/code_dev_plan.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/environment_local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/environment_local.yml -------------------------------------------------------------------------------- /docs/ex_data_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/ex_data_data.rst -------------------------------------------------------------------------------- /docs/ex_data_syn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/ex_data_syn.rst -------------------------------------------------------------------------------- /docs/ex_w_mpi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/ex_w_mpi.rst -------------------------------------------------------------------------------- /docs/first_glance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/first_glance.rst -------------------------------------------------------------------------------- /docs/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/gallery.rst -------------------------------------------------------------------------------- /docs/images/data-synthetic_misfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/data-synthetic_misfit.png -------------------------------------------------------------------------------- /docs/images/first_glance_files/first_glance_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/first_glance_files/first_glance_1_1.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_11_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_11_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_13_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_13_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_15_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_15_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_17_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_17_1.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_19_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_19_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_21_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_23_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_23_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_25_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_25_1.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_27_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_27_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_29_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_29_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_31_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_31_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_3_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_5_1.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_7_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_7_0.png -------------------------------------------------------------------------------- /docs/images/insp_gallery_files/insp_gallery_9_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/insp_gallery_files/insp_gallery_9_0.png -------------------------------------------------------------------------------- /docs/images/inversion_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/inversion_flowchart.png -------------------------------------------------------------------------------- /docs/images/pyatoa_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/pyatoa_favicon.png -------------------------------------------------------------------------------- /docs/images/pyatoa_inline_text_bigO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/pyatoa_inline_text_bigO.png -------------------------------------------------------------------------------- /docs/images/pyatoa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/pyatoa_logo.png -------------------------------------------------------------------------------- /docs/images/pyatoa_logo_w_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/pyatoa_logo_w_text.png -------------------------------------------------------------------------------- /docs/images/waveform_breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/images/waveform_breakdown.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/insp_gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/insp_gallery.rst -------------------------------------------------------------------------------- /docs/inspector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/inspector.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/misfit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/misfit.rst -------------------------------------------------------------------------------- /docs/notebooks/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/notebooks/convert.py -------------------------------------------------------------------------------- /docs/notebooks/first_glance_raw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/notebooks/first_glance_raw.ipynb -------------------------------------------------------------------------------- /docs/notebooks/insp_gallery_raw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/notebooks/insp_gallery_raw.ipynb -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/standards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/standards.rst -------------------------------------------------------------------------------- /docs/storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/storage.rst -------------------------------------------------------------------------------- /docs/windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/docs/windows.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/environment.yml -------------------------------------------------------------------------------- /pyatoa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/__init__.py -------------------------------------------------------------------------------- /pyatoa/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/core/config.py -------------------------------------------------------------------------------- /pyatoa/core/executive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/core/executive.py -------------------------------------------------------------------------------- /pyatoa/core/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/core/inspector.py -------------------------------------------------------------------------------- /pyatoa/core/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/core/manager.py -------------------------------------------------------------------------------- /pyatoa/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/scripts/data_data_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/scripts/data_data_example.py -------------------------------------------------------------------------------- /pyatoa/scripts/load_example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/scripts/load_example_data.py -------------------------------------------------------------------------------- /pyatoa/scripts/process_data_w_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/scripts/process_data_w_mpi.py -------------------------------------------------------------------------------- /pyatoa/scripts/syn_syn_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/scripts/syn_syn_example.py -------------------------------------------------------------------------------- /pyatoa/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/tests/test_asdf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_asdf_utils.py -------------------------------------------------------------------------------- /pyatoa/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_config.py -------------------------------------------------------------------------------- /pyatoa/tests/test_data/2018p130600.h5: -------------------------------------------------------------------------------- 1 | test_ASDFDataSet.h5 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/baseline_images/default_manager_plot_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/baseline_images/default_manager_plot_both.png -------------------------------------------------------------------------------- /pyatoa/tests/test_data/baseline_images/default_manager_plot_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/baseline_images/default_manager_plot_map.png -------------------------------------------------------------------------------- /pyatoa/tests/test_data/baseline_images/default_manager_plot_wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/baseline_images/default_manager_plot_wav.png -------------------------------------------------------------------------------- /pyatoa/tests/test_data/process_data_w_mpi.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/process_data_w_mpi.tar.gz -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.MRZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.TSZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.VRZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2012p242656/NZ.WAZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.MRZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.TSZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.VRZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/2018p130600/NZ.WAZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/NZ.BFZ.BXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/NZ.BFZ.BXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/NZ.BFZ.BXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/NZ.BFZ.BXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/synthetics/NZ.BFZ.BXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/synthetics/NZ.BFZ.BXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_ASDFDataSet.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_ASDFDataSet.h5 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_CMTSOLUTION_2018p130600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_CMTSOLUTION_2018p130600 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_FORCESOLUTION_2018p130600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_FORCESOLUTION_2018p130600 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_SOURCE_2018p130600: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_SOURCE_2018p130600 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_STATIONS_NZ_BFZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_STATIONS_NZ_BFZ -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_adjoint_source_NZ_BFZ_N_2018p130600.adj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_adjoint_source_NZ_BFZ_N_2018p130600.adj -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_catalog_2018p130600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_catalog_2018p130600.xml -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_dataless_NZ_BFZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_dataless_NZ_BFZ.xml -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.BFZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.COVZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.KNZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.PXZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2012p242656/NZ.WEL.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.BFZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.COVZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.KNZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.PXZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2017p015402/NZ.WEL.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.BFZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.COVZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.KNZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.PXZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2018p130600/NZ.WEL.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.BFZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.COVZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.KNZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.PXZ.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXE.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXE.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXN.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXN.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXZ.semd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_executive/2228901/NZ.WEL.HXZ.semd -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_inspector.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_inspector.csv -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_inspector_rcv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_inspector_rcv.csv -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_inspector_src.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_inspector_src.csv -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHE/NZ.BFZ.10.HHE.D.2018.049: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHE/NZ.BFZ.10.HHE.D.2018.049 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHN/NZ.BFZ.10.HHN.D.2018.049: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHN/NZ.BFZ.10.HHN.D.2018.049 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHZ/NZ.BFZ.10.HHZ.D.2018.049: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_mseeds/2018/NZ/BFZ/HHZ/NZ.BFZ.10.HHZ.D.2018.049 -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_obs_data_NZ_BFZ_2018p130600.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_obs_data_NZ_BFZ_2018p130600.ascii -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHE -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHN -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_seed/BFZ.NZ/RESP.NZ.BFZ.10.HHZ -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_syn_data_NZ_BFZ_2018p130600.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_syn_data_NZ_BFZ_2018p130600.ascii -------------------------------------------------------------------------------- /pyatoa/tests/test_data/test_window_NZ_BFZ_N_0_2018p130600.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_data/test_window_NZ_BFZ_N_0_2018p130600.json -------------------------------------------------------------------------------- /pyatoa/tests/test_executive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_executive.py -------------------------------------------------------------------------------- /pyatoa/tests/test_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_inspector.py -------------------------------------------------------------------------------- /pyatoa/tests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_manager.py -------------------------------------------------------------------------------- /pyatoa/tests/test_mgmt_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_mgmt_plot.py -------------------------------------------------------------------------------- /pyatoa/tests/test_process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_process_util.py -------------------------------------------------------------------------------- /pyatoa/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_utils.py -------------------------------------------------------------------------------- /pyatoa/tests/test_wave_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/tests/test_wave_maker.py -------------------------------------------------------------------------------- /pyatoa/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/utils/adjoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/adjoint.py -------------------------------------------------------------------------------- /pyatoa/utils/asdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/utils/asdf/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/asdf/add.py -------------------------------------------------------------------------------- /pyatoa/utils/asdf/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/asdf/clean.py -------------------------------------------------------------------------------- /pyatoa/utils/asdf/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/asdf/load.py -------------------------------------------------------------------------------- /pyatoa/utils/asdf/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/asdf/write.py -------------------------------------------------------------------------------- /pyatoa/utils/calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/calculate.py -------------------------------------------------------------------------------- /pyatoa/utils/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/form.py -------------------------------------------------------------------------------- /pyatoa/utils/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/images.py -------------------------------------------------------------------------------- /pyatoa/utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/process.py -------------------------------------------------------------------------------- /pyatoa/utils/srcrcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/srcrcv.py -------------------------------------------------------------------------------- /pyatoa/utils/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/window.py -------------------------------------------------------------------------------- /pyatoa/utils/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/utils/write.py -------------------------------------------------------------------------------- /pyatoa/visuals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyatoa/visuals/insp_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/visuals/insp_plot.py -------------------------------------------------------------------------------- /pyatoa/visuals/map_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/visuals/map_maker.py -------------------------------------------------------------------------------- /pyatoa/visuals/wave_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/visuals/wave_maker.py -------------------------------------------------------------------------------- /pyatoa/visuals/wave_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyatoa/visuals/wave_train.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adjtomo/pyatoa/HEAD/pyproject.toml --------------------------------------------------------------------------------