1netcdf tst_comp {
2types:
3  compound obs_t {
4    byte day ;
5    short elev ;
6    int count ;
7    float relhum ;
8    double time ;
9    ubyte category ;
10    ushort id ;
11    uint particularity ;
12    int64 attention_span ;
13  }; // obs_t
14dimensions:
15	n = 3 ;
16variables:
17	obs_t obs(n) ;
18		obs_t obs:_FillValue = {-99, -99, -99, -99, -99, 255, 65535, 4294967295, -9223372036854775806} ;
19data:
20
21 obs = {15, 2, 1, 0.5, 3600.01, 0, 0, 0, 0}, _,
22    {20, 6, 3, 0.75, 5000.01, 200, 64000, 4220002000, 9000000000000000000} ;
23}
24