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.
17 lines
384 B
17 lines
384 B
netcdf bigf2 {
|
|
// fixed-size variables only, large last variable
|
|
// should fail with classic format due to 4 GB var
|
|
// should work fine with 64-bit offset format
|
|
dimensions:
|
|
x = 100 ;
|
|
y = 100 ;
|
|
z = 100 ;
|
|
variables:
|
|
float x(x) ;
|
|
float y(y) ;
|
|
float z(z) ;
|
|
float fvar(x, y, z) ; // 4 GB variable
|
|
float flast ;
|
|
data:
|
|
flast = 42;
|
|
}
|
|
|