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