Is there a way to have positions as doubles in a netcdf file?? I can't
seem to figure this out?? If I do
variables:
double locations(start, delta) ;
float pressure(time, ny, nx) ;
pressure:field = "Pressure, scalar, series" ;
pressure:positions = "locations, regular" ;
I get no plot when I import the data, however, if I use
variables:
float locations(start, delta) ;
float pressure(time, ny, nx) ;
pressure:field = "Pressure, scalar, series" ;
pressure:positions = "locations, regular" ;
it is fine?? This seems goofy?? Am I doing something wrong?
Thanks
Matt