'filter'
is a string with the format
<list of objects> : <name of filter> = <filter parameters>.
<list of objects> is a comma separated list of object names meaning apply compression only to those objects. If no object names are specified, the filter is applied to all objects.
<name of filter>
can be:
GZIP, to apply the HDF5 GZIP filter (GZIP compression)
SZIP, to apply the HDF5 SZIP filter (SZIP compression)
SHUF, to apply the HDF5 shuffle filter
FLET, to apply the HDF5 checksum filter
NONE, to remove the filter
<filter parameters>
contains the optional compression information:
SHUF (no parameter)
FLET (no parameter)
GZIP=<deflation level> from 1-9
SZIP=<pixels per block,coding> (pixels per block is a even number in
2-32 and coding method is 'EC' or 'NN')
'layout' is a string with the format
<list of objects> : <layout type>
<list of objects> is a comma separated list of object names, meaning that layout information is supplied for those objects. If no object names are specified, the layout is applied to all objects.
<layout type>
can be:
CHUNK, to apply chunking layout
COMPA, to apply compact layout
CONTI, to apply continuous layout
<layout parameters> is present for the chunk case only it is the chunk size of each dimension: <dim_1 x dim_2 x ... dim_n>
h5repack -i file1 -o file2 -f GZIP=1 -v
Apply SZIP compression only to object 'dset1':
h5repack -i file1 -o file2 -f dset1:SZIP=8,NN -v
Apply a chunked layout to objects 'dset1' and 'dset2':
h5repack -i file1 -o file2 -l dset1,dset2:CHUNK=20x10 -v