Skip to content

Commit 0ecec13

Browse files
smitharapacesm
andauthored
Add CHAMP MAG data (#111)
* Adding support for CHAMP ME 3 MAG * Add CHAMP to documentation * Adapting CHAMP MAG configuration to the latest GFZ format. * Version bump to 0.12.0 --------- Co-authored-by: Martin Paces <[email protected]>
1 parent 95cb999 commit 0ecec13

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

docs/available_parameters.rst

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ Calibrated magnetic data are also available from external missions: Cryosat-2, G
149149
=============================== ================ ===================================================================================================================================
150150
Collection full name Collection type Available measurement names
151151
=============================== ================ ===================================================================================================================================
152+
CH_ME_MAG_LR_3 MAG_CHAMP ``F,B_VFM,B_NEC,Flags_Position,Flags_B,Flags_q,Mode_q,q_ICRF_CRF``
152153
CS_OPER_MAG MAG_CS ``F,B_NEC,B_mod_NEC,B_NEC1,B_NEC2,B_NEC3,B_FGM1,B_FGM2,B_FGM3,q_NEC_CRF,q_error``
153154
GRACE_x_MAG (x=A/B) MAG_GRACE ``F,B_NEC,B_NEC_raw,B_FGM,B_mod_NEC,q_NEC_CRF,q_error``
154155
GFx_OPER_FGM_ACAL_CORR (x=1/2) MAG_GFO ``F,B_NEC,B_FGM,dB_MTQ_FGM,dB_XI_FGM,dB_NY_FGM,dB_BT_FGM,dB_ST_FGM,dB_SA_FGM,dB_BAT_FGM,q_NEC_FGM,B_FLAG``

docs/release_notes.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Release notes
44
Change log
55
----------
66

7-
Changes from 0.11.6 to 0.11.7
7+
Changes from 0.11.6 to 0.12.0
88
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99

1010
- Added auxiliaries ``["F107_avg81d", "F107_avg81d_count"]``
@@ -14,6 +14,8 @@ Changes from 0.11.6 to 0.11.7
1414
- e.g. ``"CH_OPER_DNS_ACC_2_"`` and ``"CH_OPER_WND_ACC_2_"`` from CHAMP and equivalents from GRACE and GRACE-FO
1515
- conjunction information within ``"MM_CON_SPH_2_:crossover"`` and ``"MM_CON_SPH_2_:plane_alignment"``
1616

17+
- Added CHAMP magnetic dataset, ``CH_ME_MAG_LR_3``
18+
1719
Changes from 0.11.5 to 0.11.6
1820
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1921

src/viresclient/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from ._config import ClientConfig, set_token
3636
from ._data_handling import ReturnedData, ReturnedDataFile
3737

38-
__version__ = "0.11.7"
38+
__version__ = "0.12.0-alpha"

src/viresclient/_client_swarm.py

+12
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@
215215
"PPI_FAC": (
216216
"https://earth.esa.int/eogateway/activities/plasmapause-related-boundaries-in-the-topside-ionosphere-as-derived-from-swarm-measurements",
217217
),
218+
"MAG_CHAMP": ("https://doi.org/10.5880/GFZ.2.3.2019.004",),
218219
"MAG_CS": ("https://doi.org/10.1186/s40623-020-01171-9",),
219220
"MAG_GRACE": ("https://doi.org/10.1186/s40623-021-01373-9",),
220221
"MAG_GFO": ("https://doi.org/10.1186/s40623-021-01364-w",),
@@ -641,6 +642,7 @@ class SwarmRequest(ClientRequest):
641642
"PPI_FAC": [f"SW_OPER_PPI{x}FAC_2F" for x in "ABC"],
642643
"PPI_FAC:ID": [f"SW_OPER_PPI{x}FAC_2F:ID" for x in "ABC"],
643644
# Multi-mission magnetic products
645+
"MAG_CHAMP": ["CH_ME_MAG_LR_3"],
644646
"MAG_CS": ["CS_OPER_MAG"],
645647
"MAG_GRACE": ["GRACE_A_MAG", "GRACE_B_MAG"],
646648
"MAG_GFO": ["GF1_OPER_FGM_ACAL_CORR", "GF2_OPER_FGM_ACAL_CORR"],
@@ -1098,6 +1100,16 @@ class SwarmRequest(ClientRequest):
10981100
"Position_Quality",
10991101
"PointType",
11001102
],
1103+
"MAG_CHAMP": [
1104+
"F",
1105+
"B_VFM",
1106+
"B_NEC",
1107+
"Flags_Position",
1108+
"Flags_B",
1109+
"Flags_q",
1110+
"Mode_q",
1111+
"q_ICRF_CRF",
1112+
],
11011113
"MAG_CS": [
11021114
"F",
11031115
"B_NEC",

0 commit comments

Comments
 (0)