├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── eoxmagmod ├── MANIFEST.in ├── README.txt ├── eoxmagmod │ ├── Makefile │ ├── __init__.py │ ├── common.h │ ├── data │ │ ├── CHAOS-7.18_core.shc │ │ ├── CHAOS-7.18_core_extrapolated.shc │ │ ├── CHAOS-7_static.shc │ │ ├── CHAOS-8.1_core.shc │ │ ├── CHAOS-8.1_core_extrapolated.shc │ │ ├── CHAOS-8.1_ionosphere.txt │ │ ├── CHAOS-8.1_static.shc │ │ ├── EMM-720_V3p0_secvar.cof │ │ ├── EMM-720_V3p0_static.cof │ │ ├── IGRF12.shc │ │ ├── IGRF13.shc │ │ ├── IGRF14.shc │ │ ├── LCS-1.shc │ │ ├── MF7.shc │ │ ├── README.txt │ │ ├── SIFM.shc │ │ ├── WMM2015v2.COF │ │ ├── __init__.py │ │ ├── apexsh_1980-2020.txt │ │ ├── apexsh_1980-2025.txt │ │ ├── apexsh_1980-2030.txt │ │ ├── apexsh_1995-2015.txt │ │ └── igrf11coeffs.txt │ ├── dipole.py │ ├── dipole_coords.py │ ├── include │ │ ├── bisect.h │ │ ├── fourier_series.h │ │ ├── geo_conversion.h │ │ ├── interpolation.h │ │ ├── math_aux.h │ │ ├── spherical_harmonics.h │ │ ├── sun_ephemeris.h │ │ └── time_conversion.h │ ├── magnetic_model │ │ ├── __init__.py │ │ ├── coefficients.py │ │ ├── coefficients_mio.py │ │ ├── field_lines.py │ │ ├── loader_emm.py │ │ ├── loader_igrf.py │ │ ├── loader_mio.py │ │ ├── loader_mma.py │ │ ├── loader_shc.py │ │ ├── loader_wmm.py │ │ ├── model.py │ │ ├── model_composed.py │ │ ├── model_mio.py │ │ ├── parser_emm.py │ │ ├── parser_igrf.py │ │ ├── parser_mio.py │ │ ├── parser_mma.py │ │ ├── parser_shc.py │ │ ├── parser_wmm.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── coefficient_loaders.py │ │ │ ├── coefficients.py │ │ │ ├── coefficients_mio.py │ │ │ ├── data │ │ │ │ ├── TEST_CHAOS_MMA.cdf │ │ │ │ ├── TEST_MIO_SHA.txt │ │ │ │ ├── TEST_MMA_SHA_2C.cdf │ │ │ │ ├── TEST_MMA_SHA_2F.cdf │ │ │ │ └── __init__.py │ │ │ ├── field_lines.py │ │ │ ├── mma_merge.py │ │ │ ├── model_loaders.py │ │ │ ├── parser_emm.py │ │ │ ├── parser_igrf.py │ │ │ ├── parser_mio.py │ │ │ ├── parser_mma.py │ │ │ ├── parser_shc.py │ │ │ ├── parser_wmm.py │ │ │ └── util.py │ │ └── util.py │ ├── magnetic_time.py │ ├── py_common.h │ ├── pymm.c │ ├── pymm_aux.h │ ├── pymm_bisect.h │ ├── pymm_cconv.h │ ├── pymm_coord.h │ ├── pymm_fourier2d.h │ ├── pymm_interp.h │ ├── pymm_legendre.h │ ├── pymm_loncossin.h │ ├── pymm_relradpow.h │ ├── pymm_sheval.h │ ├── pymm_sheval2dfs.h │ ├── pymm_shevaltemp.h │ ├── pymm_sphar_common.h │ ├── pymm_sphargrd.h │ ├── pymm_spharpot.h │ ├── pymm_vrot_cart2sph.h │ ├── pymm_vrot_common.h │ ├── pymm_vrot_sph2cart.h │ ├── pymm_vrot_sph2geod.h │ ├── pyqd.c │ ├── pyqd_eval_mlt.h │ ├── pyqd_eval_qdlatlon.h │ ├── pyqd_eval_subsol.h │ ├── pysunpos.c │ ├── pysunpos.h │ ├── pysunpos_original.h │ ├── pytimeconv.c │ ├── pytimeconv_decimal_year_to_mjd2000.h │ ├── pytimeconv_mjd2000_to_decimal_year.h │ ├── pytimeconv_mjd2000_to_year_fraction.h │ ├── quasi_dipole_coordinates.py │ ├── solar_position.py │ ├── tests │ │ ├── __init__.py │ │ ├── data │ │ │ ├── QuasiDipoleTestData.tsv │ │ │ ├── SunPositionTestData.tsv │ │ │ ├── __init__.py │ │ │ ├── chaos_core.py │ │ │ ├── chaos_mma.py │ │ │ ├── generate_quasi_dipole_test_data.py │ │ │ ├── generate_solar_position_test_data.py │ │ │ ├── mio.py │ │ │ ├── mma_external.py │ │ │ ├── mma_internal.py │ │ │ ├── sifm.py │ │ │ └── update_quasi_dipole_test_data.py │ │ ├── dipole.py │ │ ├── dipole_coords.py │ │ ├── magnetic_time.py │ │ ├── pymm_bisect.py │ │ ├── pymm_convert.py │ │ ├── pymm_fourier2d.py │ │ ├── pymm_interp.py │ │ ├── pymm_legendre.py │ │ ├── pymm_loncossin.py │ │ ├── pymm_relradpow.py │ │ ├── pymm_sheval.py │ │ ├── pymm_sheval2dfs.py │ │ ├── pymm_shevaltemp.py │ │ ├── pymm_sphargrd.py │ │ ├── pymm_spharpot.py │ │ ├── pymm_vrot.py │ │ ├── pytimeconv.py │ │ ├── quasi_dipole_coordinates.py │ │ ├── solar_position.py │ │ ├── time_util.py │ │ ├── util.py │ │ └── util_vrotate.py │ ├── time_util.py │ ├── util.py │ └── version.h ├── setup.cfg └── setup.py ├── libcdf ├── Makefile ├── bld.bat ├── build.sh ├── meta.yaml ├── post-link.sh └── pre-unlink.sh └── qdipole ├── .gitignore ├── Makefile.in ├── README ├── apex.f90 ├── apexsh.f90 ├── apexsh_1980-2020.txt ├── apexsh_1980-2025.txt ├── apexsh_1980-2030.txt ├── apexsh_1995-2015.txt ├── bld.bat ├── build.sh ├── configure ├── configure.ac ├── cqdipole.c ├── cqdipole.h ├── eval_mlt.f90 ├── eval_qdlatlon.f90 ├── eval_subsol.f90 ├── makeapexsh.f90 ├── meta.yaml ├── mlt_test.c ├── qdipole_conf.h.in ├── qdipole_info.c ├── qdlatlon_test.c ├── run_dipole_test ├── subsol_test.c ├── test_result.mlt.txt ├── test_result.qdlatlon.apexsh_1980-2020.txt ├── test_result.qdlatlon.apexsh_1980-2025.txt ├── test_result.qdlatlon.apexsh_1980-2030.txt ├── test_result.qdlatlon.apexsh_1995-2015.txt └── test_result.subsol.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/README.md -------------------------------------------------------------------------------- /eoxmagmod/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/MANIFEST.in -------------------------------------------------------------------------------- /eoxmagmod/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/README.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/Makefile -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/__init__.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/common.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-7.18_core.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-7.18_core.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-7.18_core_extrapolated.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-7.18_core_extrapolated.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-7_static.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-7_static.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-8.1_core.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-8.1_core.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-8.1_core_extrapolated.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-8.1_core_extrapolated.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-8.1_ionosphere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-8.1_ionosphere.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/CHAOS-8.1_static.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/CHAOS-8.1_static.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/EMM-720_V3p0_secvar.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/EMM-720_V3p0_secvar.cof -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/EMM-720_V3p0_static.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/EMM-720_V3p0_static.cof -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/IGRF12.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/IGRF12.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/IGRF13.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/IGRF13.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/IGRF14.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/IGRF14.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/LCS-1.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/LCS-1.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/MF7.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/MF7.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/README.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/SIFM.shc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/SIFM.shc -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/WMM2015v2.COF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/WMM2015v2.COF -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/__init__.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/apexsh_1980-2020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/apexsh_1980-2020.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/apexsh_1980-2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/apexsh_1980-2025.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/apexsh_1980-2030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/apexsh_1980-2030.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/apexsh_1995-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/apexsh_1995-2015.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/data/igrf11coeffs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/data/igrf11coeffs.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/dipole.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/dipole_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/dipole_coords.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/bisect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/bisect.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/fourier_series.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/fourier_series.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/geo_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/geo_conversion.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/interpolation.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/math_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/math_aux.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/spherical_harmonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/spherical_harmonics.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/sun_ephemeris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/sun_ephemeris.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/include/time_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/include/time_conversion.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/coefficients.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/coefficients_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/coefficients_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/field_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/field_lines.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_emm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_emm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_igrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_igrf.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_mma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_mma.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_shc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_shc.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/loader_wmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/loader_wmm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/model.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/model_composed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/model_composed.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/model_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/model_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_emm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_emm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_igrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_igrf.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_mma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_mma.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_shc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_shc.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/parser_wmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/parser_wmm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/coefficient_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/coefficient_loaders.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/coefficients.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/coefficients_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/coefficients_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_CHAOS_MMA.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_CHAOS_MMA.cdf -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MIO_SHA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MIO_SHA.txt -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MMA_SHA_2C.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MMA_SHA_2C.cdf -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MMA_SHA_2F.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/data/TEST_MMA_SHA_2F.cdf -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/data/__init__.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/field_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/field_lines.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/mma_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/mma_merge.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/model_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/model_loaders.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_emm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_emm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_igrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_igrf.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_mma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_mma.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_shc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_shc.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/parser_wmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/parser_wmm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/tests/util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_model/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_model/util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/magnetic_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/magnetic_time.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/py_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/py_common.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm.c -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_aux.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_bisect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_bisect.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_cconv.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_coord.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_fourier2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_fourier2d.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_interp.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_legendre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_legendre.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_loncossin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_loncossin.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_relradpow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_relradpow.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_sheval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_sheval.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_sheval2dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_sheval2dfs.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_shevaltemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_shevaltemp.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_sphar_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_sphar_common.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_sphargrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_sphargrd.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_spharpot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_spharpot.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_vrot_cart2sph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_vrot_cart2sph.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_vrot_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_vrot_common.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_vrot_sph2cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_vrot_sph2cart.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pymm_vrot_sph2geod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pymm_vrot_sph2geod.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pyqd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pyqd.c -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pyqd_eval_mlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pyqd_eval_mlt.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pyqd_eval_qdlatlon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pyqd_eval_qdlatlon.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pyqd_eval_subsol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pyqd_eval_subsol.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pysunpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pysunpos.c -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pysunpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pysunpos.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pysunpos_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pysunpos_original.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pytimeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pytimeconv.c -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pytimeconv_decimal_year_to_mjd2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pytimeconv_decimal_year_to_mjd2000.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pytimeconv_mjd2000_to_decimal_year.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pytimeconv_mjd2000_to_decimal_year.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/pytimeconv_mjd2000_to_year_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/pytimeconv_mjd2000_to_year_fraction.h -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/quasi_dipole_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/quasi_dipole_coordinates.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/solar_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/solar_position.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/QuasiDipoleTestData.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/QuasiDipoleTestData.tsv -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/SunPositionTestData.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/SunPositionTestData.tsv -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/__init__.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/chaos_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/chaos_core.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/chaos_mma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/chaos_mma.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/generate_quasi_dipole_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/generate_quasi_dipole_test_data.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/generate_solar_position_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/generate_solar_position_test_data.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/mio.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/mma_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/mma_external.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/mma_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/mma_internal.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/sifm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/sifm.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/data/update_quasi_dipole_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/data/update_quasi_dipole_test_data.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/dipole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/dipole.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/dipole_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/dipole_coords.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/magnetic_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/magnetic_time.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_bisect.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_convert.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_fourier2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_fourier2d.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_interp.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_legendre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_legendre.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_loncossin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_loncossin.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_relradpow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_relradpow.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_sheval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_sheval.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_sheval2dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_sheval2dfs.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_shevaltemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_shevaltemp.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_sphargrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_sphargrd.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_spharpot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_spharpot.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pymm_vrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pymm_vrot.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/pytimeconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/pytimeconv.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/quasi_dipole_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/quasi_dipole_coordinates.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/solar_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/solar_position.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/time_util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/tests/util_vrotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/tests/util_vrotate.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/time_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/time_util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/util.py -------------------------------------------------------------------------------- /eoxmagmod/eoxmagmod/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/eoxmagmod/version.h -------------------------------------------------------------------------------- /eoxmagmod/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/setup.cfg -------------------------------------------------------------------------------- /eoxmagmod/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/eoxmagmod/setup.py -------------------------------------------------------------------------------- /libcdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/libcdf/Makefile -------------------------------------------------------------------------------- /libcdf/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/libcdf/bld.bat -------------------------------------------------------------------------------- /libcdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/libcdf/build.sh -------------------------------------------------------------------------------- /libcdf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/libcdf/meta.yaml -------------------------------------------------------------------------------- /libcdf/post-link.sh: -------------------------------------------------------------------------------- 1 | conda env config vars set "CDF_LIB=$CONDA_PREFIX/lib" 2 | -------------------------------------------------------------------------------- /libcdf/pre-unlink.sh: -------------------------------------------------------------------------------- 1 | conda env config vars unset CDF_LIB 2 | -------------------------------------------------------------------------------- /qdipole/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/.gitignore -------------------------------------------------------------------------------- /qdipole/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/Makefile.in -------------------------------------------------------------------------------- /qdipole/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/README -------------------------------------------------------------------------------- /qdipole/apex.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apex.f90 -------------------------------------------------------------------------------- /qdipole/apexsh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apexsh.f90 -------------------------------------------------------------------------------- /qdipole/apexsh_1980-2020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apexsh_1980-2020.txt -------------------------------------------------------------------------------- /qdipole/apexsh_1980-2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apexsh_1980-2025.txt -------------------------------------------------------------------------------- /qdipole/apexsh_1980-2030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apexsh_1980-2030.txt -------------------------------------------------------------------------------- /qdipole/apexsh_1995-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/apexsh_1995-2015.txt -------------------------------------------------------------------------------- /qdipole/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/bld.bat -------------------------------------------------------------------------------- /qdipole/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/build.sh -------------------------------------------------------------------------------- /qdipole/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/configure -------------------------------------------------------------------------------- /qdipole/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/configure.ac -------------------------------------------------------------------------------- /qdipole/cqdipole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/cqdipole.c -------------------------------------------------------------------------------- /qdipole/cqdipole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/cqdipole.h -------------------------------------------------------------------------------- /qdipole/eval_mlt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/eval_mlt.f90 -------------------------------------------------------------------------------- /qdipole/eval_qdlatlon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/eval_qdlatlon.f90 -------------------------------------------------------------------------------- /qdipole/eval_subsol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/eval_subsol.f90 -------------------------------------------------------------------------------- /qdipole/makeapexsh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/makeapexsh.f90 -------------------------------------------------------------------------------- /qdipole/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/meta.yaml -------------------------------------------------------------------------------- /qdipole/mlt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/mlt_test.c -------------------------------------------------------------------------------- /qdipole/qdipole_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/qdipole_conf.h.in -------------------------------------------------------------------------------- /qdipole/qdipole_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/qdipole_info.c -------------------------------------------------------------------------------- /qdipole/qdlatlon_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/qdlatlon_test.c -------------------------------------------------------------------------------- /qdipole/run_dipole_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/run_dipole_test -------------------------------------------------------------------------------- /qdipole/subsol_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/subsol_test.c -------------------------------------------------------------------------------- /qdipole/test_result.mlt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.mlt.txt -------------------------------------------------------------------------------- /qdipole/test_result.qdlatlon.apexsh_1980-2020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.qdlatlon.apexsh_1980-2020.txt -------------------------------------------------------------------------------- /qdipole/test_result.qdlatlon.apexsh_1980-2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.qdlatlon.apexsh_1980-2025.txt -------------------------------------------------------------------------------- /qdipole/test_result.qdlatlon.apexsh_1980-2030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.qdlatlon.apexsh_1980-2030.txt -------------------------------------------------------------------------------- /qdipole/test_result.qdlatlon.apexsh_1995-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.qdlatlon.apexsh_1995-2015.txt -------------------------------------------------------------------------------- /qdipole/test_result.subsol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ESA-VirES/MagneticModel/HEAD/qdipole/test_result.subsol.txt --------------------------------------------------------------------------------