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.
44 lines
697 B
Plaintext
44 lines
697 B
Plaintext
netcdf test {
|
|
dimensions:
|
|
maxStrlen64 = 64 ;
|
|
variables:
|
|
byte b ;
|
|
b:Description = "A test byte" ;
|
|
b:units = "unknown" ;
|
|
int i32 ;
|
|
i32:Description = "A 32 bit test server int" ;
|
|
i32:units = "unknown" ;
|
|
int ui32 ;
|
|
short i16 ;
|
|
short ui16 ;
|
|
float f32 ;
|
|
double f64 ;
|
|
char s(maxStrlen64) ;
|
|
char u(maxStrlen64) ;
|
|
|
|
// global attributes:
|
|
:Facility.PrincipleInvestigator = "Mark Abbott\n",
|
|
"Ph.D" ;
|
|
:Facility.DataCenter = "COAS Environmental Computer Facility" ;
|
|
:Facility.DrifterType = "MetOcean WOCE/OCM" ;
|
|
data:
|
|
|
|
b = 0 ;
|
|
|
|
i32 = 1 ;
|
|
|
|
ui32 = 0 ;
|
|
|
|
i16 = 0 ;
|
|
|
|
ui16 = 0 ;
|
|
|
|
f32 = 0 ;
|
|
|
|
f64 = 1000 ;
|
|
|
|
s = "This is a data test string (pass 0)." ;
|
|
|
|
u = "http://www.dods.org" ;
|
|
}
|