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
using YAXArrays, Zarr
a =YAXArray(zeros(Union{Missing, Int32},10,20))
f =tempname();
r =savecube(a,f,driver=:zarr,skeleton=true);
all(ismissing,r[:,:])
allocates memory during the zeros call, which is counter-intuitive to the idea of a skeleton, as well as very memory intensive.
The text was updated successfully, but these errors were encountered:
The current guide on creating a skeleton:
allocates memory during the
zeros
call, which is counter-intuitive to the idea of a skeleton, as well as very memory intensive.The text was updated successfully, but these errors were encountered: