mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
netcdf tst_brecs {
|
|
dimensions:
|
|
time = UNLIMITED ; // (20 currently)
|
|
variables:
|
|
byte b1(time) ;
|
|
byte b2(time) ;
|
|
byte b3(time) ;
|
|
data:
|
|
|
|
b1 = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ;
|
|
|
|
b2 = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ;
|
|
|
|
b3 = 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 ;
|
|
}
|