mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-21 08:39:46 +08:00
20 lines
303 B
Plaintext
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} ;
|
|
}
|