I can replace nan values in NetCDF using xarray like this:
hndl_nc = hndl_nc.fillna(0.0)
Is there a way to replace inf values with 0 as well?
I can replace nan values in NetCDF using xarray like this:
hndl_nc = hndl_nc.fillna(0.0)
Is there a way to replace inf values with 0 as well?
Numpy's
isfinite
captures bothnp.inf
andnp.nan
.Note that the next version of xarray (0.10) will allow you to specify the fill value in the
where method
directly.