mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-06 15:34:44 +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.
18 lines
401 B
Plaintext
18 lines
401 B
Plaintext
netcdf test {
|
|
variables:
|
|
double f64 ;
|
|
|
|
// 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:
|
|
|
|
f64 = 1000 ;
|
|
}
|