mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
16 lines
216 B
Plaintext
16 lines
216 B
Plaintext
netcdf test {
|
|
dimensions:
|
|
i32_0 = 2 ;
|
|
i32_1 = 2 ;
|
|
i32_2 = 3 ;
|
|
variables:
|
|
int i32(i32_0, i32_1, i32_2) ;
|
|
data:
|
|
|
|
i32 =
|
|
8192, 10240, 12288,
|
|
16384, 18432, 20480,
|
|
32768, 34816, 36864,
|
|
40960, 43008, 45056 ;
|
|
}
|