mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
|
netcdf test_struct_array {
|
||
|
types:
|
||
|
compound s_t {
|
||
|
int x ;
|
||
|
int y ;
|
||
|
}; // s_t
|
||
|
dimensions:
|
||
|
dx = 4 ;
|
||
|
dy = 3 ;
|
||
|
variables:
|
||
|
s_t s(dx, dy) ;
|
||
|
|
||
|
}
|