netcdf-c/ncdump/ref_tst_fillbug.cdl
2010-06-03 13:24:43 +00:00

18 lines
219 B
Plaintext

netcdf tst_fillbug {
dimensions:
Time = UNLIMITED ; // (1 currently)
X = 4 ;
Y = 3 ;
variables:
double Time(Time) ;
float P(Time, Y, X) ;
data:
Time = 3.14159 ;
P =
_, _, _, _,
_, _, _, _,
_, _, _, _ ;
}