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)
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)