netcdf-c/ncdump/ref_tst_fillbug.cdl

18 lines
219 B
Plaintext
Raw Normal View History

2010-06-03 21:24:43 +08:00
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 =
_, _, _, _,
_, _, _, _,
_, _, _, _ ;
}