![]() |
NetCDF 4.9.3
|
#include "nc4internal.h"#include "nc4dispatch.h"Go to the source code of this file.
Functions | |
| int | NC4_inq_dimid (int ncid, const char *name, int *idp) |
| int | NC4_inq_unlimdim (int ncid, int *unlimdimidp) |
| int | NC4_inq_unlimdims (int ncid, int *nunlimdimsp, int *unlimdimidsp) |
This file is part of netcdf-4, a netCDF-like interface for HDF5, or a HDF5 backend for netCDF, depending on your point of view.
This file handles the nc4 dimension functions.
Definition in file nc4dim.c.
| int NC4_inq_dimid | ( | int | ncid, |
| const char * | name, | ||
| int * | idp ) |
Given dim name, find its id. Fully qualified names are legal
| ncid | File and group ID. |
| name | Name of the dimension to find. |
| idp | Pointer that gets dimension ID. |
| int NC4_inq_unlimdim | ( | int | ncid, |
| int * | unlimdimidp ) |
Netcdf-4 files might have more than one unlimited dimension, but return the first one anyway.
| ncid | File and group ID. |
| unlimdimidp | Pointer that gets ID of first unlimited dimension, or -1. |
| int NC4_inq_unlimdims | ( | int | ncid, |
| int * | nunlimdimsp, | ||
| int * | unlimdimidsp ) |
Returns an array of unlimited dimension ids.The user can get the number of unlimited dimensions by first calling this with NULL for the second pointer.
| ncid | File and group ID. |
| nunlimdimsp | Pointer that gets the number of unlimited dimensions. Ignored if NULL. |
| unlimdimidsp | Pointer that gets arrray of unlimited dimension ID. Ignored if NULL. |