Skip to content

Commit 3449e7e

Browse files
smitharapacesm
andauthored
Adding Swarm FAST L2 TEC collections (#122)
Co-authored-by: Martin Paces <[email protected]>
1 parent af39718 commit 3449e7e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/available_parameters.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ See the `Swarm Data Handbook`_ for details about the products and `Swarm Product
4747
- ``SW_FAST_EFIx_LP_1B``
4848
- ``SW_FAST_MODx_SC_1B``
4949
- ``SW_FAST_FACxTMS_2F``
50+
- ``SW_FAST_TECxTMS_2F``
5051

5152
Collections are grouped according to a type containing similar measurements (i.e. the same product from different spacecraft). The collection type can be given to :py:meth:`viresclient.SwarmRequest.available_collections` to retrieve the full collection names. These cover the Swarm data products as below (replace x with A, B, or C for Alpha, Bravo, or Charlie):
5253

src/viresclient/_client_swarm.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,10 @@ class SwarmRequest(ClientRequest):
502502
"EFI_TCT02": [f"SW_EXPT_EFI{x}_TCT02" for x in "ABC"],
503503
"EFI_TCT16": [f"SW_EXPT_EFI{x}_TCT16" for x in "ABC"],
504504
"IBI": [f"SW_OPER_IBI{x}TMS_2F" for x in "ABC"],
505-
"TEC": [f"SW_OPER_TEC{x}TMS_2F" for x in "ABC"],
505+
"TEC": [
506+
*(f"SW_OPER_TEC{x}TMS_2F" for x in "ABC"),
507+
*(f"SW_FAST_TEC{x}TMS_2F" for x in "ABC"),
508+
],
506509
"FAC": [
507510
*(f"SW_OPER_FAC{x}TMS_2F" for x in "ABC_"),
508511
*(f"SW_FAST_FAC{x}TMS_2F" for x in "ABC"),

0 commit comments

Comments
 (0)