-
I have a list which contains paths of netcdf files:
and I use xr.open_mfdataset() to open them as a dataset: However it crashed with error:
So where's my problem? How to solve it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@TomNicholas, should we raise a different error if the number of available chunk managers is 0? |
Beta Was this translation helpful? Give feedback.
open_mfdataset
requires a chunked array library to be installed (we don't support concatenation in our lazy array wrappers). By default, this isdask
. If you install that, the call should succeed.@TomNicholas, should we raise a different error if the number of available chunk managers is 0?