Learn attribute name, number, type, size in Fortran.
More...
|
integer function | pio_nf::inq_attlen_desc (File, vardesc, name, len) |
| File descriptor structure. More...
|
|
integer function | pio_nf::inq_att_desc (File, vardesc, name, xtype, len) |
| File descriptor structure. More...
|
|
integer function | pio_nf::inq_attname_desc (File, vdesc, attnum, name) |
|
Learn attribute name, number, type, size in Fortran.
Use the generic functions to call the underlying Fortran functions.
◆ inq_att_desc()
integer function pio_nf::inq_att_desc |
( |
type (file_desc_t), intent(inout) |
File, |
|
|
type(var_desc_t), intent(in) |
vardesc, |
|
|
character(len=*), intent(in) |
name, |
|
|
integer, intent(out), optional |
xtype, |
|
|
integer(pio_offset_kind), intent(out), optional |
len |
|
) |
| |
File descriptor structure.
Gets information about attributes.
- Parameters
-
File | This structure holds information associated with each open file |
vardesc | Variable description structure. |
name | Name of the attribute |
xtype | The type of attribute |
len | The length of the attribute |
- Return values
-
- Author
- Jim Edwards
◆ inq_attlen_desc()
integer function pio_nf::inq_attlen_desc |
( |
type (file_desc_t), intent(inout) |
File, |
|
|
type (var_desc_t), intent(in) |
vardesc, |
|
|
character(len=*), intent(in) |
name, |
|
|
integer(kind=pio_offset_kind), intent(out) |
len |
|
) |
| |
File descriptor structure.
Gets the attribute length.
- Parameters
-
File | This structure holds information associated with each open file |
vardesc | Variable description structure. |
name | name of attribute |
len | Length of attribute |
- Return values
-
- Author
- Jim Edwards
◆ inq_attname_desc()
integer function pio_nf::inq_attname_desc |
( |
type (file_desc_t), intent(inout) |
File, |
|
|
type (var_desc_t), intent(in) |
vdesc, |
|
|
integer, intent(in) |
attnum, |
|
|
character(len=*), intent(out) |
name |
|
) |
| |
Gets the name of an attribute.
- Author
- Jim Edwards