Cloned library NetCDF-C-4.9.2 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
427 B

2 years ago
netcdf ref_tst_compounds2 {
types:
compound cmp1 {
short i ;
int j ;
}; // cmp1
compound cmp2 {
float x ;
double y(3, 2) ;
}; // cmp2
compound cmp3 {
cmp1 xx ;
cmp2 yy ;
}; // cmp3
dimensions:
phony_dim = 1 ;
variables:
cmp3 phony_compound_var(phony_dim) ;
data:
phony_compound_var =
{{20000, 300000}, {100000, {-100000.028899567, -100000, -100000, -100000, -100000, -100000}}} ;
}