NetCDF-Fortran 4.6.1
|
NetCDF-4 added support for hierarchical groups within netCDF datasets.
Groups are identified with a ncid, which identifies both the open file, and the group within that file. When a file is opened with NF90_OPEN or NF90_CREATE, the ncid for the root group of that file is provided. Using that as a starting point, users can add new groups, or list and navigate existing groups.
All netCDF calls take a ncid which determines where the call will take its action. For example, the NF90_DEF_VAR function takes a ncid as its first parameter. It will create a variable in whichever group its ncid refers to. Use the root ncid provided by NF90_CREATE or NF90_OPEN to create a variable in the root group. Or use NF90_DEF_GRP to create a group and use its ncid to define a variable in the new group.
Variable are only visible in the group in which they are defined. The same applies to attributes. “Global” attributes are defined in whichever group is refered to by the ncid.
Dimensions are visible in their groups, and all child groups.
Group operations are only permitted on netCDF-4 files - that is, files created with the HDF5 flag in nf90_create. (see section NF90_CREATE). Groups are not compatible with the netCDF classic data model, so files created with the NF90_CLASSIC_MODEL file cannot contain groups (except the root group).
Given an ncid and group name (NULL or "" gets root group), return ncid of the named group.
NCID
: The group id for this operation.
NAME
: A character array that holds the name of the desired group. Must be less then NF90_MAX_NAME.
GRPID
: The ID of the group will go here.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
This example is from nf90_test/ftst_groups.F.
Given a location id, return the number of groups it contains, and an array of their ncids.
NCID
: The group id for this operation.
NUMGRPS
: An integer which will get number of groups in this group.
NCIDS
: An array of ints which will receive the IDs of all the groups in this group.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Find all varids for a location.
NCID
: The group id for this operation.
VARIDS
: An already allocated array to store the list of varids. Use nf90_inq_nvars to find out how many variables there are. (see section Get Information about a Variable from Its ID: NF90_INQUIRE_VARIABLE).
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Find all dimids for a location. This finds all dimensions in a group, or any of its parents.
NCID
: The group id for this operation.
NDIMS
: Returned number of dimensions for this location. If include_parents is non-zero, number of dimensions visible from this group, which includes dimensions in parent groups.
DIMIDS
: An array of ints when the dimids of the visible dimensions will be stashed. Use nf90_inq_ndims to find out how many dims are visible from this group. (see section Get Information about a Variable from Its ID: NF90_INQUIRE_VARIABLE ).
INCLUDE_PARENTS
: If zero, only the group specified by NCID will be searched for dimensions. Otherwise parent groups will be searched too.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Given ncid, find length of the full name. (Root group is named "/", with length 1.)
NCID
: The group id for this operation.
LEN
: An integer where the length will be placed.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Given ncid, find relative name of group. (Root group is named "/").
The name provided by this function is relative to the parent group. For a full path name for the group is, with all parent groups included, separated with a forward slash (as in Unix directory names) See section Find a Group’s Full Name: NF90_INQ_GRPNAME_FULL.
NCID
: The group id for this operation.
NAME
: The name of the group will be copied to this character array. The name will be less than NF90_MAX_NAME in length.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Given ncid, find complete name of group. (Root group is named "/").
The name provided by this function is a full path name for the group is, with all parent groups included, separated with a forward slash (as in Unix directory names). For a name relative to the parent group See section Find a Group’s Name: NF90_INQ_GRPNAME.
NCID
: The group id for this operation.
LEN
: The length of the full group name will go here.
NAME
: The name of the group will be copied to this character array.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
This example is from test program nf_test/f90tst_grps.f90.
Given ncid, find the ncid of the parent group.
When used with the root group, this function returns the NF90_ENOGRP error (since the root group h has no parent.)
NCID
: The group id.
PARENT_NCID
: The ncid of the parent group will be copied here.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_ENOGRP
: No parent group found (i.e. this is the root group).
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
Given a group name an an ncid, find the ncid of the group id.
NCID
: The group id to look in.
GRP_NAME
: The name of the group that should be found.
GRP_NCID
: This will get the group id, if it is found.
The following return codes may be returned by this function.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_EINVAL
: No name provided or name longer than NF90_MAX_NAME.
NF90_ENOGRP
: Named group not found.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
This example is from test program nf_test/f90tst_grps.f90.
Given a fully qualified group name an an ncid, find the ncid of the group id.
NCID
: The group id to look in.
FULL_NAME
: The fully-qualified group name.
GRP_NCID
: This will get the group id, if it is found.
The following return codes may be returned by this function.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_EINVAL
: No name provided or name longer than NF90_MAX_NAME.
NF90_ENOGRP
: Named group not found.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
This example is from test program nf_test/tstf90_grps.f90.
Create a group. Its location id is returned in new_ncid.
PARENT_NCID
: The group id of the parent group.
NAME
: The name of the new group, which must be different from the name of any variable within the same parent group.
NEW_NCID
: The ncid of the new group will be placed there.
NF90_NOERR
: No error.
NF90_EBADID
: Bad group id.
NF90_ENAMEINUSE
: That name is in use. Group names must be unique within a group.
NF90_EMAXNAME
: Name exceed max length NF90_MAX_NAME.
NF90_EBADNAME
: Name contains illegal characters.
NF90_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 section NF90_OPEN).
NF90_ESTRICTNC3
: This file was created with the strict netcdf-3 flag, therefore netcdf-4 operations are not allowed. (see section NF90_OPEN).
NF90_EHDFERR
: An error was reported by the HDF5 layer.
NF90_EPERM
: Attempt to write to a read-only file.
NF90_ENOTINDEFINE
: Not in define mode.