Next: nc_put_vars_ type, Previous: nc_put_var_ type, Up: Variables
The function nc_put_vara_ type writes values into a netCDF variable of an open netCDF dataset. The part of the netCDF variable to write is specified by giving a corner and a vector of edge lengths that refer to an array section of the netCDF variable. The values to be written are associated with the netCDF variable by assuming that the last dimension of the netCDF variable varies fastest in the C interface. The netCDF dataset must be in data mode.
int nc_put_vara_ type (int ncid, int varid, const size_t start[], const size_t count[], const type *valuesp); int nc_put_vara_text (int ncid, int varid, const size_t start[], const size_t count[], const char *tp); int nc_put_vara_uchar (int ncid, int varid, const size_t start[], const size_t count[], const unsigned char *up); int nc_put_vara_schar (int ncid, int varid, const size_t start[], const size_t count[], const signed char *cp); int nc_put_vara_short (int ncid, int varid, const size_t start[], const size_t count[], const short *sp); int nc_put_vara_int (int ncid, int varid, const size_t start[], const size_t count[], const int *ip); int nc_put_vara_long (int ncid, int varid, const size_t start[], const size_t count[], const long *lp); int nc_put_vara_float (int ncid, int varid, const size_t start[], const size_t count[], const float *fp); int nc_put_vara_double(int ncid, int varid, const size_t start[], const size_t count[], const double *dp);
ncid
varid
start
count
tp
up
cp
sp
ip
lp
fp
dp
nc_put_vara_ 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_put_vara_double to add or change all the values of the variable named rh to 0.5 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, and that there are three time values, five lat values, and ten lon values.
#include <netcdf.h> ... #define TIMES 3 #define LATS 5 #define LONS 10 int status; /* error status */ int ncid; /* netCDF ID */ int rh_id; /* variable ID */ static size_t start[] = {0, 0, 0}; /* start at first value */ static size_t count[] = {TIMES, LATS, LONS}; double rh_vals[TIMES*LATS*LONS]; /* array to hold values */ int i; ... status = nc_open("foo.nc", NC_WRITE, &ncid); if (status != NC_NOERR) handle_error(status); ... status = nc_inq_varid (ncid, "rh", &rh_id); if (status != NC_NOERR) handle_error(status); ... for (i = 0; i < TIMES*LATS*LONS; i++) rh_vals[i] = 0.5; /* write values into netCDF variable */ status = nc_put_vara_double(ncid, rh_id, start, count, rh_vals); if (status != NC_NOERR) handle_error(status);