mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
23 lines
351 B
Plaintext
23 lines
351 B
Plaintext
netcdf ref_string {
|
|
dimensions:
|
|
d2 = 2 ;
|
|
_scalar_ = 1 ;
|
|
variables:
|
|
char c(d2) ;
|
|
string truncated(_scalar_) ;
|
|
truncated:_nczarr_maxstrlen = 4 ;
|
|
string v(d2) ;
|
|
|
|
// global attributes:
|
|
:stringattr = "[\"abc\",\"def\"]" ;
|
|
:charattr = "ghijkl" ;
|
|
:_nczarr_default_maxstrlen = 6 ;
|
|
data:
|
|
|
|
c = "ab" ;
|
|
|
|
truncated = "0123" ;
|
|
|
|
v = "uvw", "xyz" ;
|
|
}
|