mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
12 lines
130 B
Plaintext
12 lines
130 B
Plaintext
|
netcdf small2 {
|
||
|
dimensions:
|
||
|
t = UNLIMITED ; // (1 currently)
|
||
|
m = 5 ;
|
||
|
variables:
|
||
|
byte b(t, m) ;
|
||
|
data:
|
||
|
|
||
|
b =
|
||
|
1, 2, 3, 4, 5 ;
|
||
|
}
|