netcdf-c/ncgen3/bigf3.cdl

18 lines
414 B
Plaintext
Raw Permalink Normal View History

2010-06-03 21:24:43 +08:00
netcdf bigf3 {
// fixed-size variables only, large last variable
// should fail with classic format due to 4.3 GB var
// should fail with 64-bit offset format because huge var not last
dimensions:
x = 1025 ;
y = 1025 ;
z = 1025 ;
variables:
float x(x) ;
float y(y) ;
float z(z) ;
float fvar(x, y, z) ; // 4.308 GB variable
float flast ;
data:
flast = 42;
}