Next: nc_get_var_ type, Previous: nc_put_varm_ type, Up: Variables
The functions nc_get_var1_ type get a single data value from a variable of an open netCDF dataset that is in data mode. Inputs are the netCDF ID, the variable ID, a multidimensional index that specifies which value to get, and the address of a location into which the data value will be read. The value is converted from the external data type of the variable, if necessary.
int nc_get_var1_text (int ncid, int varid, const size_t index[], char *tp); int nc_get_var1_uchar (int ncid, int varid, const size_t index[], unsigned char *up); int nc_get_var1_schar (int ncid, int varid, const size_t index[], signed char *cp); int nc_get_var1_short (int ncid, int varid, const size_t index[], short *sp); int nc_get_var1_int (int ncid, int varid, const size_t index[], int *ip); int nc_get_var1_long (int ncid, int varid, const size_t index[], long *lp); int nc_get_var1_float (int ncid, int varid, const size_t index[], float *fp); int nc_get_var1_double(int ncid, int varid, const size_t index[], double *dp);
ncid
varid
index[]
tp
up
cp
sp
ip
lp
fp
dp
nc_get_var1_ type returns the value NC_NOERR if no errors occurred. Otherwise, the returned status indicates an error. Possible causes of errors include:
Here is an example using nc_get_var1_double to get the (1,2,3) element of the variable named rh in an existing netCDF dataset named foo.nc. For simplicity in this example, we assume that we know that rh is dimensioned with time, lat, and lon, so we want to get the value of rh that corresponds to the second time value, the third lat value, and the fourth lon value:
#include <netcdf.h> ... int status; /* error status */ int ncid; /* netCDF ID */ int rh_id; /* variable ID */ static size_t rh_index[] = {1, 2, 3}; /* where to get value from */ double rh_val; /* where to put it */ ... status = nc_open("foo.nc", NC_NOWRITE, &ncid); if (status != NC_NOERR) handle_error(status); ... status = nc_inq_varid (ncid, "rh", &rh_id); if (status != NC_NOERR) handle_error(status); ... status = nc_get_var1_double(ncid, rh_id, rh_index, &rh_val); if (status != NC_NOERR) handle_error(status);