You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an option to sequentially write to a local zarr file each multi-burst xarray in the main loop in load.all and do not return the whole concatenated xarray.
This would be useful in cases when the dataset is too large to fit into memory and you can lazily load it later.
The edits would be around would be around line 274. Instead of adding the output of _all_bursts_in_dat_to_xarray to a list, we would write it to a zarr with the append_dim set to 'time'. e.g.,
Add an option to sequentially write to a local zarr file each multi-burst xarray in the main loop in load.all and do not return the whole concatenated xarray.
This would be useful in cases when the dataset is too large to fit into memory and you can lazily load it later.
The edits would be around would be around line 274. Instead of adding the output of
_all_bursts_in_dat_to_xarray
to a list, we would write it to a zarr with the append_dim set to 'time'. e.g.,The text was updated successfully, but these errors were encountered: