mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
|
netcdf test_atomic_array {
|
||
|
types:
|
||
|
byte enum cloud_class_t {Clear = 0, Cumulonimbus = 1, Stratus = 2,
|
||
|
Stratocumulus = 3, Cumulus = 4, Altostratus = 5, Nimbostratus = 6,
|
||
|
Altocumulus = 7, Cirrostratus = 8, Cirrocumulus = 9, Cirrus = 10,
|
||
|
Missing = 127} ;
|
||
|
ubyte(*) _bytestring ;
|
||
|
dimensions:
|
||
|
d1 = 1 ;
|
||
|
d2 = 2 ;
|
||
|
d3 = 3 ;
|
||
|
d4 = 4 ;
|
||
|
d5 = 5 ;
|
||
|
variables:
|
||
|
ubyte vu8(d2, d3) ;
|
||
|
short v16(d4) ;
|
||
|
uint vu32(d2, d3) ;
|
||
|
double vd(d2) ;
|
||
|
char vc(d2) ;
|
||
|
string vs(d2, d2) ;
|
||
|
_bytestring vo(d1, d2) ;
|
||
|
cloud_class_t primary_cloud(d5) ;
|
||
|
cloud_class_t primary_cloud:_FillValue = Missing ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_DAP4_Little_Endian = 1UB ;
|
||
|
data:
|
||
|
|
||
|
vu8 =
|
||
|
186, 201, 131,
|
||
|
63, 189, 55 ;
|
||
|
|
||
|
v16 = -341, -21899, -13413, -22144 ;
|
||
|
|
||
|
vu32 =
|
||
|
2367803413, 3586730583, 511843988,
|
||
|
3754752863, 2950934681, 2366232135 ;
|
||
|
|
||
|
vd = 0.217870081192792, 0.602450791996768 ;
|
||
|
|
||
|
vc = "CO" ;
|
||
|
|
||
|
vs =
|
||
|
"{S", "gb8^OE$",
|
||
|
"4a/q%n9;5Y", "{fIl?T\"\\A[" ;
|
||
|
|
||
|
vo =
|
||
|
|
||
|
{162, 23, 122, 167, 40, 124, 4, 250, 139, 181, 123, 205, 247, 110, 200, 15},
|
||
|
{52, 250, 71, 42, 169, 64, 77, 213, 67, 20, 60, 173, 237, 48, 58, 117} ;
|
||
|
|
||
|
primary_cloud = Stratus, Cirrocumulus, Nimbostratus, Cirrostratus,
|
||
|
Stratocumulus ;
|
||
|
}
|