mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
21 lines
317 B
Plaintext
21 lines
317 B
Plaintext
|
netcdf test_vlen8 {
|
||
|
types:
|
||
|
compound v1_base_t {
|
||
|
int v1 ;
|
||
|
}; // v1_base_t
|
||
|
v1_base_t(*) v1_t ;
|
||
|
dimensions:
|
||
|
d1 = 2 ;
|
||
|
d2 = 2 ;
|
||
|
variables:
|
||
|
v1_t v1(d1, d2) ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_DAP4_Little_Endian = 1UB ;
|
||
|
data:
|
||
|
|
||
|
v1 =
|
||
|
{{1}, {3}, {5}, {7}}, {{17}, {19}},
|
||
|
{{11}, {33}, {55}, {77}}, {{717}, {919}} ;
|
||
|
}
|