keller-mark / pizzarr

Slice into Zarr arrays in R 🍕
https://keller-mark.github.io/pizzarr/
MIT License
27 stars 3 forks source link

Write new zarr object to disk #62

Closed aloboa closed 7 months ago

aloboa commented 7 months ago

User story Given your example:

a <- array(data=1:20, dim=c(2, 10))
z <- zarr_create(shape=dim(a), dtype="<f4", fill_value=NA)

Preferred solution I would like to be able to write z to a file so that somebody could import my (350x300x941) array as a zarr array in python.

Possible alternatives