NetCDF Users Guide  v1.1
Getting and Building netCDF

This document is for getting and building the netCDF C library and utilities for the most recent released version.
Other libraries that depend on the netCDF C library, such as the Fortran, Python, Java, and C++ libraries, are available as separate distributions that can be optionally built and installed after the C library is successfully installed.
The netCDF-Java library is independent of the netCDF C library unless writing netCDF-4 files from Java is required.

Getting netCDF-C

Getting pre-built netCDF-C libraries.

The easiest way to get netCDF is through a package management program, such as rpm, yum, homebrew, macports, adept, and others. NetCDF is available from many different repositories, including the default Red Hat and Ubuntu repositories.

When getting netCDF from a software repository, you should get a development version that includes the netcdf.h header file. A development version will typically have a name such as "netcdf-devel" or "libnetcdf-dev".

Instructions for installing and using pre-built libraries for Windows may be found here: Installing and Using netCDF-C Libraries in Windows.

Getting the latest netCDF-C Source Code

The netCDF-C source code is hosted from the Unidata GitHub repository.

Two options are available for building from source:

  • The latest release.
  • The developer snapshot.

The latest release

The latest full release may be downloaded from GitHub.

Source files are available in .tar.gz and .zip formats.

The developer snapshot

The developer snapshot may be cloned from GitHub directly by using the git command.

$ git clone http://github.com/Unidata/netcdf-c netcdf-c

Note:

The developer snapshot release contains bug-fixes and new features added since the last full release, but may also contain new bugs, as it is not tested as extensively as the full release.

Building netCDF-C

The netCDF-C library and utilities require third-party libraries for full functionality. (See NetCDF Library Architecture).

Requirements

  • For netCDF-4 support
    • HDF5 1.8.9 or later.
    • HDF5 1.10.1 or later.
  • zlib 1.2.5 or later (for netCDF-4 compression)
  • curl 7.18.0 or later (for DAP remote access client support)
  • For parallel I/O support on classic netCDF files
    • PnetCDF 1.6.0 or later

Important Note: When building netCDF-C library versions older than 4.4.1, use only HDF5 1.8.x versions.

Combining older netCDF-C versions with newer HDF5 1.10 versions will create superblock 3 files that are not readable by lots of older software.
See this announcement for more details.

CMake and Windows support

Building with netCDF-4 and the Remote Data Client

The usual way of building netCDF requires the HDF5, zlib, and curl libraries. Versions required are at least HDF5 1.8.9, zlib 1.2.5, and curl 7.18.0 or later.

HDF5 and zlib packages are available from the HDF5 downloads site and the zlib home site. If you wish to use the remote data client code, then you will also need libcurl, which can be obtained from the curl website.

Note that for building netCDF, it is not necessary to build the HDF5 Fortran, C++, or Java API's. Only the HDF5 C library is used, even for netCDF Fortran or C++ libraries.

Optional: szip support

Optionally, you can also build netCDF-4 with the szip library (a.k.a. szlib). If building with szlib, get szip 2.0 or later. Technically, we mean that the HDF5 library is built with szip support. The netcdf build will then inherit szip support from the HDF5 library. If you intend to write files with szip compression, then we suggest that you use libaec to avoid patent problems. That library can be used as a drop-in replacement for the standard szip library. If you plan to use the standard szip library, then determine whether license restrictions on the use of szip apply to your situation. See the web page on szip compression in HDF products.

If make check fails for either zlib or HDF5, the problem must be resolved before the netCDF-4 installation can continue. For HDF5 problems, see the HDF5 help services.

Building zlib from source

To build zlib from source, specify where you want to install zlib in a shell variable you will also use later (ZDIR, for example), and build it like this from the top-level zlib source directory

$ # Build and install zlib
$ ZDIR=/usr/local
$ ./configure --prefix=${ZDIR}
$ make check
$ make install # or sudo make install, if root permissions required

Building hdf5 from source

Next, specify where you want to install HDF5 in another shell variable, for example H5DIR, and build it from the HDF5 top-level source directory:

$ # Build and install HDF5
$ H5DIR=/usr/local
$ ./configure --with-zlib=${ZDIR} --prefix=${H5DIR} --enable-hl
$ make check
$ make install # or sudo make install, if root permissions required

If you are building HDF5 with the optional szip library, include the --with-szlib= option to specify where it was installed.

In all cases, the installation location specified with the --prefix option must be different from the source directory where the software is being built.

Building netCDF-4 and the Remote Data Client from source

Before building netCDF, you may need to add ${H5DIR}/lib to the LD_LIBRARY_PATH environment variable if that lib directory is not searched by default. See the netCDF FAQ for more details on using shared libraries.

Indicate where you want to install netCDF in another shell variable, for example NCDIR. Then run the netCDF configure script, specifying where HDF5 was installed using the CPPFLAGS and LDFLAGS environment variables. For example, from the top-level netCDF source directory:

$ # Build and install netCDF-4
$ NCDIR=/usr/local
$ CPPFLAGS='-I${H5DIR}/include -I${ZDIR}/include' LDFLAGS='-L${H5DIR}/lib -L${ZDIR}/lib' ./configure --prefix=${NCDIR}
$ make check
$ make install # or sudo make install

If you don't provide a --prefix option, installation will be in /usr/local/, in subdirectories lib/, include/, and bin/.
The installation location specified with the --prefix option must be different from the source directory where the software is being built.

WARNING: you should be able to use parallel 'make all'. But 'make check' will probably fail if you use parallel make. This is because historically, there are inter-dependencies between test programs. It is unlikely that this will be fixed any time soon, if ever.

Building netCDF with Classic Library Only

It is possible to build the netCDF C libraries and utilities so that only the netCDF classic and 64-bit offset formats are supported, or the remote data access client is not built. (See The netCDF File Format for more information about the netCDF format variants.
See the <ahref="http://www.opendap.org/documentation">DAP documentation and support site for more information about remote client access to data on OPeNDAP servers.)

If necessary, set the NCDIR shell variable to indicate where netCDF should be installed. Then to build a netCDF-3 library without support for the netCDF-4 formats or functions, but with remote client access, use:

$ # Build and install netCDF-3 from netCDF-4 source
$ ./configure --prefix=${NCDIR} --disable-netcdf-4
$ make check install

To build with full support for netCDF-4 API's and format but without remote client access, use:

$ # Build and install netCDF-4 without DAP client support
$ ./configure --prefix=${NCDIR} --disable-dap
$ make check install

To build without netCDF-4 support or remote client access, use:

$ # Build and install minimal netCDF-3 with no DAP client support
$ ./configure --prefix=${NCDIR} --disable-netcdf-4 --disable-dap
$ make check install

If you get the message that netCDF installed correctly, then you are done!

Building with HDF4 Support

The netCDF-4 library can read HDF4 data files, if they were created with the SD (Scientific Data) API.

For this to work, you must build the HDF4 library with the configure option --disable-netcdf to prevent it from building an HDF4 version of the netCDF-2 library that conflicts with the netCDF-2 functions that are built into the Unidata netCDF library.

Then, when building netCDF-4, use the --enable-hdf4 option to configure. The location for the HDF4 header files and library must be specified in the CPPFLAGS and LDFLAGS environment variables or configure options.

For HDF4 access to work, the library must be built with netCDF-4 features.

Here's an example, assuming the HDF5 library has been built and installed in H5DIR and you will build and install the HDF4 library in H4DIR (which could be the same as H5DIR). From the top-level HDF4 source directory:

$ # Build and install HDF4
$ ./configure --enable-shared --disable-netcdf --disable-fortran --prefix=${H4DIR}
$ make check
$ make install

Then from the top-level netCDF directory:

$ # Build and install netCDF-4 with HDF4 access enabled
$ CPPFLAGS="-I${H5DIR}/include -I${H4DIR}/include" \
LDFLAGS="-L${H5DIR}/lib -L${H4DIR}/lib" \
./configure --enable-hdf4 --enable-hdf4-file-tests
$ make check
$ make install

Building with Parallel I/O Support

For parallel I/O to work, HDF5 must be installed with --enable-parallel, and an MPI library (and related libraries) must be made available to the HDF5 configure. This can be accomplished with an mpicc wrapper script.

The following works from the top-level HDF5 source directory to buildHDF5 with parallel I/O:

$ # Build and install HDF5 with parallel support
$ CC=mpicc ./configure --enable-parallel --prefix=${H5DIR}
$ make check
$ make install

If the HDF5 used by netCDF has been built with parallel I/O, then netCDF will also be built with inherited support for parallel I/O. This allows parallel I/O access to netCDF-4/HDF5 files.
(See /ref netcdf_formats for more information about the netCDF format variants.)

From the top-level netCDF-4 source directory, the following builds netCDF-4 with parallel I/O, assuming H5DIR specifies where parallel HDF5 was installed:

$ # Build, test, and install netCDF-4 with HDF5 parallel support
$ CC=mpicc CPPFLAGS=-I${H5DIR}/include LDFLAGS=-L${H5DIR}/lib \
./configure --disable-shared --enable-parallel-tests --prefix=${NCDIR}
$ make check
$ make install

Building PnetCDF from source

To enable parallel I/O support for classic netCDF files, i.e. CDF-1, 2 and 5 formats, PnetCDF library must also be installed.
First specify where you want to install PnetCDF in a shell variable, for example PNDIR, and build it from the PnetCDF top-level source directory. If you would like to build the shared library, include --enable-shared option at the configure command line.
By default, only a static library is built.

