Skip to content

Commit 16ffb4a

Browse files
committed
Update docs for 0.6.2 release
1 parent d8da185 commit 16ffb4a

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

docs/available_parameters.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,17 @@ For IPD::
8080
``models``
8181
----------
8282

83-
Models are evaluated along the satellite track at the positions of the time series that has been requested. These must be used together with one of the MAG collections, and one or both of the "F" and "B_NEC" measurements. This can yield either the model values together with the measurements, or the data-model residuals. `(More info about models) <https://magneticearth.org/pages/models.html>`_
83+
Models are evaluated along the satellite track at the positions of the time series that has been requested. These must be used together with one of the MAG collections, and one or both of the "F" and "B_NEC" measurements. This can yield either the model values together with the measurements, or the data-model residuals.
8484

8585
.. note::
8686

8787
For a good estimate of the ionospheric field measured by a Swarm satellite (with the core, crust and magnetosphere effects removed) use a composed model defined as:
88-
``models=['CHAOS-full' = 'CHAOS-Core' + 'CHAOS-Static' + 'CHAOS-MMA-Primary' + 'CHAOS-MMA-Secondary'"]``
88+
``models=["'CHAOS-full' = 'CHAOS-Core' + 'CHAOS-Static' + 'CHAOS-MMA-Primary' + 'CHAOS-MMA-Secondary'"]``
8989
`(click for more info) <https://github.com/klaundal/notebooks/blob/master/get_external_field.ipynb>`_
90+
91+
This composed model can also be accessed by an alias: ``models=["CHAOS"]`` which represents the full CHAOS model
92+
93+
See https://magneticearth.org for an overview introduction to geomagnetic models.
9094

9195
::
9296

@@ -115,6 +119,16 @@ Models are evaluated along the satellite track at the positions of the time seri
115119
# Other lithospheric models:
116120
MF7, LCS-1
117121

122+
# Aliases for compositions of the above models (shortcuts)
123+
MCO_SHA_2X # 'CHAOS-Core'
124+
CHAOS-MMA # 'CHAOS-MMA-Primary' + 'CHAOS-MMA-Secondary'
125+
CHAOS # 'CHAOS-Core' + 'CHAOS-Static' + 'CHAOS-MMA-Primary' + 'CHAOS-MMA-Secondary'
126+
MMA_SHA_2F # 'MMA_SHA_2F-Primary' + 'MMA_SHA_2F-Secondary'
127+
MMA_SHA_2C # 'MMA_SHA_2C-Primary' + 'MMA_SHA_2C-Secondary'
128+
MIO_SHA_2C # 'MIO_SHA_2C-Primary' + 'MIO_SHA_2C-Secondary'
129+
MIO_SHA_2D # 'MIO_SHA_2D-Primary' + 'MIO_SHA_2D-Secondary'
130+
SwarmCI # 'MCO_SHA_2C' + 'MLI_SHA_2C' + 'MIO_SHA_2C-Primary' + 'MIO_SHA_2C-Secondary' + 'MMA_SHA_2C-Primary' + 'MMA_SHA_2C-Secondary'
131+
118132
Custom (user uploaded) models can be provided as a .shc file and become accessible in the same way as pre-defined models, under the name ``"Custom_Model"``.
119133

120134
Flexible evaluation of models and defining new derived models is possible with the "model expressions" functionality whereby models can be defined like:

docs/installation.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ Installation and first usage
44
1. Installation
55
---------------
66

7-
.. note:: For VRE (Virtual Research Environment) users (it's free!):
7+
.. note:: For VRE (Virtual Research Environment) users (it's free! - `read more <https://swarm-vre.readthedocs.io/>`_):
88

9-
viresclient is already installed so skip this step. Log in at https://vre.vires.services/ and refer to documentation at https://swarm-vre.readthedocs.io/
10-
11-
You may still need to configure viresclient (see step 2)
9+
viresclient is already installed so skip this step. Log in at https://vre.vires.services/ and refer to documentation at https://swarm-vre.readthedocs.io/. The access token should be automatically configured so you can jump in with the notebook demos.
1210

1311
Python ≥ 3.5 is required. Tested primarily on Linux, but macOS and Windows should also work (on v0.4+).
1412

docs/release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release notes
22
=============
33

4+
Changes from 0.6.1 to 0.6.2
5+
---------------------------
6+
7+
- Added automatic initialisation of access token when running on VRE
8+
- Added new composed model aliases (shortcuts)
9+
410
Changes from 0.6.0 to 0.6.1
511
---------------------------
612

viresclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from ._api.upload import DataUpload
3636
from ._api.token import TokenManager
3737

38-
__version__ = "0.6.1"
38+
__version__ = "0.6.2"

0 commit comments

Comments
 (0)