mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
cbb6df3232
User request to have all orphaned DAP2 attributes kept as netcdf global attributes. This is primarily a change in the oc code nplus testcase dataset changes. Result may be inconsistent with netcdf-Java output.
29 lines
743 B
Plaintext
29 lines
743 B
Plaintext
netcdf test {
|
|
dimensions:
|
|
maxStrlen64 = 64 ;
|
|
person = 5 ;
|
|
variables:
|
|
char person.name(person, maxStrlen64) ;
|
|
int person.age(person) ;
|
|
|
|
// global attributes:
|
|
:Facility.PrincipleInvestigator = "Mark Abbott\n",
|
|
"Ph.D" ;
|
|
:Facility.DataCenter = "COAS Environmental Computer Facility" ;
|
|
:Facility.DrifterType = "MetOcean WOCE/OCM" ;
|
|
:b.Description = "A test byte" ;
|
|
:b.units = "unknown" ;
|
|
:i32.Description = "A 32 bit test server int" ;
|
|
:i32.units = "unknown" ;
|
|
data:
|
|
|
|
person.name =
|
|
"This is a data test string (pass 0).",
|
|
"This is a data test string (pass 1).",
|
|
"This is a data test string (pass 2).",
|
|
"This is a data test string (pass 3).",
|
|
"This is a data test string (pass 4)." ;
|
|
|
|
person.age = 1, 2, 3, 5, 8 ;
|
|
}
|