#### Code Sample xarray adds a `_FillValue` to netCDFs even when there is no missing value: ```python import xarray as xr ds = xr.Dataset(data_vars={"data": ("dim1", [0., 1.])}) ds.to_netcdf('tst.nc') xr.open_dataset("tst.nc").data.encoding["_FillValue"] ```