Unidata - To provide the data services, tools, and cyberinfrastructure leadership that advance Earth system science, enhance educational opportunities, and broaden participation. Unidata
         
  advanced  
 

Next: , Previous: nc_inq_grps, Up: Groups



3.3 Find all the Variables in a Group: nc_inq_varids

Find all varids for a location.

Usage

     int nc_inq_varids(int ncid, int *varids);
ncid
The group id for this operation.
varids
An already allocated array to store the list of varids. Ignored if NULL. Use nc_inq_nvars to find out how many variables there are. (see nc_inq Family).

Errors

NC_NOERR
No error.
NC_EBADID
Bad group id.
NC_ENOTNC4
Attempting a netCDF-4 operation on a netCDF-3 file. NetCDF-4 operations can only be performed on files defined with a create mode which includes flag HDF5. (see nc_open).
NC_ESTRICTNC3
This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see nc_open).
NC_EHDFERR
An error was reported by the HDF5 layer.

Example

        int root_ncid, numvars;
        int *varids;
        char file[] = "nc4_test.nc";
     
        /* Open the file. */
        if ((res = nc_open(file, NC_NOWRITE, &root_ncid)))
           return res;
     
        /* Get a list of varids for the root group. (That is, find out of
           there are any groups already defined. */
        if ((res = nc_inq_nvars(root_ncid, &numvars)))
           return res;
        varids = malloc(sizeof(int) * numvars);
        if ((res = nc_inq_grps(root_ncid, NULL, varids)))
           return res;
 
 
  Contact Us     Site Map     Search     Terms and Conditions     Privacy Policy     Participation Policy
 
National Science Foundation (NSF) UCAR Office of Programs University Corporation for Atmospheric Research (UCAR)   Unidata is a member of the UCAR Office of Programs, is managed by the University Corporation for Atmospheric Research, and is sponsored by the National Science Foundation.
P.O. Box 3000     Boulder, CO 80307-3000 USA     Tel: 303-497-8643     Fax: 303-497-8690