Another temporary cdl file added.

This commit is contained in:
Ward Fisher 2016-11-15 13:48:58 -07:00
parent e879a3c78b
commit 915d6ec9be

16
ncgen/gh323-c.cdl Normal file
View File

@ -0,0 +1,16 @@
netcdf stations {
types:
compound obs_t {
int lat;
double lon;
}; // obs_t
dimensions:
n = UNLIMITED ;
variables:
obs_t obs(n) ;
data:
obs = {39.9, -104},
{40, -105} ;
}