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.
 
 
 
 
 
 

48 lines
439 B

netcdf ref_tst_chardata {
dimensions:
Dr = UNLIMITED ; // (4 currently)
D1 = 1 ;
D2 = 2 ;
D3 = 3 ;
variables:
char c1(D1) ;
char cr(Dr) ;
char cr2(Dr, D2) ;
char cr21(Dr, D2, D1) ;
char cr33(Dr, D3, D3) ;
data:
c1 = "" ;
cr = "ab" ;
cr2 =
"@",
"D",
"H",
"L" ;
cr21 =
"@",
"D",
"H",
"L",
"",
"",
"",
"" ;
cr33 =
"1",
"two",
"3",
"4",
"5",
"six",
"",
"",
"",
"",
"",
"" ;
}