-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v4.9.1-wellspring.wif' into v4.9.1-rc1-release.wif
- Loading branch information
Showing
5 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
NetCDF-4 Filter QuickStart | ||
============================== | ||
|
||
\tableofcontents | ||
|
||
<!-- double header is needed to workaround doxygen bug --> | ||
|
||
NetCDF-4 Filter QuickStart {#nc_filters_quickstart} | ||
============================== | ||
|
||
> For full **Filters** documentation, see \ref filters. | ||
**The `libnetcdf.so` library cannot talk to plugin libraries directly. Instead, it requires an "interface" library, which acts as a go-between. The interface libraries are built by the netCDF libraries, when the underlying plugin libraries are detected during configure/build.** | ||
|
||
Building and Installing the Interface Libraries {#nc_filters_qs_building} | ||
---------------------------------- | ||
|
||
When configuring netcdf via either the `configure` script or via `cmake`, you'll need to specify the location to install the interface libraries, as follows: | ||
|
||
* configure: `--with-plugin-dir=<absolutely directory>` | ||
* cmake: `-DPLUGIN_INSTALL_DIR=<absolutely directory>` | ||
|
||
After compiling and installing `libnetcdf`, the interface libraries for those filters detected will be installed in the user-specified `<absolute directory>`. | ||
|
||
|
||
Using the Interface Libraries at Run-time {#nc_filters_qs_runtime} | ||
--------------------------------- | ||
|
||
For historical reasons, `libnetcdf` uses the environmental variable `HDF5_PLUGIN_PATH` to local the interface libraries at run-time. | ||
|
||
|
||
Example Workflow (blosc) {#nc_filters_qs_workflow_example} | ||
-------------------------------------------------- | ||
|
||
From scratch, the steps to get this to work are as follows, and assumes `libhdf5` was installed. | ||
|
||
1. Install the filter library, and the associate development headers. | ||
2. Configure netCDF with `--enable-plugins` and `--with-plugin-dir=$HOME/netcdf-plugins` | ||
3. Ensure `blosc` is specified in the generated `libnetcdf.settings` file. | ||
4. Run make, make install. | ||
|
||
Once built and installed, set the environmental variable `HDF5_PLUGIN_PATH=$HOME/netcdf-plugins`. | ||
|
||
The reason this works is because: | ||
|
||
1. NetCDF builds the interface library. | ||
2. `ncdump` knows where to find the interface library because `HDF5_PLUGIN_PATH` is set. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters