1+ Heliopy 0.8.0 (2019-06-24)
2+ ==========================
3+
4+ Features
5+ --------
6+
7+ - :func: `heliopy.data.cdasrest.get_cdas_url ` and :func: `heliopy.data.cdasrest.get_data `
8+ have been generalised, and can now be used to download data in an arbitrary
9+ interval instead of just a single day. (`#714 <https://github.com/heliopython/heliopy/pull/714 >`__)
10+ - :mod: `heliopy.data.ace ` functions that download low cadence data (e.g. composition
11+ data) now download yearly instead of daily files, speeding up data download. (`#715 <https://github.com/heliopython/heliopy/pull/715 >`__)
12+
13+
14+ Backwards Incompatible Changes
15+ ------------------------------
16+
17+ - :func: `heliopy.data.cdasrest.get_cdas_url ` and :func: `heliopy.data.cdasrest.get_data `
18+ now take ``starttime `` and ``endtime `` arguments instead of just a ``date ``
19+ argument, and their signatures have changed to reflect this. (`#714 <https://github.com/heliopython/heliopy/pull/714 >`__)
20+
21+
122HelioPy 0.7.1 (2019-06-10)
223==========================
324
425Bug Fixes
5- ^^^^^^^^^
26+ ---------
627
728- Fix bug that prevented MMS data from spacecraft 4 being downloaded. (`#719 <https://github.com/heliopython/heliopy/pull/719 >`__)
829- Correctly attach units to MMS data. (`#726 <https://github.com/heliopython/heliopy/pull/726 >`__)
@@ -11,7 +32,7 @@ Version 0.7.0
1132=============
1233
1334New features
14- ^^^^^^^^^^^^
35+ ------------
1536
1637- Added a graph showing the available coordinate transformations to
1738 :mod: `heliopy.coordinates `
@@ -22,13 +43,13 @@ New features
2243 which should work better in notebooks.
2344
2445Bug fixes
25- ^^^^^^^^^
46+ ---------
2647
2748- Fixed a bug where not all MMS files were downloaded for a large query.
2849- Correctly removed bad values in :mod: `heliopy.data.omni `.
2950
3051Removed features
31- ^^^^^^^^^^^^^^^^
52+ ----------------
3253
3354- The deprecated :func: `heliopy.data.wind.swe_h3 ` and
3455 :func: `heliopy.data.wind.threedp_sfpd ` have been removed.
@@ -38,7 +59,7 @@ Version 0.6.7
3859=============
3960
4061Deprecations
41- ^^^^^^^^^^^^
62+ ------------
4263
4364- :func: `heliopy.data.wind.swe_h3 ` and :func: `heliopy.data.wind.threedp_sfpd `
4465 are deprecated and will be removed in version 0.7.0. This is becaue they
@@ -50,7 +71,7 @@ Version 0.6.6
5071=============
5172
5273Bug fixes
53- ^^^^^^^^^
74+ ---------
5475
5576- Data downloaded through CDAS is now moved from a temporary folder using
5677 ``shutil ``, fixing it when the temp folder and destination folder are on
@@ -60,7 +81,7 @@ Version 0.6.5
6081=============
6182
6283Bug fixes
63- ^^^^^^^^^
84+ ---------
6485
6586- :func: `heliopy.data.spice.get_kernel ` now raises a warning instead of an
6687 error if a kernel can't be downloaded.
@@ -70,7 +91,7 @@ Bug fixes
7091 time the module is imported.
7192
7293Backwards incompatible changes
73- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
94+ ------------------------------
7495
7596- :func: `heliopy.data.spice.get_kernel ` now prints a warning instead of
7697 raising an error if a kernel cannot be downloaded.
@@ -79,7 +100,7 @@ Version 0.6.4
79100=============
80101
81102New features
82- ^^^^^^^^^^^^
103+ ------------
83104
84105- Added the ability for :class: `heliopy.spice.Trajectory ` objects to compute
85106 and return the body velocity.
@@ -97,7 +118,7 @@ New features
97118 coordinate systems.
98119
99120Backwards incompatible changes
100- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
121+ ------------------------------
101122
102123- Kernels available in :mod: `heliopy.data.spice ` have been cleaned up,
103124 meaning some are now not available or have been moved to the predicted
@@ -117,20 +138,20 @@ Version 0.6.3
117138=============
118139
119140New features
120- ^^^^^^^^^^^^
141+ ------------
121142
122143- Added Parker Solar Probe spice kernels to :mod: `heliopy.data.spice `.
123144- Added a generic functions to download MMS data. Available files can be
124145 queried using :meth: `heliopy.data.mms.available_files `, and files can be
125146 downloaded using :meth: `heliopy.data.mms.download_files `
126147
127148Bug fixes
128- ^^^^^^^^^
149+ ---------
129150
130151- Updated links to the STEREO-A spice kernels.
131152
132153Backwards incompatible changes
133- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
154+ ------------------------------
134155
135156- :meth: `heliopy.data.mms.fgm_survey ` has been removed in favour of the more
136157 general :meth: `heliopy.data.mms.fgm `. To download survey mode FGM data use
@@ -140,28 +161,28 @@ Version 0.6.2
140161=============
141162
142163New features
143- ^^^^^^^^^^^^
164+ ------------
144165
145166- Added :meth: `heliopy.data.mms.fpi_des_moms ` function. :issue: `601 `
146167- Added :meth: `heliopy.data.wind.threedp_e0_emfits ` function. :issue: `606 `
147168
148169Bug fixes
149- ^^^^^^^^^
170+ ---------
150171
151172- Fixed :meth: `heliopy.data.mms.fgm_survey ` data loading. :issue: `601 `
152173
153174Version 0.6.1
154175=============
155176
156177New features
157- ^^^^^^^^^^^^
178+ ------------
158179- The :mod: `heliopy.data.ace ` module now contains all the magnetic field and
159180 particle data produces produced by ACE. :issue: `577 `, :issue: `578 `
160181- STEREO-A spice kernels have been added. :issue: `585 `
161182
162183
163184Bug fixes
164- ^^^^^^^^^
185+ ---------
165186- The accidentally removed Ulysses spice kernel has returned. :issue: `582 `
166187- :func: `heliopy.data.helper.cdfpeek ` has been updated to work with cdflib, and now
167188 prints all CDF file information.
@@ -172,7 +193,7 @@ Version 0.6.0
172193HelioPy now only supports Python versions 3.6 and higher.
173194
174195New features
175- ^^^^^^^^^^^^
196+ ------------
176197- HelioPy has been integrated with SunPy TimeSeries and AstroPy Units. All of
177198 the HelioPy modules now return physical units with data.
178199- Added a new :func: `.data.util.cdf_units ` function that can extract the UNIT
@@ -183,7 +204,7 @@ New features
183204 can now be imported using the :func: `.data.dscovr.mag_h0 ` function.
184205
185206Backwards incompatible changes
186- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
207+ ------------------------------
187208- Methods in :mod: `heliopy.data ` no longer returns a Pandas DataFrame, but
188209 now return a SunPy timeseries object. To get the underlying data, you can
189210 still do::
@@ -203,14 +224,14 @@ Backwards incompatible changes
203224
204225
205226Fixed bugs
206- ^^^^^^^^^^
227+ ----------
207228- :func: `.data.imp.merged ` no longer imports redundant columns.
208229
209230Version 0.5.3
210231=============
211232
212233New features
213- ^^^^^^^^^^^^
234+ ------------
214235
215236- Lots of small documentation updates.
216237- `.data.helios.distparams ` now has an extra ``'data_rate' `` column, which
@@ -221,13 +242,13 @@ Version 0.5.2
221242=============
222243
223244New features
224- ^^^^^^^^^^^^
245+ ------------
225246
226247- The new HelioPy logo has been added to the documentation.
227248 :issue: `448 `, :issue: `447 `
228249
229250Fixed bugs
230- ^^^^^^^^^^
251+ ----------
231252
232253- The new data version number of :meth: `.data.mms.fpi_dis_moms ` has been
233254 updated.
@@ -237,17 +258,17 @@ Version 0.5.1
237258=============
238259
239260New features
240- ^^^^^^^^^^^^
261+ ------------
241262
242263- HelioPy can now be installed using conda.
243264
244265Backwards incompatible changes
245- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
266+ ------------------------------
246267- The list of kernels available for automatic download in :mod: `.data.spice `
247268 has been updated, and some names changed. :issue: `408 `
248269
249270Fixed bugs
250- ^^^^^^^^^^
271+ ----------
251272- :meth: `.spice.Trajectory.generate_positions ` can now generate
252273 positions at a resolution of one second instead of one day. :issue: `405 `
253274- A duplicate "z gsm" column header in the data returned by
@@ -257,7 +278,7 @@ Version 0.5.0
257278=============
258279
259280New features
260- ^^^^^^^^^^^^
281+ ------------
261282
262283- :meth: `heliopy.data.sunspot ` added an additional functionality to import
263284 sunspot data in three different timeframes - daily, monthly and yearly.
@@ -270,7 +291,7 @@ New features
270291 :mod: `heliopy.data.ace `.
271292
272293Backwards incompatible changes
273- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
294+ ------------------------------
274295
275296- :meth: `heliopy.data.spice.get_kernel ` now returns a list of filenames instead
276297 of a single filename string.
@@ -281,7 +302,7 @@ Backwards incompatible changes
281302 data import.
282303
283304Removed features
284- ^^^^^^^^^^^^^^^^
305+ ----------------
285306
286307- :meth: `heliopy.data.helios.trajectory ` has been removed. To get Helios
287308 trajectory data use the :mod: `heliopy.spice ` and :mod: `heliopy.data.spice `
@@ -291,7 +312,7 @@ Version 0.4
291312===========
292313
293314New features
294- ^^^^^^^^^^^^
315+ ------------
295316
296317- :meth: `~heliopy.data.ulysses.swics_abundances ` and
297318 :meth: `~heliopy.data.ulysses.swics_heavy_ions `
@@ -300,7 +321,7 @@ New features
300321 CDF files.
301322
302323Backwards incompatible changes
303- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
324+ ------------------------------
304325
305326- :meth: `heliopy.spice.Trajectory.generate_positions ` now takes a list of
306327 dates/times at which to generate orbital positions, instead of a start time,
@@ -311,7 +332,7 @@ Version 0.3
311332===========
312333
313334New features
314- ^^^^^^^^^^^^
335+ ------------
315336
316337HelioPy now contiains code for working with SPICE kernels. See the following
317338modules for more information:
@@ -320,7 +341,7 @@ modules for more information:
320341- :mod: `heliopy.spice ` module for automatically processing spice kernels
321342
322343Removed features
323- ^^^^^^^^^^^^^^^^
344+ ----------------
324345
325346- The :mod: `heliopy.plasma ` module has been removed
326347 (see http://www.plasmapy.org/ for the recommended alternative)
@@ -330,7 +351,7 @@ Version 0.2
330351===========
331352
332353New features
333- ^^^^^^^^^^^^
354+ ------------
334355
335356- Convert examples gallery to automatically generate plots
336357- Added :meth: `HelioPy.data.helper.listdata ` method for easily viewing the
@@ -342,7 +363,7 @@ Version 0.1.3
342363=============
343364
344365Fixed bugs
345- ^^^^^^^^^^
366+ ----------
346367
347368- Correctly report download percentage when downloading files.
348369- Fix issue where :meth: `heliopy.data.helios.corefit ` made duplicate .hdf
0 commit comments