-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from spedas/mth5
Including mth5 Jupyter notebook
- Loading branch information
Showing
6 changed files
with
1,494 additions
and
0 deletions.
There are no files selected for viewing
187 changes: 187 additions & 0 deletions
187
pyspedas_examples/notebooks/mth5/THEMIS-ARTEMIS-Post-AGU2023_load_fdsn_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
711 changes: 711 additions & 0 deletions
711
pyspedas_examples/notebooks/mth5/comparison_with_published_results.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
323 changes: 323 additions & 0 deletions
323
pyspedas_examples/notebooks/mth5/explore_station_availability.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
109 changes: 109 additions & 0 deletions
109
pyspedas_examples/notebooks/mth5/load_fdsn_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
133 changes: 133 additions & 0 deletions
133
pyspedas_examples/notebooks/mth5/miniGEM2023_load_fdsn_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# PySPEDAS MTH5 examples | ||
|
||
This folder contains Jupyter notebooks illustrating how to work with PySPEDAS mth5 tool. | ||
mth5 tools allow user to load ground-based magnetic field measurements from International Federation of Digital Seismographic Networks. | ||
|
||
| Notebook | Description | | ||
|-----------------------------------------------------|---------------------------------------------------------------------------| | ||
| load_fdsn_example.ipynb | Basic example of loading and plotting data from FDSN network | | ||
| explore_station_availability.ipynb | Instruction of how to explore availability of the stations | | ||
| comparison_with_published_results.ipynb | Step-by-step guide of mth5 tool use and comparison with published results | | ||
| miniGEM2023_load_fdsn_example.ipynb | Notebook presented at min-GEM 2023 | | ||
| THEMIS-ARTEMIS-Post-AGU2023_load_fdsn_example.ipynb | Notebook presented at THEMIS/ARTEMIS Post AGU 2023 | | ||
|
||
# Installation note | ||
If you would like to execute the examples you need to install `pyspedas` and `mth5` packages. In addition, you need to have `jupyter` packed installed: | ||
``` | ||
pip install pyspedas | ||
pip install mth5 | ||
pip install jupyter | ||
``` | ||
|
||
|
||
# Installation from git repositories | ||
If you encounter an installation problem, you can try to install packages from git repositories, including `mt_metadata`. | ||
|
||
``` | ||
pip install git+https://github.com/spedas/pyspedas.git | ||
pip install git+https://github.com/kujaku11/mt_metadata.git | ||
pip install git+https://github.com/kujaku11/mth5.git | ||
``` | ||
|