$ # Build and install PnetCDF
$ PNDIR=/usr/local
$ ./configure --prefix=${PNDIR} --with-mpi=/path/to/MPI/compilers
$ make check
$ make install # or sudo make install, if root permissions required

To build netCDF-4 with PnetCDF support, from the top-level netCDF-4 source directory, configure netCDF with the "--enable-pnetcdf" option. If PnetCDF is built with static library only, add "--disable-shared" option.

$ # Build, test, and install netCDF-4 with PnetCDF support
$ CC=mpicc CPPFLAGS="-I${H5DIR}/include -I${PNDIR}/include" \
LDFLAGS="-L${H5DIR}/lib -L${PNDIR}/lib" ./configure \
--enable-pnetcdf --enable-parallel-tests \
--prefix=${NCDIR}
$ make check
$ make install

Linking to netCDF-C

For static builds of applications that use netCDF-4 you must link to all the libraries, netCDF, HDF5, zlib, szip (if used with HDF5 build), PnetCDF (if used with PnetCDF build), and curl (if the remote access client has not bee disabled). This will require -L options to your build for the locations of the libraries, and -l (lower-case L) for the names of the libraries.

For example, you might build other applications with netCDF-4 by setting the LIBS environment variable, assuming NCDIR, H5DIR, PNDIT, and ZDIR indicate where netCDF, HDF5, PnetCDF, and zlib are installed:

LIBS="-L${NCDIR}/lib -lnetcdf -L${H5DIR}/lib -lhdf5_hl -lhdf5 -L${PNDIR} -lpnetcdf -L${ZDIR}/lib -lz -lm"

For shared builds, only -L${NCDIR}/lib -lnetcdf is needed. All other libraries will be found automatically.

The pkg-config or nc-config utilities can be used to specify build options for software that uses netCDF.
For example, to compile and link an application named myapp.c with a netCDF-C libraries, whether shared or static, you can use

$ cc -o myapp myapp.c `nc-config --cflags --libs`

or

$ PKG_CONFIG_PATH=${NCDIR}/lib/pkgconfig:$PKG_CONFIG_PATH
$ export PKG_CONFIG_PATH
$ cc -o myapp myapp.c `pkg-config --cflags --libs netcdf`

configure options

These options are used for autotools-based builds.yup

Note: --disable prefix indicates that the option is normally enabled.

OptionDescriptionDependencies
–disable-doxygenDisable generation of documentation.doxygen
–disable-fsyncdisable fsync supportkernel fsync support
–disable-netcdf-4build netcdf-3 without HDF5 and zlib
–disable-netcdf4synonym for disable-netcdf-4
–enable-hdf4build netcdf-4 with HDF4 read capabilityHDF4, HDF5 and zlib
–enable-hdf4-file-teststest ability to read HDF4 filesselected HDF4 files from Unidata ftp site
–disable-parallel4build netcdf-4 without parallel I/O support
–disable-cdf5build netcdf-4 without support of classic CDF-5 file format
–enable-pnetcdfbuild netcdf-4 with parallel I/O for classic files (CDF-1, 2, and 5 formats) using PnetCDFPnetCDF
–enable-extra-example-testsRun extra example tests–enable-netcdf-4,GNU sed
–disable-filter-testingRun filter example–enable-shared –enable-netcdf-4
–enable-parallel-tests run extra parallel IO tests–enable-netcdf-4 or –enable-pnetcdf, parallel IO support
–enable-loggingenable logging capability–enable-netcdf-4
–disable-dapbuild without DAP client support.libcurl
–disable-dap-remote-testsdisable dap remote tests–enable-dap
–enable-dap-long-testsenable dap long tests
–enable-extra-testsrun some extra tests that may not pass because of known issues
–enable-ffiouse ffio instead of posixio (ex. on the Cray)
–disable-examplesdon't build the netCDF examples during make check (examples are treated as extra tests by netCDF)
–disable-v2turn off the netCDF version 2 API
–disable-utilitiesdon't build netCDF utilities ncgen, ncdump, and nccopy
–disable-testsetsdon't build or run netCDF tests
–enable-large-file-tests Run tests which create very large data files~13 GB disk space required, but recovered when tests are complete). See option –with-temp-large to specify temporary directory
–enable-benchmarksRun benchmarks. This is an experimental feature. The benchmarks are extra tests, used to check netCDF performance. sample data files from the Unidata ftp site
–disable-extreme-numbers don't use extreme numbers during testing, such as MAX_INT - 1
–disable-shareddon't build shared libraries
–disable-staticdon't build static libraries
–disable-largefileomit support for files larger than 2GB
–enable-mmapUse mmap to implement NC_DISKLESSSystem-provided mmap or mremap functions
–enable-valgrind-tests build with valgrind-tests; static builds onlyvalgrind

