Skip to content

Commit

Permalink
Add FAC FAST dataset (#113)
Browse files Browse the repository at this point in the history
* Adding Swarm FAST L2 FAC collections.

* Add FAC FAST to docs

---------

Co-authored-by: Martin Paces <[email protected]>
  • Loading branch information
smithara and pacesm authored Jul 20, 2024
1 parent f15fa07 commit 526b557
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/available_parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ See the `Swarm Data Handbook`_ for details about the products and `Swarm Product
- ``SW_FAST_MAGx_HR_1B``
- ``SW_FAST_EFIx_LP_1B``
- ``SW_FAST_MODx_SC_1B``
- ``SW_FAST_FACxTMS_2F``

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

Expand Down
5 changes: 5 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Release notes
Change log
----------

Changes from 0.11.7 to 0.11.8
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Added FAC FAST dataset ``SW_FAST_FACxTMS_2F``

Changes from 0.11.6 to 0.11.7
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion src/viresclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
from ._config import ClientConfig, set_token
from ._data_handling import ReturnedData, ReturnedDataFile

__version__ = "0.11.7"
__version__ = "0.11.8"
5 changes: 4 additions & 1 deletion src/viresclient/_client_swarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,10 @@ class SwarmRequest(ClientRequest):
"EFI_TCT16": [f"SW_EXPT_EFI{x}_TCT16" for x in "ABC"],
"IBI": [f"SW_OPER_IBI{x}TMS_2F" for x in "ABC"],
"TEC": [f"SW_OPER_TEC{x}TMS_2F" for x in "ABC"],
"FAC": [f"SW_OPER_FAC{x}TMS_2F" for x in "ABC_"],
"FAC": [
*(f"SW_OPER_FAC{x}TMS_2F" for x in "ABC_"),
*(f"SW_FAST_FAC{x}TMS_2F" for x in "ABC"),
],
"EEF": [f"SW_OPER_EEF{x}TMS_2F" for x in "ABC"],
"IPD": [f"SW_OPER_IPD{x}IRR_2F" for x in "ABC"],
"AEJ_LPL": [f"SW_OPER_AEJ{x}LPL_2F" for x in "ABC"],
Expand Down

0 comments on commit 526b557

Please sign in to comment.