You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "netCDF4/_netCDF4.pyx", line 2263, in netCDF4._netCDF4.Dataset.createVariable (netCDF4/_netCDF4.c:18764)
File "netCDF4/_netCDF4.pyx", line 3235, in netCDF4._netCDF4.Variable.__init__ (netCDF4/_netCDF4.c:31564)
RuntimeError: NetCDF: Bad chunk sizes.
If I include format = NETCDF3_64BIT, the write completes.
This seems like a bug.
Example dataset: ftp://ftp.ucar.edu/pub/cgd/mclong/misc/nc4-test.nc
The text was updated successfully, but these errors were encountered:
When I read a file with netCDF4 compression into a Dataset, a subsequent call to write the dataset using
to_netcdf
fails.For instance, using data from the POP model, I can convert output to netCDF4 using NCO
Then in Python:
The write fails with:
If I include
format = NETCDF3_64BIT
, the write completes.This seems like a bug.
Example dataset: ftp://ftp.ucar.edu/pub/cgd/mclong/misc/nc4-test.nc
The text was updated successfully, but these errors were encountered: