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.
21 lines
389 B
21 lines
389 B
2 years ago
|
netcdf ref_fillonly {
|
||
|
dimensions:
|
||
|
// When UNLIMITED is implemented, then use this value for x
|
||
|
// x = UNLIMITED ; // (6 currently)
|
||
|
x = 6;
|
||
|
variables:
|
||
|
int i(x) ;
|
||
|
i:_Storage = "chunked" ;
|
||
|
i:_ChunkSizes = 6 ;
|
||
|
float f(x) ;
|
||
|
f:_FillValue = -9999.f ;
|
||
|
f:_Storage = "chunked" ;
|
||
|
f:_ChunkSizes = 6 ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_Format = "netCDF-4" ;
|
||
|
data:
|
||
|
|
||
|
i = 1, 2, 3, 4, 5, 6 ;
|
||
|
}
|