Skip to content

Commit

Permalink
Changed date to 2023-03-24 event, removed non-operational missions, c…
Browse files Browse the repository at this point in the history
…hanged some magnetometer sites
  • Loading branch information
jameswilburlewis committed Apr 17, 2024
1 parent bb9e36e commit 7229546
Show file tree
Hide file tree
Showing 9 changed files with 9,049 additions and 3,965 deletions.
5,451 changes: 5,451 additions & 0 deletions pyspedas_examples/notebooks/Exploring_the_Heliosphere_Summer_School_2024.ipynb

Large diffs are not rendered by default.

2,086 changes: 1,046 additions & 1,040 deletions pyspedas_examples/notebooks/Finding_Magnetic_Nulls_with_PySPEDAS.ipynb

Large diffs are not rendered by default.

1,459 changes: 304 additions & 1,155 deletions pyspedas_examples/notebooks/Introduction_to_PyTplot.ipynb

Large diffs are not rendered by default.

873 changes: 435 additions & 438 deletions pyspedas_examples/notebooks/PySPEDAS_PyTplot_for_Solar_Physicists.ipynb

Large diffs are not rendered by default.

1,631 changes: 471 additions & 1,160 deletions pyspedas_examples/notebooks/PySPEDAS_PyTplot_timeseries_data.ipynb

Large diffs are not rendered by default.

194 changes: 154 additions & 40 deletions pyspedas_examples/notebooks/PySPEDAS_magnetopause.ipynb

Large diffs are not rendered by default.

580 changes: 448 additions & 132 deletions pyspedas_examples/notebooks/PyTplot_pseudo_variables.ipynb

Large diffs are not rendered by default.

730 changes: 730 additions & 0 deletions pyspedas_examples/notebooks/pyhc_roulette_mar24.ipynb

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@ def test_ex_wavelet(self):
ex = ex_wavelet()
self.assertEqual(ex, 1)

def test_pseudovar_right_axis(self):
import pyspedas
from pytplot import store_data,options, tplot_options, tplot
pyspedas.mms.fpi(datatype='des-moms', trange=['2015-10-16', '2015-10-17'])
pyspedas.mms.edp(trange=['2015-10-16', '2015-10-17'], datatype='scpot')
options('mms1_edp_scpot_fast_l2', 'yrange', [10, 100])
store_data('spec', data=['mms1_des_energyspectr_omni_fast', 'mms1_edp_scpot_fast_l2'])
options('spec', 'right_axis', True)
tplot_options('xmargin', [0.1, 0.2])
tplot('spec', xsize=12)

if __name__ == '__main__':
unittest.main()

0 comments on commit 7229546

Please sign in to comment.