netcdf-c/ncgen/gh323.cdl

20 lines
303 B
Plaintext

netcdf stations {
types:
compound obs_t {
float lat ;
float lon ;
string stid ;
double time ;
float temperature ;
}; // obs_t
dimensions:
n = UNLIMITED ;
variables:
obs_t obs(n) ;
data:
obs = {39.9, -104.9, "KDEN", 7776000, 15},
{40, -105, "KBOU", 7776000, 16} ;
}