You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many dataset operations are available through the indexing interface, which is aliased to the functional interface. Below describes the functional interface.
[H5Zlz4.jl](https://github.com/JuliaIO/HDF5.jl/tree/master/filters/H5Zlz4), and
45
+
[H5Zzstd.jl](https://github.com/JuliaIO/HDF5.jl/tree/master/filters/H5Zzstd) packages are maintained as
46
+
independent subdirectory packages within the HDF5.jl repository.
47
+
48
+
### H5Zblosc.jl
49
+
50
+
```@meta
51
+
CurrentModule = H5Zblosc
52
+
```
53
+
54
+
```@docs
55
+
BloscFilter
56
+
```
57
+
58
+
### H5Zbzip2.jl
59
+
60
+
```@meta
61
+
CurrentModule = H5Zbzip2
62
+
```
63
+
64
+
```@docs
65
+
Bzip2Filter
66
+
```
67
+
68
+
### H5Zlz4.jl
69
+
70
+
```@meta
71
+
CurrentModule = H5Zlz4
72
+
```
73
+
74
+
```@docs
75
+
Lz4Filter
76
+
```
77
+
78
+
### H5Zzstd.jl
79
+
80
+
```@meta
81
+
CurrentModule = H5Zzstd
82
+
```
83
+
84
+
```@docs
85
+
ZstdFilter
86
+
```
87
+
88
+
## Other External Filters
89
+
90
+
Additional filters can be dynamically loaded by the HDF5 library. See [External Links](@ref) below for more information.
91
+
92
+
## Filter Interface
93
+
94
+
```@meta
95
+
CurrentModule = HDF5.Filters
96
+
```
97
+
98
+
The filter interface is used to describe filters and obtain information on them.
99
+
100
+
```@docs
101
+
Filter
102
+
FilterPipeline
103
+
FILTERS
104
+
filterid
105
+
encoder_present
106
+
decoder_present
107
+
filtername
108
+
can_apply_func
109
+
can_apply_cfunc
110
+
set_local_func
111
+
set_local_cfunc
112
+
filter_func
113
+
filter_cfunc
114
+
register_filter
115
+
```
116
+
117
+
## External Links
118
+
119
+
* A [list of registered filter plugins](https://portal.hdfgroup.org/display/support/Registered+Filter+Plugins) can be found on the HDF Group website.
120
+
*[See the HDF5 Documentation of HDF5 Filter Plugins for details.](https://portal.hdfgroup.org/display/support/HDF5+Filter+Plugins)
121
+
* The source code for many external plugins have been collected in the [HDFGroup hdf5_plugins repository](https://github.com/HDFGroup/hdf5_plugins).
122
+
*[Compiled binaries of dynamically downloaded plugins](https://portal.hdfgroup.org/display/support/Downloads) by downloaded from HDF5 Group.
0 commit comments