mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
97ce621091
re: esupport 31942 * Add a new set of remote tests based on using the opendap hyrax server * Re-enable --enable-dap-remote-tests as default on * Make it possible to query the DMR separate from the DAP so that it is possible to delay reading data until it is actually requested. This make things like ncdump -h much more efficient. * Fix handling of <Map>s in DMRs. * Fix some memory leaks
25 lines
469 B
Plaintext
25 lines
469 B
Plaintext
netcdf ref_tst_compounds {
|
|
types:
|
|
compound obs_t {
|
|
short day ;
|
|
short elev ;
|
|
int count ;
|
|
float relhum ;
|
|
double time ;
|
|
}; // obs_t
|
|
dimensions:
|
|
n = 3 ;
|
|
variables:
|
|
obs_t obs(n) ;
|
|
obs:day = -99s ;
|
|
obs:elev = -99s ;
|
|
obs:count = -99 ;
|
|
obs:relhum = -99.00005f ;
|
|
obs:time = -99. ;
|
|
data:
|
|
|
|
obs = {15, 2, 1, 0.5, 3600.01},
|
|
{-99, -1, -1027211264, 0, 8.34446731226507e-309},
|
|
{0, 16192, -1889785610, 5.610353, 5.08101286513212e+233} ;
|
|
}
|