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