-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Description
Currently using xarray version 0.9.2 and dask version 0.14.0.
Suppose you load a NetCDF file with the chunks parameter:
ds = xr.open_dataset("my_data.nc", decode_cf=False, chunks={'lon': 10, 'lat': 10})
The data is loaded as dask arrays, as expected. But if we then manually call xarray.decode_cf()
, it'll eagerly load the data. Is this the expected behavior, or should decode_cf()
preserve the laziness of the data?