-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
I know this should really be done in xarray, but I've been using the xbitinfo .to_compressed_netcdf() and .to_compressed_zarr() convenience functions even when I'm not using bitrounding because... they are convenient! :)
CF conventions don't allow missing values in coordinates but xarray produces them nonetheless. I usually remove them via this little code snippet:
for index in ds.indexes:
ds[index].encoding['_FillValue'] = NoneWould there be any downside to adding this to to_compressed_netcdf so users don't have to?
Metadata
Metadata
Assignees
Labels
No labels