How to solve the memory issue while using the concat command? #5966
-
data=xr.concat([xr.open_rasterio(i) for i in ENVIFiles], dim='time') |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
@emaildipen, when you get a moment, can you try loading files lazily via data = xr.open_mfdataset(ENVIFiles, engine="rasterio", chunks={}, parallel=True, concat_dim='time') ?? Note: if you are using xarray v0.18 or later, |
Beta Was this translation helpful? Give feedback.
-
I have 5 variables in xarray.Dataset. One of my variables 'DNB' has '65535' which represents the missing values. I want to change this value to nan. I tried this |
Beta Was this translation helpful? Give feedback.
@emaildipen, when you get a moment, can you try loading files lazily via
open_mfdataset
??
Note: if you are using xarray v0.18 or later,
xr.open_rasterio
has been deprecated: #4697