├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── requirements.txt └── source ├── computer ├── LinuxmacOS-basis.rst ├── command-lines.rst ├── file-manage.rst ├── index.rst └── operating-systems.rst ├── conf.py ├── data-analysis ├── index.rst ├── phase-picking │ └── index.rst └── plot │ ├── index.rst │ └── seis.SAC ├── data-fetch ├── HinetPy │ └── index.rst ├── ObsPy │ └── index.rst ├── SOD │ └── index.rst ├── data-centers.rst ├── fetch-tools.rst └── index.rst ├── data-process └── index.rst ├── download ├── exercises │ ├── bash-solution.tar │ ├── python-solution.tar │ ├── seismic-source-solution.tar │ └── seismic-wave-solution.tar └── lectures │ ├── 20201207-command-lines.tar │ ├── 20201207-programming.pptx │ ├── 20201207-programming.tar │ ├── 20201207-seismology-file-management.pptx │ ├── 20201214-seismic-data.pptx │ ├── 20201214-seismic-data.tar │ └── 20201221-tomography.pdf ├── exercises ├── data-analysis │ └── index.rst ├── data-fetch │ └── index.rst ├── data-process │ └── index.rst ├── programming │ └── index.rst └── seismology │ ├── index.rst │ ├── seismic-source.rst │ └── seismic-wave.rst ├── index.rst ├── programming ├── compiled-languages.rst ├── index.rst └── scripting-languages.rst ├── seismology ├── index.rst ├── intro │ ├── global-eqs-station.png │ ├── global-waves.png │ ├── index.rst │ └── seismic-key-obs.png ├── seismic-data │ ├── 12Z.png │ ├── NEZ.png │ ├── RTZ.png │ ├── coordinate-systems.rst │ ├── index.rst │ ├── rotate-SAC_Docs_zh.png │ └── seismic-time-series-data.rst ├── seismic-source │ ├── earthquake-catalogs.rst │ ├── index.rst │ └── intro.rst ├── seismic-station │ ├── az-baz.png │ ├── how-station-work.png │ ├── incidence.png │ ├── index.rst │ └── seismograph-illustration.png ├── seismic-wave │ ├── Fig1.1-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png │ ├── Fig1.1-Introduction-to-seismology.png │ ├── Fig2.4-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png │ ├── Fig4.14-Introduction-to-seismology.png │ ├── crustal-phases.png │ ├── index.rst │ ├── intro.rst │ └── seismic-phases.rst └── seismological-tools │ ├── GMT.rst │ ├── ObsPy.rst │ ├── SAC.rst │ ├── SOD.rst │ ├── TauP.rst │ └── index.rst ├── tomo-theory └── index.rst └── tomo-workflow └── index.rst /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/computer/LinuxmacOS-basis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/computer/LinuxmacOS-basis.rst -------------------------------------------------------------------------------- /source/computer/command-lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/computer/command-lines.rst -------------------------------------------------------------------------------- /source/computer/file-manage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/computer/file-manage.rst -------------------------------------------------------------------------------- /source/computer/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/computer/index.rst -------------------------------------------------------------------------------- /source/computer/operating-systems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/computer/operating-systems.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/data-analysis/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-analysis/index.rst -------------------------------------------------------------------------------- /source/data-analysis/phase-picking/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-analysis/phase-picking/index.rst -------------------------------------------------------------------------------- /source/data-analysis/plot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-analysis/plot/index.rst -------------------------------------------------------------------------------- /source/data-analysis/plot/seis.SAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-analysis/plot/seis.SAC -------------------------------------------------------------------------------- /source/data-fetch/HinetPy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-fetch/HinetPy/index.rst -------------------------------------------------------------------------------- /source/data-fetch/ObsPy/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-fetch/ObsPy/index.rst -------------------------------------------------------------------------------- /source/data-fetch/SOD/index.rst: -------------------------------------------------------------------------------- 1 | SOD 2 | === 3 | 4 | Please refer to the lecture resources on 2020-12-14. 5 | -------------------------------------------------------------------------------- /source/data-fetch/data-centers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-fetch/data-centers.rst -------------------------------------------------------------------------------- /source/data-fetch/fetch-tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-fetch/fetch-tools.rst -------------------------------------------------------------------------------- /source/data-fetch/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-fetch/index.rst -------------------------------------------------------------------------------- /source/data-process/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/data-process/index.rst -------------------------------------------------------------------------------- /source/download/exercises/bash-solution.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/exercises/bash-solution.tar -------------------------------------------------------------------------------- /source/download/exercises/python-solution.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/exercises/python-solution.tar -------------------------------------------------------------------------------- /source/download/exercises/seismic-source-solution.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/exercises/seismic-source-solution.tar -------------------------------------------------------------------------------- /source/download/exercises/seismic-wave-solution.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/exercises/seismic-wave-solution.tar -------------------------------------------------------------------------------- /source/download/lectures/20201207-command-lines.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201207-command-lines.tar -------------------------------------------------------------------------------- /source/download/lectures/20201207-programming.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201207-programming.pptx -------------------------------------------------------------------------------- /source/download/lectures/20201207-programming.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201207-programming.tar -------------------------------------------------------------------------------- /source/download/lectures/20201207-seismology-file-management.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201207-seismology-file-management.pptx -------------------------------------------------------------------------------- /source/download/lectures/20201214-seismic-data.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201214-seismic-data.pptx -------------------------------------------------------------------------------- /source/download/lectures/20201214-seismic-data.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201214-seismic-data.tar -------------------------------------------------------------------------------- /source/download/lectures/20201221-tomography.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/download/lectures/20201221-tomography.pdf -------------------------------------------------------------------------------- /source/exercises/data-analysis/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/data-analysis/index.rst -------------------------------------------------------------------------------- /source/exercises/data-fetch/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/data-fetch/index.rst -------------------------------------------------------------------------------- /source/exercises/data-process/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/data-process/index.rst -------------------------------------------------------------------------------- /source/exercises/programming/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/programming/index.rst -------------------------------------------------------------------------------- /source/exercises/seismology/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/seismology/index.rst -------------------------------------------------------------------------------- /source/exercises/seismology/seismic-source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/seismology/seismic-source.rst -------------------------------------------------------------------------------- /source/exercises/seismology/seismic-wave.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/exercises/seismology/seismic-wave.rst -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/programming/compiled-languages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/programming/compiled-languages.rst -------------------------------------------------------------------------------- /source/programming/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/programming/index.rst -------------------------------------------------------------------------------- /source/programming/scripting-languages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/programming/scripting-languages.rst -------------------------------------------------------------------------------- /source/seismology/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/index.rst -------------------------------------------------------------------------------- /source/seismology/intro/global-eqs-station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/intro/global-eqs-station.png -------------------------------------------------------------------------------- /source/seismology/intro/global-waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/intro/global-waves.png -------------------------------------------------------------------------------- /source/seismology/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/intro/index.rst -------------------------------------------------------------------------------- /source/seismology/intro/seismic-key-obs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/intro/seismic-key-obs.png -------------------------------------------------------------------------------- /source/seismology/seismic-data/12Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/12Z.png -------------------------------------------------------------------------------- /source/seismology/seismic-data/NEZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/NEZ.png -------------------------------------------------------------------------------- /source/seismology/seismic-data/RTZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/RTZ.png -------------------------------------------------------------------------------- /source/seismology/seismic-data/coordinate-systems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/coordinate-systems.rst -------------------------------------------------------------------------------- /source/seismology/seismic-data/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/index.rst -------------------------------------------------------------------------------- /source/seismology/seismic-data/rotate-SAC_Docs_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/rotate-SAC_Docs_zh.png -------------------------------------------------------------------------------- /source/seismology/seismic-data/seismic-time-series-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-data/seismic-time-series-data.rst -------------------------------------------------------------------------------- /source/seismology/seismic-source/earthquake-catalogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-source/earthquake-catalogs.rst -------------------------------------------------------------------------------- /source/seismology/seismic-source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-source/index.rst -------------------------------------------------------------------------------- /source/seismology/seismic-source/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-source/intro.rst -------------------------------------------------------------------------------- /source/seismology/seismic-station/az-baz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-station/az-baz.png -------------------------------------------------------------------------------- /source/seismology/seismic-station/how-station-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-station/how-station-work.png -------------------------------------------------------------------------------- /source/seismology/seismic-station/incidence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-station/incidence.png -------------------------------------------------------------------------------- /source/seismology/seismic-station/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-station/index.rst -------------------------------------------------------------------------------- /source/seismology/seismic-station/seismograph-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-station/seismograph-illustration.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/Fig1.1-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/Fig1.1-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/Fig1.1-Introduction-to-seismology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/Fig1.1-Introduction-to-seismology.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/Fig2.4-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/Fig2.4-3-An-Introduction-to-Seismology-Earthquakes-and-Earth-Structure.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/Fig4.14-Introduction-to-seismology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/Fig4.14-Introduction-to-seismology.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/crustal-phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/crustal-phases.png -------------------------------------------------------------------------------- /source/seismology/seismic-wave/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/index.rst -------------------------------------------------------------------------------- /source/seismology/seismic-wave/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/intro.rst -------------------------------------------------------------------------------- /source/seismology/seismic-wave/seismic-phases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismic-wave/seismic-phases.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/GMT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/GMT.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/ObsPy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/ObsPy.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/SAC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/SAC.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/SOD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/SOD.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/TauP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/TauP.rst -------------------------------------------------------------------------------- /source/seismology/seismological-tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/seismology/seismological-tools/index.rst -------------------------------------------------------------------------------- /source/tomo-theory/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/tomo-theory/index.rst -------------------------------------------------------------------------------- /source/tomo-workflow/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIGG-NTU/SeisTomo_Tutorials/HEAD/source/tomo-workflow/index.rst --------------------------------------------------------------------------------