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
The "_FillValue" field and the missingval are identical when a Raster is read, but unlike missingval it is not updated. So something like:
using Rasters, NCDatasets
filename =tempname() *".nc"
A = Rasters.create(filename, Float32, (X(1:10),), missingval =NaN32, force =true)
write("myraster2.nc", A .+1.0)
Gives a ERROR: NetCDF error: NetCDF: Not a valid data type or _FillValue type mismatch (NetCDF error code: -45)
Could we just ignore it whenever raw = false?
The text was updated successfully, but these errors were encountered:
The "_FillValue" field and the
missingval
are identical when a Raster is read, but unlike missingval it is not updated. So something like:Gives a
ERROR: NetCDF error: NetCDF: Not a valid data type or _FillValue type mismatch (NetCDF error code: -45)
Could we just ignore it whenever
raw = false
?The text was updated successfully, but these errors were encountered: