get open_mfdataset to return numpy arrays #5689
Unanswered
raybellwaves
asked this question in
Q&A
Replies: 1 comment 1 reply
-
To open without dask you have to pass Line 899 in 4bb9d9c Not sure why that is. Maybe it's possible to get around this using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using
open_mfdataset
on many zarr stores which each have a large number of chunks.I would like to return a Dataset where the data_var is a numpy array i.e. bring it all into memory in the
open_mfdataset
call but i'm having difficulties. I've played around thechunks
arg andparallel
arg but they all seem return adask.array
. It could be the chunking on the underlying zarr stores which require loading. Here's some code to test:Generate zarr stores
Read zarr stores
Beta Was this translation helpful? Give feedback.
All reactions