NetCDF User's Guide for C
ncgen
utility to create the dataset before running a program using netCDF library calls to write data.) Similarly, if you are writing software to access data stored in a particular netCDF object, only a small subset of the netCDF library is required to open the netCDF dataset and access the data. Authors of generic applications that access arbitrary netCDF datasets need to be familiar with more of the netCDF library.
In this chapter we provide templates of common sequences of netCDF calls needed for common uses. For clarity we present only the names of routines; omit declarations and error checking; omit the type-specific suffixes of routine names for variables and attributes; indent statements that are typically invoked multiple times; and use ...
to represent arbitrary sequences of other statements. Full parameter lists are described in later chapters.
nc_create /* create netCDF dataset: enter define mode */ ... nc_def_dim /* define dimensions: from name and length */ ... nc_def_var /* define variables: from name, type, ... */ ... nc_put_att /* put attribute: assign attribute values */ ... nc_enddef /* end definitions: leave define mode */ ... nc_put_var /* provide values for variables */ ... nc_close /* close: save new netCDF dataset */Only one call is needed to create a netCDF dataset, at which point you will be in the first of two netCDF modes. When accessing an open netCDF dataset, it is either in define mode or data mode. In define mode, you can create dimensions, variables, and new attributes, but you cannot read or write variable data. In data mode, you can access data and change existing attributes, but you are not permitted to create new dimensions, variables, or attributes.
One call to nc_def_dim
is needed for each dimension created. Similarly, one call to nc_def_var
is needed for each variable creation, and one call to a member of the nc_put_att
family is needed for each attribute defined and assigned a value. To leave define mode and enter data mode, call nc_enddef.
Once in data mode, you can add new data to variables, change old values, and change values of existing attributes (so long as the attribute changes do not require more storage space). Single values may be written to a netCDF variable with one of the members of the nc_put_var1
family, depending on what type of data you have to write. All the values of a variable may be written at once with one of the members of the nc_put_var
family. Arrays or array cross-sections of a variable may be written using members of the nc_put_vara
family. Subsampled array sections may be written using members of the nc_put_vars
family. Mapped array sections may be written using members of the nc_put_varm
family. (Subsampled and mapped access are general forms of data access that are explained later.)
Finally, you should explicitly close all netCDF datasets that have been opened for writing by calling nc_close.
By default, access to the file system is buffered by the netCDF library. If a program terminates abnormally with netCDF datasets open for writing, your most recent modifications may be lost. This default buffering of data is disabled by setting the NC_SHARE flag when opening the dataset. But even if this flag is set, changes to attribute values or changes made in define mode are not written out until nc_sync
or nc_close is called.
nc_open /* open existing netCDF dataset */
...
nc_inq_dimid /* get dimension IDs */
...
nc_inq_varid /* get variable IDs */
...
nc_get_att
/* get attribute values */
...
nc_get_var /* get values of variables */
...
nc_close /* close netCDF dataset */
First, a single call opens the netCDF dataset, given the dataset name, and returns a netCDF ID that is used to refer to the open netCDF dataset in all subsequent calls.
Next, a call to nc_inq_dimid
for each dimension of interest gets the dimension ID from the dimension name. Similarly, each required variable ID is determined from its name by a call to nc_inq_varid
Once variable IDs are known, variable attribute values can be retrieved using the netCDF ID, the variable ID, and the desired attribute name as input to a member of the nc_get_att
family (typically nc_get_att_text
or nc_get_att_double
) for each desired attribute. Variable data values can be directly accessed from the netCDF dataset with calls to members of the nc_get_var1
family for single values, the nc_get_var
family for entire variables, or various other members of the nc_get_vara
, nc_get_vars
, or nc_get_varm
families for array, subsampled or mapped access.
Finally, the netCDF dataset is closed with nc_close.
There is no need to close a dataset open only for reading.
Names and other information about netCDF objects may be obtained from netCDF datasets by calling inquire functions. These return information about a whole netCDF dataset, a dimension, a variable, or an attribute. The following template illustrates how they are used:
nc_open /* open existing netCDF dataset */ ... nc_inq /* find out what is in it */ ... nc_inq_dim /* get dimension names, lengths */ ... nc_inq_var /* get variable names, types, shapes */ ... nc_inq_attname /* get attribute names */ ... nc_inq_att /* get attribute types and lengths */ ... nc_get_att /* get attribute values */ ... nc_get_var /* get values of variables */ ... nc_close /* close netCDF dataset */As in the previous example, a single call opens the existing netCDF dataset, returning a netCDF ID. This netCDF ID is given to the
nc_inq
routine, which returns the number of dimensions, the number of variables, the number of global attributes, and the ID of the unlimited dimension, if there is one.All the inquire functions are inexpensive to use and require no I/O, since the information they provide is stored in memory when a netCDF dataset is first opened.
Dimension IDs use consecutive integers, beginning at 0. Also dimensions, once created, cannot be deleted. Therefore, knowing the number of dimension IDs in a netCDF dataset means knowing all the dimension IDs: they are the integers 0, 1, 2, ...up to the number of dimensions. For each dimension ID, a call to the inquire function nc_inq_dim
returns the dimension name and length.
Variable IDs are also assigned from consecutive integers 0, 1, 2, ... up to the number of variables. These can be used in nc_inq_var
calls to find out the names, types, shapes, and the number of attributes assigned to each variable.
Once the number of attributes for a variable is known, successive calls to nc_inq_attname
return the name for each attribute given the netCDF ID, variable ID, and attribute number. Armed with the attribute name, a call to
nc_inq_att
returns its type and length. Given the type and length, you can allocate enough space to hold the attribute values. Then a call to a member of the nc_get_att
family returns the attribute values.
Once the IDs and shapes of netCDF variables are known, data values can be accessed by calling a member of the nc_get_var1
family for single values, or members of the nc_get_var, nc_get_vara, nc_get_vars,
or nc_get_varm f
or various kinds of array access.
nc_open /* open existing netCDF dataset */
...
nc_redef /* put it into define mode */
...
nc_def_dim /* define additional dimensions (if any) */
...
nc_def_var /* define additional variables (if any) */
...
nc_put_att
/* define additional attributes (if any) */
...
nc_enddef /* check definitions, leave define mode */
...
nc_put_var /* provide values for new variables */
...
nc_close /* close netCDF dataset */
A netCDF dataset is first opened by the nc_open
call. This call puts the open dataset in data mode, which means existing data values can be accessed and changed, existing attributes can be changed (so long as they do not grow), but nothing can be added. To add new netCDF dimensions, variables, or attributes you must enter define mode, by calling nc_redef
. In define mode, call nc_def_dim
to define new dimensions, nc_def_var
to define new variables, and a member of the nc_put_att
family to assign new attributes to variables or enlarge old attributes.
You can leave define mode and reenter data mode, checking all the new definitions for consistency and committing the changes to disk, by calling nc_enddef
. If you do not wish to reenter data mode, just call nc_close
, which will have the effect of first calling nc_enddef.
Until the nc_enddef
call, you may back out of all the redefinitions made in define mode and restore the previous state of the netCDF dataset by calling nc_abort.
You may also use the nc_abort
call to restore the netCDF dataset to a consistent state if the call to nc_enddef
fails. If you have called nc_close
from definition mode and the implied call to nc_enddef
fails, nc_abort
will automatically be called to close the netCDF dataset and leave it in its previous consistent state (before you entered define mode).
At most one process should have a netCDF dataset open for writing at one time. The library is designed to provide limited support for multiple concurrent readers with one writer, via disciplined use of the nc_sync function and the NC_SHARE flag. If a writer makes changes in define mode, such as the addition of new variables, dimensions, or attributes, some means external to the library is necessary to prevent readers from making concurrent accesses and to inform readers to call nc_sync before the next access.
The nc_strerror
function is available to convert a returned integer error status into an error message string.
Occasionally, low-level I/O errors may occur in a layer below the netCDF library. For example, if a write operation causes you to exceed disk quotas or to attempt to write to a device that is no longer available, you may get an error from a layer below the netCDF library, but the resulting write error will still be reflected in the returned status value.
Every C file that references netCDF functions or constants must contain an appropriate #include
statement before the first such reference:
#include <netcdf.h>Unless the
netcdf.h
file is installed in a standard directory where the C compiler always looks, you must use the -I
option when invoking the compiler, to specify a directory where netcdf.h
is installed, for example:
cc -c -I/usr/local/netcdf/include myprogram.cAlternatively, you could specify an absolute path name in the
#include
statement, but then your program would not compile on another platform where netCDF is installed in a different location.
Unless the netCDF library is installed in a standard directory where the linker always looks, you must use the -L
and -l
options to link an object file that uses the netCDF library. For example:
cc -o myprogram myprogram.o -L/usr/local/netcdf/lib -lnetcdfAlternatively, you could specify an absolute path name for the library:
cc -o myprogram myprogram.o -l/usr/local/netcdf/lib/libnetcdf.a