|
SCORPIO 1.9.0
|
Inquire the id of a dimension. More...
Functions/Subroutines | |
| integer function | pio_inq_dimid_file_dimid (file, dname, dimid) |
| Inquire/get the unique id associated with a dimension in a file. | |
| integer function | pio_inq_dimid_fh_dimid (fh, dname, dimid) |
| Inquire/get the unique id associated with a dimension in a file. | |
Inquire the id of a dimension.
This API can be used to inquire the unique id associated with a dimension using the dimension name.
This API is a collective call (Although the library might internally choose to make progress on a single or small subset of MPI processes) on the I/O system associated with the file
| integer function __spio_inq_dim_f90__::pio_inq_dimid_fh_dimid | ( | integer, intent(in) | fh, |
| character(len=*), intent(in) | dname, | ||
| integer, intent(out) | dimid | ||
| ) |
Inquire/get the unique id associated with a dimension in a file.
| [in] | fh | The file id/handle |
| [in] | dname | The name of the dimension |
| [out] | dimid | The id of the dimension |
| ierr | : The error return code. |
Set to PIO_NOERR on success, or an error code otherwise (See PIO_seterrorhandling for more information on how to customize/set error handling)
| integer function __spio_inq_dim_f90__::pio_inq_dimid_file_dimid | ( | type(file_desc_t), intent(in) | file, |
| character(len=*), intent(in) | dname, | ||
| integer, intent(out) | dimid | ||
| ) |
Inquire/get the unique id associated with a dimension in a file.
| [in] | file | The file handle. File descriptor structure. |
This structure holds information associated with each open file
| [in] | dname | The name of the dimension |
| [out] | dimid | The id of the dimension |
| ierr | : The error return code. |
Set to PIO_NOERR on success, or an error code otherwise (See PIO_seterrorhandling for more information on how to customize/set error handling)