mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
18 lines
219 B
Plaintext
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 =
|
|
_, _, _, _,
|
|
_, _, _, _,
|
|
_, _, _, _ ;
|
|
}
|