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.
17 lines
306 B
17 lines
306 B
netcdf ref_tst_nul3 {
|
|
dimensions:
|
|
n = 8 ;
|
|
variables:
|
|
char cdata(n) ;
|
|
|
|
char cdata2(n) ;
|
|
|
|
// global attributes:
|
|
:global = "x\000y" ;
|
|
:byte_att = '\000','\001','\002','\177','\200','\201','\376','\377';
|
|
data:
|
|
|
|
cdata = "abc\000def" ;
|
|
|
|
cdata2 = '\000','\001','\002','\177','\200','\201','\376','\377';
|
|
}
|
|
|