Skip to content

Commit 526b557

Browse files
smitharapacesm
andauthored
Add FAC FAST dataset (#113)
* Adding Swarm FAST L2 FAC collections. * Add FAC FAST to docs --------- Co-authored-by: Martin Paces <[email protected]>
1 parent f15fa07 commit 526b557

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

docs/available_parameters.rst

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ See the `Swarm Data Handbook`_ for details about the products and `Swarm Product
4646
- ``SW_FAST_MAGx_HR_1B``
4747
- ``SW_FAST_EFIx_LP_1B``
4848
- ``SW_FAST_MODx_SC_1B``
49+
- ``SW_FAST_FACxTMS_2F``
4950

5051
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):
5152

docs/release_notes.rst

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Release notes
44
Change log
55
----------
66

7+
Changes from 0.11.7 to 0.11.8
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
- Added FAC FAST dataset ``SW_FAST_FACxTMS_2F``
11+
712
Changes from 0.11.6 to 0.11.7
813
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
914

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.11.8"

src/viresclient/_client_swarm.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,10 @@ class SwarmRequest(ClientRequest):
512512
"EFI_TCT16": [f"SW_EXPT_EFI{x}_TCT16" for x in "ABC"],
513513
"IBI": [f"SW_OPER_IBI{x}TMS_2F" for x in "ABC"],
514514
"TEC": [f"SW_OPER_TEC{x}TMS_2F" for x in "ABC"],
515-
"FAC": [f"SW_OPER_FAC{x}TMS_2F" for x in "ABC_"],
515+
"FAC": [
516+
*(f"SW_OPER_FAC{x}TMS_2F" for x in "ABC_"),
517+
*(f"SW_FAST_FAC{x}TMS_2F" for x in "ABC"),
518+
],
516519
"EEF": [f"SW_OPER_EEF{x}TMS_2F" for x in "ABC"],
517520
"IPD": [f"SW_OPER_IPD{x}IRR_2F" for x in "ABC"],
518521
"AEJ_LPL": [f"SW_OPER_AEJ{x}LPL_2F" for x in "ABC"],

0 commit comments

Comments
 (0)