Skip to content

Commit

Permalink
Merge pull request #157 from pysat/doc/152_icon_const
Browse files Browse the repository at this point in the history
DOC: ICON constellation info
  • Loading branch information
jklenzing committed Apr 4, 2023
2 parents bb68cc9 + ef71528 commit 8147f59
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
* Documentation
* Added TIMED-GUVI platform
* Added missing sub-module imports
* Added discussion of ICON constellation to docstrings, including caveats
* Enhancements
* Updated platform methods to follow a consistent style and work with the
general `init` function
Expand Down
19 changes: 18 additions & 1 deletion pysatNASA/constellations/de2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
"""Creates a constellation from the NASA DE2 satellite platform."""
"""Creates a constellation from the NASA DE2 satellite platform.
Includes the core supported instruments.
Examples
--------
::
import pysat
import pysatNASA
de2 = pysat.Constellation(const_module=pysatNASA.constellations.de2)
de2.load(1983, 1)
"""

import pysat

Expand Down
22 changes: 21 additions & 1 deletion pysatNASA/constellations/icon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
"""Creates a constellation from NASA the ICON satellite platform."""
"""Creates a constellation from NASA the ICON satellite platform.
Includes the core instruments without the line of sight winds.
Note that IVM A and B are nominally never active at the same time. This
constellation should be initialized with `common_index=False`. This forgoes
the pysat check that ensures all instruments load data.
Examples
--------
::
import pysat
import pysatNASA
icon = pysat.Constellation(const_module=pysatNASA.constellations.icon,
common_index=False)
icon.load(2020, 1)
"""

import pysat

Expand Down

0 comments on commit 8147f59

Please sign in to comment.