├── .github └── workflows │ ├── pages.yml │ └── traffic.yml ├── .gitignore ├── LICENSE ├── LICENSE DTM.doc ├── MANIFEST.in ├── README.md ├── data ├── DTM_2020_F107_Kp.dat ├── DTM_2020_F30_ap60.dat └── um │ ├── 2002 │ ├── air-density_monthly-mean.mcm.nc │ ├── air-density_standard-deviation.mcm.nc │ ├── air-temperature_monthly-mean.mcm.nc │ ├── air-temperature_standard-deviation.mcm.nc │ ├── x-wind_monthly-mean.mcm.nc │ ├── x-wind_standard-deviation.mcm.nc │ ├── y-wind_monthly-mean.mcm.nc │ └── y-wind_standard-deviation.mcm.nc │ ├── 2004 │ ├── air-density_monthly-mean.mcm.nc │ ├── air-density_standard-deviation.mcm.nc │ ├── air-temperature_monthly-mean.mcm.nc │ ├── air-temperature_standard-deviation.mcm.nc │ ├── x-wind_monthly-mean.mcm.nc │ ├── x-wind_standard-deviation.mcm.nc │ ├── y-wind_monthly-mean.mcm.nc │ └── y-wind_standard-deviation.mcm.nc │ └── 2008-2009 │ ├── air-density_monthly-mean.mcm.nc │ ├── air-density_standard-deviation.mcm.nc │ ├── air-temperature_monthly-mean.mcm.nc │ ├── air-temperature_standard-deviation.mcm.nc │ ├── x-wind_monthly-mean.mcm.nc │ ├── x-wind_standard-deviation.mcm.nc │ ├── y-wind_monthly-mean.mcm.nc │ └── y-wind_standard-deviation.mcm.nc ├── docs ├── Makefile ├── Python_example.ipynb ├── _static │ ├── cnes.png │ ├── deimos.jpg │ ├── eu.jpg │ ├── gfz.png │ ├── logo.png │ ├── logos.jpg │ └── mo.png ├── conf.py ├── dtm2020.rst ├── first-steps.rst ├── fortran.rst ├── fortran_examples.rst ├── index.rst ├── license.rst ├── make.bat ├── python.rst ├── requirements.txt └── um.rst ├── examples └── fortran │ ├── altitude_profile.f90 │ ├── build_examples.sh │ ├── compile.sh │ ├── map_altitude.f90 │ ├── p_altitude_profile.py │ ├── p_map_altitude.py │ ├── point.f90 │ └── winds.f90 ├── pyproject.toml └── src ├── dtm2020 ├── Mod_DTM2020F107Kp_Benchmark.f90 ├── Mod_DTM2020F30Hp60_Benchmark.f90 ├── dtm2020_F107_Kp-subr.f90 ├── dtm2020_F30_Hp-subr.f90 └── sigma_function.f90 ├── libswamif ├── dtm2020_F107_Kp-subr_MCM.f90 ├── dtm2020_sigma_function.f90 ├── m_dtm.f90 ├── m_interp.f90 ├── m_mcm.f90 └── m_um.f90 └── swami ├── __init__.py ├── make_wrapper.sh └── wrapper.f90 /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/traffic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/.github/workflows/traffic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE DTM.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/LICENSE DTM.doc -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/README.md -------------------------------------------------------------------------------- /data/DTM_2020_F107_Kp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/DTM_2020_F107_Kp.dat -------------------------------------------------------------------------------- /data/DTM_2020_F30_ap60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/DTM_2020_F30_ap60.dat -------------------------------------------------------------------------------- /data/um/2002/air-density_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/air-density_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/air-density_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/air-density_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/air-temperature_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/air-temperature_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/air-temperature_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/air-temperature_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/x-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/x-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/x-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/x-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/y-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/y-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2002/y-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2002/y-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/air-density_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/air-density_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/air-density_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/air-density_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/air-temperature_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/air-temperature_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/air-temperature_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/air-temperature_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/x-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/x-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/x-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/x-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/y-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/y-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2004/y-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2004/y-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/air-density_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/air-density_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/air-density_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/air-density_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/air-temperature_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/air-temperature_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/air-temperature_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/air-temperature_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/x-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/x-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/x-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/x-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/y-wind_monthly-mean.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/y-wind_monthly-mean.mcm.nc -------------------------------------------------------------------------------- /data/um/2008-2009/y-wind_standard-deviation.mcm.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/data/um/2008-2009/y-wind_standard-deviation.mcm.nc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Python_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/Python_example.ipynb -------------------------------------------------------------------------------- /docs/_static/cnes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/cnes.png -------------------------------------------------------------------------------- /docs/_static/deimos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/deimos.jpg -------------------------------------------------------------------------------- /docs/_static/eu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/eu.jpg -------------------------------------------------------------------------------- /docs/_static/gfz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/gfz.png -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/logos.jpg -------------------------------------------------------------------------------- /docs/_static/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/_static/mo.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dtm2020.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/dtm2020.rst -------------------------------------------------------------------------------- /docs/first-steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/first-steps.rst -------------------------------------------------------------------------------- /docs/fortran.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/fortran.rst -------------------------------------------------------------------------------- /docs/fortran_examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/fortran_examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/python.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/um.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/docs/um.rst -------------------------------------------------------------------------------- /examples/fortran/altitude_profile.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/altitude_profile.f90 -------------------------------------------------------------------------------- /examples/fortran/build_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/build_examples.sh -------------------------------------------------------------------------------- /examples/fortran/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/compile.sh -------------------------------------------------------------------------------- /examples/fortran/map_altitude.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/map_altitude.f90 -------------------------------------------------------------------------------- /examples/fortran/p_altitude_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/p_altitude_profile.py -------------------------------------------------------------------------------- /examples/fortran/p_map_altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/p_map_altitude.py -------------------------------------------------------------------------------- /examples/fortran/point.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/point.f90 -------------------------------------------------------------------------------- /examples/fortran/winds.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/examples/fortran/winds.f90 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/dtm2020/Mod_DTM2020F107Kp_Benchmark.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/dtm2020/Mod_DTM2020F107Kp_Benchmark.f90 -------------------------------------------------------------------------------- /src/dtm2020/Mod_DTM2020F30Hp60_Benchmark.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/dtm2020/Mod_DTM2020F30Hp60_Benchmark.f90 -------------------------------------------------------------------------------- /src/dtm2020/dtm2020_F107_Kp-subr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/dtm2020/dtm2020_F107_Kp-subr.f90 -------------------------------------------------------------------------------- /src/dtm2020/dtm2020_F30_Hp-subr.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/dtm2020/dtm2020_F30_Hp-subr.f90 -------------------------------------------------------------------------------- /src/dtm2020/sigma_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/dtm2020/sigma_function.f90 -------------------------------------------------------------------------------- /src/libswamif/dtm2020_F107_Kp-subr_MCM.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/dtm2020_F107_Kp-subr_MCM.f90 -------------------------------------------------------------------------------- /src/libswamif/dtm2020_sigma_function.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/dtm2020_sigma_function.f90 -------------------------------------------------------------------------------- /src/libswamif/m_dtm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/m_dtm.f90 -------------------------------------------------------------------------------- /src/libswamif/m_interp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/m_interp.f90 -------------------------------------------------------------------------------- /src/libswamif/m_mcm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/m_mcm.f90 -------------------------------------------------------------------------------- /src/libswamif/m_um.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/libswamif/m_um.f90 -------------------------------------------------------------------------------- /src/swami/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/swami/__init__.py -------------------------------------------------------------------------------- /src/swami/make_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/swami/make_wrapper.sh -------------------------------------------------------------------------------- /src/swami/wrapper.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swami-h2020-eu/mcm/HEAD/src/swami/wrapper.f90 --------------------------------------------------------------------------------