mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
18 lines
350 B
Plaintext
18 lines
350 B
Plaintext
|
netcdf test_opaque_array {
|
||
|
types:
|
||
|
ubyte(*) _bytestring ;
|
||
|
dimensions:
|
||
|
d2 = 2 ;
|
||
|
variables:
|
||
|
_bytestring vo2(d2, d2) ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_DAP4_Little_Endian = 1UB ;
|
||
|
data:
|
||
|
|
||
|
vo2 =
|
||
|
{1, 35, 69, 103, 137, 171, 205, 239}, {171, 205, 239, 0, 0, 0, 0, 0},
|
||
|
{254, 220, 186, 152, 118, 84, 50, 16},
|
||
|
{254, 220, 186, 153, 153, 153, 153, 153} ;
|
||
|
}
|