netcdf-c/nc_test4/ref_fixedstring.cdl
Dennis Heimbigner ef425b9171 ckp
2024-09-30 14:39:48 -06:00

17 lines
262 B
Plaintext

netcdf ref_fixedstring {
dimensions:
phony_dim_0 = 4 ;
variables:
string v1 ;
string vn(phony_dim_0) ;
// global attributes:
:att1 = "abcd" ;
string :attn = "abcd", "efgh", "ijkl", "mnop" ;
data:
v1 = "abcd" ;
vn = "abcd", "efgh", "ijkl", "mnop" ;
}