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.
 
 
 
 
 
 

21 lines
338 B

netcdf ref_string {
dimensions:
d2 = 2 ;
variables:
char c(d2);
string v(d2) ;
string truncated ;
truncated:_nczarr_maxstrlen = 4 ;
// global attributes:
string :stringattr = "abc", "def" ;
:charattr = "ghi", "jkl" ;
:_nczarr_default_maxstrlen = 6 ;
data:
c = "a", "b" ;
v = "uvw", "xyz" ;
truncated = "0123456789" ;
}