Build Instructions for netCDF-C using CMake

Overview

Starting with netCDF-C 4.3.0, we are happy to announce the inclusion of CMake support.
CMake will allow for building netCDF on a wider range of platforms, include Microsoft Windows with Visual Studio.
CMake support also provides robust unit and regression testing tools.
We will also maintain the standard autotools-based build system in parallel.

In addition to providing new build options for netCDF-C, we will also provide pre-built binary downloads for the shared versions of netCDF for use with Visual Studio.

Requirements

The following packages are required to build netCDF-C using CMake.

  • netCDF-C Source Code
  • CMake version 2.8.12 or greater.
  • Optional Requirements:
    • HDF5 Libraries for netCDF4/HDF5 support.
    • libcurl for DAP support.
    • PnetCDF libraries for parallel I/O support to classic netCDF files

The CMake Build Process

There are four steps in the Build Process when using CMake

  1. Configuration: Before compiling, the software is configured based on the desired options.
  2. Building: Once configuration is complete, the libraries are compiled.
  3. Testing: Post-build, it is possible to run tests to ensure the functionality of the netCDF-C libraries.
  4. Installation: If all tests pass, the libraries can be installed in the location specified during configuration.

For users who prefer pre-built binaries, installation packages are available at Installing and Using netCDF-C Libraries in Windows

Configuration

The output of the configuration step is a project file based on the appropriate configurator specified.
Common configurators include:

  • Unix Makefiles
  • Visual Studio
  • CodeBlocks
  • ... and others

Common CMake Options

Option Autotools CMake
Specify Install Location –prefix=PREFIX -D"CMAKE_INSTALL_PREFIX=PREFIX"
Enable/Disable netCDF-4 –enable-netcdf-4
–disable-netcdf-4
-D"ENABLE_NETCDF_4=ON"
-D"ENABLE_NETCDF_4=OFF"
Enable/Disable DAP –enable-dap
–disable-dap
-D"ENABLE_DAP=ON"
-D"ENABLE_DAP=OFF"
Enable/Disable Utilities –enable-utilities
–disable-utilities
-D"BUILD_UTILITIES=ON"
-D"BUILD_UTILITIES=OFF"
Specify shared/Static Libraries –enable-shared
–enable-static
-D"BUILD_SHARED_LIBS=ON"
-D"BUILD_SHARED_LIBS=OFF"
Enable/Disable Parallel netCDF-4 –enable-parallel4
–disable-parallel4
-D"ENABLE_PARALLEL4=ON"
-D"ENABLE_PARALLEL4=OFF"
Enable/Disable PnetCDF –enable-pnetcdf
–disable-pnetcdf
-D"ENABLE_PNETCDF=ON"
-D"ENABLE_PNETCDF=OFF"
Enable/Disable CDF5 –enable-cdf5
–disable-cdf5
-D"ENABLE_CDF5=ON"
-D"ENABLE_CDF5=OFF"
Enable/Disable Tests –enable-testsets
–disable-testsets
-D"ENABLE_TESTS=ON"
-D"ENABLE_TESTS=OFF"
Enable/Disable Parallel Tests –enable-parallel-tests
–disable-parallel-tests
-D"ENABLE_PARALLEL_TESTS=ON"
-D"ENABLE_PARALLEL_TESTS=OFF"
Specify a custom library location Use CFLAGS and LDFLAGS -D"CMAKE_PREFIX_PATH=/usr/custom_libs/"

A full list of basic options can be found by invoking cmake [Source Directory] -L. To enable a list of basic and advanced options, one would invoke cmake [Source Directory] -LA.

Configuring your build from the command line.

The easiest configuration case would be one in which all of the dependent libraries are installed on the system path (in either Unix/Linux or Windows) and all the default options are desired. From the build directory (often, but not required to be located within the source directory):

$ cmake [Source Directory]

If you have libraries installed in a custom directory, you may need to specify the CMAKE_PREFIX_PATH variable to tell cmake where the libraries are installed. For example:

$ cmake [Source Directory] -DCMAKE_PREFIX_PATH=/usr/custom_libraries/

Building

The compiler can be executed directly with 'make' or the appropriate command for the configurator which was used.

$ make

Building can also be executed indirectly via cmake:

$ cmake –build [Build Directory]

Testing

Testing can be executed several different ways:

$ make test

or

$ ctest

or

$ cmake –build [Build Directory] –target test

Installation

Once netCDF has been built and tested, it may be installed using the following commands:

$ make install

or

$ cmake –build [Build Directory] –target install

See Also

For further information regarding netCDF and CMake, see CMake-Related Frequently Asked Questions.