Skip to content
This repository was archived by the owner on Jan 26, 2022. It is now read-only.

Commit 2a585dd

Browse files
authored
Merge pull request #826 from dstansby/cassini-v2
Cassini v2
2 parents cc5c5eb + 3be9432 commit 2a585dd

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGES.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ Backwards Incompatible Changes
4545
- The `heliopy.coordinates` module has been removed completely. This only ever
4646
contained two coordinate frames and a single transformation, both of which are
4747
implemented in :mod:`sunpy.coordinates` now. (`#820 <https://github.com/heliopython/heliopy/pull/820>`__)
48+
- :mod:`heliopy.data.cassini` data download methods have been updated to use the newly released V2
49+
Cassini MAG data. You may need to delete old data to be able to download the
50+
newer data.
4851

4952

5053
Bug Fixes

heliopy/data/psp.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ def fname(self, interval):
4848

4949

5050
def sweap_spc_l3(starttime, endtime):
51+
"""
52+
SWEAP SPC proton and alpha particle moments and fits.
53+
"""
5154
dl = _SWEAPL3Downloader()
5255
return dl.load(starttime, endtime)
5356

@@ -70,5 +73,8 @@ def fname(self, interval):
7073

7174

7275
def fields_mag_rtn_1min(starttime, endtime):
76+
"""
77+
1 minute averaged magnetic field data.
78+
"""
7379
dl = _FIELDSmag_RTN_1min_Downloader()
7480
return dl.load(starttime, endtime)

0 commit comments

Comments
 (0)