mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
17 lines
303 B
Plaintext
17 lines
303 B
Plaintext
|
netcdf multifilter {
|
||
|
dimensions:
|
||
|
dim0 = 4 ;
|
||
|
dim1 = 4 ;
|
||
|
dim2 = 4 ;
|
||
|
dim3 = 4 ;
|
||
|
variables:
|
||
|
float var(dim0, dim1, dim2, dim3) ;
|
||
|
var:_Storage = "chunked" ;
|
||
|
var:_ChunkSizes = 4, 4, 4, 4 ;
|
||
|
var:_Filter = "307,9|1,2|40000" ;
|
||
|
var:_NoFill = "true" ;
|
||
|
|
||
|
// global attributes:
|
||
|
:_Format = "netCDF-4" ;
|
||
|
}
|