You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
326 B
18 lines
326 B
2 years ago
|
netcdf compound_datasize_test {
|
||
|
types:
|
||
|
compound obs_t {
|
||
|
float lat ;
|
||
|
float lon ;
|
||
|
string stid ;
|
||
|
double time ;
|
||
|
float temperature ;
|
||
|
}; // obs_t
|
||
|
dimensions:
|
||
|
n = UNLIMITED ; // (2 currently)
|
||
|
variables:
|
||
|
obs_t obs(n) ;
|
||
|
data:
|
||
|
|
||
|
obs = {39.9, -104.9, "KDEN", 7776000, 15}, {40, -105, "KBOU", 7776000, 16} ;
|
||
|
}
|