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.
19 lines
391 B
19 lines
391 B
netcdf bigr2 {
|
|
// large last record variable
|
|
// should fail with classic format
|
|
// should work fine with 64-bit offset format
|
|
dimensions:
|
|
x = 100 ;
|
|
y = 100 ;
|
|
z = 100 ;
|
|
t = UNLIMITED ;
|
|
variables:
|
|
float x(x) ;
|
|
float y(y) ;
|
|
float z(z) ;
|
|
float t(t) ;
|
|
float var2(t, x, y, z) ; // 4 GB in each record
|
|
float var1(t) ;
|
|
data:
|
|
var1 = 42 ;
|
|
}
|
|
|