mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-30 16:10:44 +08:00
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
netcdf y {
|
|
dimensions:
|
|
Dr = UNLIMITED ; // (2 currently)
|
|
D1 = 1 ;
|
|
D2 = 2 ;
|
|
D3 = 3 ;
|
|
U=unlimited;
|
|
variables:
|
|
char cuu(Dr,D2,U);
|
|
data:
|
|
cuu = {{"a","def"}}, {{"xy"}};
|
|
}
|