I have a very big NetCDF
file.
I tried to use the dask.array
feature in python xarray
module and specified the chunk size when I opened this data. It worked fine; however, when I tried to load the variables to memory using .load(), it was super slow.
I wonder is there any option (in xarray
or other python module) to read in subset of a NetCDF
file by providing indices of dimensions (lat, lon)? That way I can directly apply functions to the subset file without using the dask.array
.