Definition at line 229 of file mod_ncll.f90.
◆ find_var_byname()
type(ncvar) function, pointer mod_ncll::find_var::find_var_byname |
( |
type(ncfile), intent(in) |
LIST, |
|
|
character(len=*), intent(in) |
NAME, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1249 of file mod_ncll.f90.
1250 TYPE(NCVAR),
POINTER :: VAR
1251 TYPE(NCFILE),
INTENT(IN) :: LIST
1252 CHARACTER(LEN=*),
INTENT(IN) :: NAME
1253 LOGICAL,
INTENT(OUT) :: FOUND
1254 TYPE(NCVARP) ,
POINTER :: CURRENT, PREVIOUS
1257 previous => list%VARS
1258 current => previous%NEXT
1262 IF(.NOT.
ASSOCIATED(current))
RETURN 1264 IF( name == current%VAR%VARNAME )
THEN 1269 previous => previous%NEXT
1270 current => current%NEXT
◆ find_var_byvarid()
type(ncvar) function, pointer mod_ncll::find_var::find_var_byvarid |
( |
type(ncfile), intent(in) |
LIST, |
|
|
integer, intent(in) |
VARID, |
|
|
logical, intent(out) |
FOUND |
|
) |
| |
Definition at line 1278 of file mod_ncll.f90.
1279 TYPE(NCVAR),
POINTER :: VAR
1280 TYPE(NCFILE),
INTENT(IN) :: LIST
1281 INTEGER,
INTENT(IN) :: VARID
1282 LOGICAL,
INTENT(OUT) :: FOUND
1283 TYPE(NCVARP) ,
POINTER :: CURRENT, PREVIOUS
1286 previous => list%VARS
1287 current => previous%NEXT
1291 IF(.NOT.
ASSOCIATED(current))
RETURN 1293 IF( varid == current%VAR%VARID )
THEN 1298 previous => previous%NEXT
1299 current => current%NEXT
The documentation for this interface was generated from the following file: