|
type(ncatt) function, pointer | find_ncf_att_byname (LIST, NAME, FOUND) |
|
type(ncatt) function, pointer | find_ncf_att_byattid (LIST, ATTID, FOUND) |
|
type(ncatt) function, pointer | find_var_att_byname (LIST, NAME, FOUND) |
|
type(ncatt) function, pointer | find_var_att_byattid (LIST, ATTID, FOUND) |
|
Definition at line 262 of file mod_ncll.f90.
◆ find_ncf_att_byattid()
type(ncatt) function, pointer mod_ncll::find_att::find_ncf_att_byattid |
( |
type(ncfile), intent(in) |
LIST, |
|
|
integer, intent(in) |
ATTID, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1941 of file mod_ncll.f90.
1942 TYPE(NCATT),
POINTER :: ATT
1943 INTEGER,
INTENT(IN) :: ATTID
1944 TYPE(NCFILE),
INTENT(IN):: LIST
1945 LOGICAL,
INTENT(OUT) :: FOUND
1946 TYPE(NCATTP) ,
POINTER :: CURRENT, PREVIOUS
1949 previous => list%ATTS
1950 current => previous%NEXT
1954 IF(.NOT.
ASSOCIATED(current))
RETURN 1956 IF( attid == current%ATT%ATTID )
THEN 1961 previous => previous%NEXT
1962 current => current%NEXT
◆ find_ncf_att_byname()
type(ncatt) function, pointer mod_ncll::find_att::find_ncf_att_byname |
( |
type(ncfile), intent(in) |
LIST, |
|
|
character(len=*), intent(in) |
NAME, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1912 of file mod_ncll.f90.
1913 TYPE(NCATT),
POINTER :: ATT
1914 TYPE(NCFILE),
INTENT(IN):: LIST
1915 CHARACTER(LEN=*),
INTENT(IN) :: NAME
1916 LOGICAL,
INTENT(OUT) :: FOUND
1917 TYPE(NCATTP) ,
POINTER :: CURRENT, PREVIOUS
1920 previous => list%ATTS
1921 current => previous%NEXT
1925 IF(.NOT.
ASSOCIATED(current))
RETURN 1927 IF( trim(name) == trim(current%ATT%ATTNAME) )
THEN 1932 previous => previous%NEXT
1933 current => current%NEXT
◆ find_var_att_byattid()
type(ncatt) function, pointer mod_ncll::find_att::find_var_att_byattid |
( |
type(ncvar), intent(in) |
LIST, |
|
|
integer, intent(in) |
ATTID, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1999 of file mod_ncll.f90.
2000 TYPE(NCATT),
POINTER :: ATT
2001 INTEGER,
INTENT(IN) :: ATTID
2002 TYPE(NCVAR),
INTENT(IN):: LIST
2003 LOGICAL,
INTENT(OUT) :: FOUND
2004 TYPE(NCATTP) ,
POINTER :: CURRENT, PREVIOUS
2007 previous => list%ATTS
2008 current => previous%NEXT
2012 IF(.NOT.
ASSOCIATED(current))
RETURN 2014 IF( attid == current%ATT%ATTID )
THEN 2019 previous => previous%NEXT
2020 current => current%NEXT
◆ find_var_att_byname()
type(ncatt) function, pointer mod_ncll::find_att::find_var_att_byname |
( |
type(ncvar), intent(in) |
LIST, |
|
|
character(len=*), intent(in) |
NAME, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1970 of file mod_ncll.f90.
1971 TYPE(NCATT),
POINTER :: ATT
1972 TYPE(NCVAR),
INTENT(IN) :: LIST
1973 CHARACTER(LEN=*),
INTENT(IN) :: NAME
1974 LOGICAL,
INTENT(OUT) :: FOUND
1975 TYPE(NCATTP) ,
POINTER :: CURRENT, PREVIOUS
1978 previous => list%ATTS
1979 current => previous%NEXT
1983 IF(.NOT.
ASSOCIATED(current))
RETURN 1985 IF( trim(name) == trim(current%ATT%ATTNAME) )
THEN 1990 previous => previous%NEXT
1991 current => current%NEXT
The documentation for this interface was generated from the following file: