-
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.
mth5 jupyter notebook examples are added
- Loading branch information
Showing
6 changed files
with
1,444 additions
and
0 deletions.
There are no files selected for viewing
146 changes: 146 additions & 0 deletions
146
pyspedas_examples/notebooks/mth5/THEMIS-ARTEMIS-Post-AGU2023_load_fdsn_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
707 changes: 707 additions & 0 deletions
707
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,26 @@ | ||
# 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 | ||
|
||
PySPEDAS mth5 tool is under active development. If you would like to execute the examples you need to install appropriate `pyspedas` (mth5 branch), `mt_metadata` (main branch), and `mth5` (master branch) packages. | ||
``` | ||
pip install git+https://github.com/spedas/pyspedas.git@mth5 | ||
pip install git+https://github.com/kujaku11/mt_metadata.git | ||
pip install git+https://github.com/kujaku11/mth5.git | ||
``` | ||
|
||
In addition, you need to have `jupyter` packed installed: | ||
``` | ||
pip install jupyter | ||
``` |