2010-06-03 21:24:43 +08:00
netcdf bears {
dimensions:
i = 2 ;
j = 3 ;
l = 3 ;
maxStrlen64 = 64 ;
variables:
short l(l) ;
char bears(i, j, maxStrlen64) ;
2017-06-29 03:51:01 +08:00
bears:act = "text string\\012\\011123" ;
2010-06-03 21:24:43 +08:00
bears:acs = -40s ;
bears:acl = 17000 ;
bears:acf = -2.f, 1.f, 0.f ;
bears:acd = -1., 0.75 ;
bears:string_length = 3 ;
short order(i, j) ;
int shot(i, j) ;
float aloan(i, j) ;
double cross(i, j) ;
// global attributes:
2017-06-29 03:51:01 +08:00
:history = "This is an example of a multi-line global\\012attribute. It could be used for representing the\\012processing history of the data, for example." ;
2012-08-01 04:34:13 +08:00
:DODS_EXTRA.Unlimited_Dimension = "k" ;
2017-06-29 03:51:01 +08:00
:i.i_1.attr3_1 = "17" ;
:i.i_1.attr3_2 = 19., 23., 27. ;
2010-06-03 21:24:43 +08:00
data:
l = 10, 9, 8 ;
bears =
"ind",
"ist",
"ing",
"uis",
"hab",
"le" ;
order =
1, 2, 3,
4, 5, 6 ;
shot =
2, 3, 4,
5, 6, 7 ;
aloan =
3, 4, 5,
6, 7, 1e+12 ;
cross =
4, 5, 0.000244140625,
7, 8, 10000000000 ;
}