File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,22 @@ The following methods have been updated to support this:
24
24
``t_idx `` argument, which is the time index at which to plot the cuts. This
25
25
defaults to ``t_idx=0 ``.
26
26
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
+
27
43
Other new features
28
44
~~~~~~~~~~~~~~~~~~
29
45
- Added :func: `~psipy.io.mas.convert_hdf_to_netcdf ` to convert a set of HDF
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ setup_requires =
26
26
setuptools_scm
27
27
install_requires =
28
28
astropy>=3.2
29
+ dask
29
30
h5py # For hdf5 files
30
31
heliopy[data, spice]
31
32
matplotlib
You can’t perform that action at this time.
0 commit comments