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
312 B
19 lines
312 B
2 years ago
|
netcdf ref_fillonly {
|
||
|
dimensions:
|
||
|
x = UNLIMITED ; // (6 currently)
|
||
|
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 ;
|
||
|
}
|