mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
20 lines
393 B
Plaintext
20 lines
393 B
Plaintext
netcdf bigr3 {
|
|
// large last record variable
|
|
// should fail with classic format
|
|
// should fail with 64-bit offset format
|
|
dimensions:
|
|
x = 1025 ;
|
|
y = 1025 ;
|
|
z = 1025 ;
|
|
t = UNLIMITED ;
|
|
variables:
|
|
float x(x) ;
|
|
float y(y) ;
|
|
float z(z) ;
|
|
float t(t) ;
|
|
float var2(t, x, y, z) ; // 4.308 GB in each record
|
|
float var1(t) ;
|
|
data:
|
|
var1 = 42 ;
|
|
}
|