├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── docs.yml │ ├── main.yml │ ├── pip_rc_install.yml │ └── pysat_rc.yml ├── .gitignore ├── .readthedocs.yml ├── .zenodo.json ├── ACKNOWLEDGEMENTS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── acknowledgements.rst ├── citing.rst ├── conf.py ├── develop_guide.rst ├── develop_guide │ ├── code_of_conduct.rst │ └── contributing.rst ├── examples.rst ├── examples │ ├── ex_ace.rst │ ├── ex_f107.rst │ ├── ex_init.rst │ ├── ex_kp.rst │ ├── ex_mock_downloads.rst │ └── ex_mult_downloads.rst ├── figures │ ├── ex_ace_omni.png │ ├── ex_f107_all.png │ ├── ex_kp_all.png │ ├── poweredbypysat.png │ └── pysatSpaceWeather.png ├── history.rst ├── index.rst ├── installation.rst ├── methods.rst ├── overview.rst ├── requirements.txt └── supported_instruments.rst ├── pyproject.toml ├── pysatSpaceWeather ├── __init__.py ├── instruments │ ├── __init__.py │ ├── ace_epam.py │ ├── ace_mag.py │ ├── ace_sis.py │ ├── ace_swepam.py │ ├── methods │ │ ├── __init__.py │ │ ├── ace.py │ │ ├── auroral_electrojet.py │ │ ├── dst.py │ │ ├── f107.py │ │ ├── general.py │ │ ├── gfz.py │ │ ├── kp_ap.py │ │ ├── lasp.py │ │ ├── lisird.py │ │ ├── norp.py │ │ └── swpc.py │ ├── norp_rf.py │ ├── sw_ae.py │ ├── sw_al.py │ ├── sw_ap.py │ ├── sw_apo.py │ ├── sw_au.py │ ├── sw_cp.py │ ├── sw_dst.py │ ├── sw_f107.py │ ├── sw_flare.py │ ├── sw_hpo.py │ ├── sw_kp.py │ ├── sw_mgii.py │ ├── sw_polarcap.py │ ├── sw_sbfield.py │ ├── sw_ssn.py │ └── sw_stormprob.py └── tests │ ├── __init__.py │ ├── test_data │ ├── 20090101_ace_epam_5m.txt │ ├── 20090101_ace_mag_1m.txt │ ├── 20090101_ace_sis_5m.txt │ ├── 20090101_ace_swepam_1m.txt │ ├── 2009_DSD.txt │ ├── 3-day-geomag-forecast.txt │ ├── 3-day-solar-geomag-predictions.txt │ ├── 45-day-ap-forecast.txt │ ├── Fadj_2009-01.txt │ ├── Fobs_2009-01.txt │ ├── Hp30_2009-01.txt │ ├── Hp60_2009-01.txt │ ├── Kp_def2009.wdc │ ├── Kp_now2020.wdc │ ├── SN_2009-01.txt │ ├── TYKW-NoRP_dailyflux.txt │ ├── ace-epam.txt │ ├── ace-magnetometer.txt │ ├── ace-sis.txt │ ├── ace-swepam.txt │ ├── ae_last_96_hrs.txt │ ├── al_last_96_hrs.txt │ ├── ap30_2009-01.txt │ ├── ap60_2009-01.txt │ ├── au_last_96_hrs.txt │ ├── daily-geomagnetic-indices.txt │ ├── daily-solar-indices.txt │ ├── dst2000.txt │ ├── dst_last_96_hrs.txt │ ├── f107_monthly_2009-01.txt │ ├── mgii_composite_1981-11.txt │ ├── mgii_sorce_2005-03-06.txt │ └── sw │ │ ├── f107 │ │ ├── 45day │ │ │ └── f107_45day_2019-03-16.txt │ │ ├── daily │ │ │ └── f107_daily_2019-03-16.txt │ │ ├── forecast │ │ │ └── f107_forecast_2019-03-16.txt │ │ └── historic │ │ │ └── f107_monthly_1947-02.txt │ │ └── kp │ │ ├── def │ │ └── Kp_def2019.txt │ │ ├── forecast │ │ └── kp_forecast_2019-03-18.txt │ │ ├── kp1902.tab │ │ └── recent │ │ └── kp_recent_2019-03-18.txt │ ├── test_instruments.py │ ├── test_methods_ace.py │ ├── test_methods_ae.py │ ├── test_methods_f107.py │ ├── test_methods_general.py │ ├── test_methods_gfz.py │ ├── test_methods_kp.py │ ├── test_methods_lisird.py │ └── test_methods_norp.py ├── requirements.txt ├── setup.cfg └── test_requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pip_rc_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/workflows/pip_rc_install.yml -------------------------------------------------------------------------------- /.github/workflows/pysat_rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.github/workflows/pysat_rc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/.zenodo.json -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/acknowledgements.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../ACKNOWLEDGEMENTS.md 2 | -------------------------------------------------------------------------------- /docs/citing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/citing.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/develop_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/develop_guide.rst -------------------------------------------------------------------------------- /docs/develop_guide/code_of_conduct.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../CODE_OF_CONDUCT.md 2 | -------------------------------------------------------------------------------- /docs/develop_guide/contributing.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../CONTRIBUTING.md 2 | -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/examples/ex_ace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_ace.rst -------------------------------------------------------------------------------- /docs/examples/ex_f107.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_f107.rst -------------------------------------------------------------------------------- /docs/examples/ex_init.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_init.rst -------------------------------------------------------------------------------- /docs/examples/ex_kp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_kp.rst -------------------------------------------------------------------------------- /docs/examples/ex_mock_downloads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_mock_downloads.rst -------------------------------------------------------------------------------- /docs/examples/ex_mult_downloads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/examples/ex_mult_downloads.rst -------------------------------------------------------------------------------- /docs/figures/ex_ace_omni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/figures/ex_ace_omni.png -------------------------------------------------------------------------------- /docs/figures/ex_f107_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/figures/ex_f107_all.png -------------------------------------------------------------------------------- /docs/figures/ex_kp_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/figures/ex_kp_all.png -------------------------------------------------------------------------------- /docs/figures/poweredbypysat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/figures/poweredbypysat.png -------------------------------------------------------------------------------- /docs/figures/pysatSpaceWeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/figures/pysatSpaceWeather.png -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. _hist: 2 | 3 | .. mdinclude:: ../CHANGELOG.md 4 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/methods.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | m2r2 2 | numpydoc 3 | pysat 4 | -------------------------------------------------------------------------------- /docs/supported_instruments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/docs/supported_instruments.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pysatSpaceWeather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/__init__.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/__init__.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/ace_epam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/ace_epam.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/ace_mag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/ace_mag.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/ace_sis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/ace_sis.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/ace_swepam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/ace_swepam.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/__init__.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/ace.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/auroral_electrojet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/auroral_electrojet.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/dst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/dst.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/f107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/f107.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/general.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/gfz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/gfz.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/kp_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/kp_ap.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/lasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/lasp.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/lisird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/lisird.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/norp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/norp.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/methods/swpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/methods/swpc.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/norp_rf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/norp_rf.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_ae.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_al.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_ap.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_apo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_apo.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_au.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_au.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_cp.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_dst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_dst.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_f107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_f107.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_flare.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_hpo.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_kp.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_mgii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_mgii.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_polarcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_polarcap.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_sbfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_sbfield.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_ssn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_ssn.py -------------------------------------------------------------------------------- /pysatSpaceWeather/instruments/sw_stormprob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/instruments/sw_stormprob.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/__init__.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/20090101_ace_epam_5m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/20090101_ace_epam_5m.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/20090101_ace_mag_1m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/20090101_ace_mag_1m.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/20090101_ace_sis_5m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/20090101_ace_sis_5m.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/20090101_ace_swepam_1m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/20090101_ace_swepam_1m.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/2009_DSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/2009_DSD.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/3-day-geomag-forecast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/3-day-geomag-forecast.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/3-day-solar-geomag-predictions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/3-day-solar-geomag-predictions.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/45-day-ap-forecast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/45-day-ap-forecast.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Fadj_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Fadj_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Fobs_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Fobs_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Hp30_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Hp30_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Hp60_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Hp60_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Kp_def2009.wdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Kp_def2009.wdc -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/Kp_now2020.wdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/Kp_now2020.wdc -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/SN_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/SN_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/TYKW-NoRP_dailyflux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/TYKW-NoRP_dailyflux.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ace-epam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ace-epam.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ace-magnetometer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ace-magnetometer.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ace-sis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ace-sis.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ace-swepam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ace-swepam.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ae_last_96_hrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ae_last_96_hrs.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/al_last_96_hrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/al_last_96_hrs.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ap30_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ap30_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/ap60_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/ap60_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/au_last_96_hrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/au_last_96_hrs.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/daily-geomagnetic-indices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/daily-geomagnetic-indices.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/daily-solar-indices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/daily-solar-indices.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/dst2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/dst2000.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/dst_last_96_hrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/dst_last_96_hrs.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/f107_monthly_2009-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/f107_monthly_2009-01.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/mgii_composite_1981-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/mgii_composite_1981-11.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/mgii_sorce_2005-03-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/mgii_sorce_2005-03-06.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/f107/45day/f107_45day_2019-03-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/f107/45day/f107_45day_2019-03-16.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/f107/daily/f107_daily_2019-03-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/f107/daily/f107_daily_2019-03-16.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/f107/forecast/f107_forecast_2019-03-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/f107/forecast/f107_forecast_2019-03-16.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/f107/historic/f107_monthly_1947-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/f107/historic/f107_monthly_1947-02.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/kp/def/Kp_def2019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/kp/def/Kp_def2019.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/kp/forecast/kp_forecast_2019-03-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/kp/forecast/kp_forecast_2019-03-18.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/kp/kp1902.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/kp/kp1902.tab -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_data/sw/kp/recent/kp_recent_2019-03-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_data/sw/kp/recent/kp_recent_2019-03-18.txt -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_instruments.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_ace.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_ae.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_f107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_f107.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_general.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_gfz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_gfz.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_kp.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_lisird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_lisird.py -------------------------------------------------------------------------------- /pysatSpaceWeather/tests/test_methods_norp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/pysatSpaceWeather/tests/test_methods_norp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/setup.cfg -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pysat/pysatSpaceWeather/HEAD/test_requirements.txt --------------------------------------------------------------------------------