Cannot `convert` an object of type Missing to an object of type Float64

If you want to interpret the missings as NaNs, you could do:

using NCDatasets
ds1 = NCDataset("test.nc");
Var0 = ds1["Variable0"][:,:,:]
close(ds1);
Var0 = nomissing(Var0,NaN)
1 Like