Skip to content

Commit 87f9cdf

Browse files
authored
Merge pull request #22 from dstansby/more-changlog
Final finishes for 0.2
2 parents 892b34f + 1b6f2c8 commit 87f9cdf

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

CHANGELOG.rst

+16
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ The following methods have been updated to support this:
2424
``t_idx`` argument, which is the time index at which to plot the cuts. This
2525
defaults to ``t_idx=0``.
2626

27+
When loading a set of netCDF files they will be lazily loaded along the time
28+
dimension (ie. only one file will be read into memory at any one time).
29+
30+
When loading a set of HDF4 or HDF5 files all of them will be read into
31+
memory, so beware loading lots of them! Support for lazy loading may be
32+
implemented for HDF4 or HDF5 files in the future.
33+
34+
Animations
35+
~~~~~~~~~~
36+
`Variable.plot_radial_cut`, `Variable.plot_phi_cut`, and
37+
`Variable.plot_equatorial_cut` now support animation creation. If multiple
38+
timesteps are loaded in the `Variable` and the timestep isn't specified, a
39+
:class:`~matplotlib.animation.Animation` object will be returend instead of
40+
a single plot being created. See the example gallery for more information on
41+
how to save the animation to disk.
42+
2743
Other new features
2844
~~~~~~~~~~~~~~~~~~
2945
- Added :func:`~psipy.io.mas.convert_hdf_to_netcdf` to convert a set of HDF

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ setup_requires =
2626
setuptools_scm
2727
install_requires =
2828
astropy>=3.2
29+
dask
2930
h5py # For hdf5 files
3031
heliopy[data, spice]
3132
matplotlib

0 commit comments

Comments
 (0)