netcdf-c/ncdap_test/expectremote3/test.07.3.dmp
dmh cbb6df3232 Github issue 152: https://github.com/Unidata/netcdf-c/issues/152
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.
2015-11-29 20:38:12 -07:00

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 ;
}