From 889c3c6a188c5fe7c5febfff84239d15d64fd4c6 Mon Sep 17 00:00:00 2001 From: Martin Paces Date: Wed, 23 Apr 2025 23:19:28 +0200 Subject: [PATCH 1/3] Adding new CHAOS-8 MIO model. --- src/viresclient/_client_swarm.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/viresclient/_client_swarm.py b/src/viresclient/_client_swarm.py index dd082ad..62f2a05 100644 --- a/src/viresclient/_client_swarm.py +++ b/src/viresclient/_client_swarm.py @@ -60,6 +60,10 @@ "CHAOS-8 Secondary (internal) magnetospheric field", " http://www.spacecenter.dk/files/magnetic-models/CHAOS-8/ ", ), + "CHAOS-MIO": ( + "CHAOS-8 Ionospheric field", + " http://www.spacecenter.dk/files/magnetic-models/CHAOS-8/ ", + ), "MF7": ( "MF7 crustal field model, derived from CHAMP satellite observations", " http://geomag.org/models/MF7.html", @@ -1549,6 +1553,7 @@ class SwarmRequest(ClientRequest): "CHAOS-Static", "CHAOS-MMA-Primary", "CHAOS-MMA-Secondary", + "CHAOS-MIO", "MCO_SHA_2C", "MCO_SHA_2D", "MLI_SHA_2C", From 6b9e41a4338889636beff66f3dd9cce9024f07d3 Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Thu, 4 Dec 2025 13:55:55 +0000 Subject: [PATCH 2/3] Add CHAOS-MIO to docs --- docs/available_parameters.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/available_parameters.rst b/docs/available_parameters.rst index e576d19..bd28146 100644 --- a/docs/available_parameters.rst +++ b/docs/available_parameters.rst @@ -294,7 +294,7 @@ Models are evaluated along the satellite track at the positions of the time seri ``models=["'CHAOS-full' = 'CHAOS-Core' + 'CHAOS-Static' + 'CHAOS-MMA-Primary' + 'CHAOS-MMA-Secondary'"]`` `(click for more info) `_ - This composed model can also be accessed by an alias: ``models=["CHAOS"]`` which represents the full CHAOS model + This composed model (core + crust + magnetosphere) can also be accessed by an alias: ``models=["CHAOS"]``. Note that this does not include the ionospheric part (``"CHAOS-MIO"``) which was added to the CHAOS series in `CHAOS-8 `_. See `Magnetic Earth `_ for an introduction to geomagnetic models. @@ -321,6 +321,7 @@ Models are evaluated along the satellite track at the positions of the time seri CHAOS-Core, # Core CHAOS-Static, # Lithosphere CHAOS-MMA-Primary, CHAOS-MMA-Secondary # Magnetosphere + CHAOS-MIO # Polar ionosphere # Other lithospheric models: MF7, LCS-1 From 94249e5ca37782225514b35aa12ee877bd644b1d Mon Sep 17 00:00:00 2001 From: Ashley Smith Date: Thu, 4 Dec 2025 13:57:13 +0000 Subject: [PATCH 3/3] Begin changelog for v0.14 --- docs/release_notes.rst | 5 +++++ src/viresclient/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 4d1942a..cbaf89c 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -4,6 +4,11 @@ Release notes Change log ---------- +Changes from 0.13.0 to 0.14.0 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Added ``"CHAOS-MIO"`` magnetic model - the new ionospheric part of CHAOS. Note that the alias ``"CHAOS"`` does not include this ``"CHAOS-MIO"`` + Changes from 0.12.3 to 0.13.0 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/src/viresclient/__init__.py b/src/viresclient/__init__.py index 280b0c1..05f9662 100644 --- a/src/viresclient/__init__.py +++ b/src/viresclient/__init__.py @@ -35,4 +35,4 @@ from ._config import ClientConfig, set_token from ._data_handling import ReturnedData, ReturnedDataFile -__version__ = "0.13.0" +__version__ = "0.14.0"