Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine get_att_char_netcdf(filename,varname,att_name,att_value,group_name,rc)use netcdfimplicit nonecharacter(len=*),intent(in)::filenamecharacter(len=*),intent(in)::varnamecharacter(len=*),intent(in)::att_namecharacter(len=*),intent(out)::att_valuecharacter(len=*),optional,intent(out)::group_nameinteger,optional,intent(out)::rcinteger::statusinteger::ncid,ncid_grp,ncid_svinteger::varidcall check_nc_status(nf90_open(trim(fileName),NF90_NOWRITE,ncid),_RC)ncid_sv=ncidif(present(group_name))then if(group_name/='')then call check_nc_status(nf90_inq_ncid(ncid,group_name,ncid_grp),_RC)! overwritencid=ncid_grpend if end if call check_nc_status(nf90_inq_varid(ncid,varname,varid),_RC)call check_nc_status(nf90_get_att(ncid,varid,att_name,att_value),_RC)call check_nc_status(nf90_close(ncid_sv),_RC)_RETURN(_SUCCESS)end subroutine get_att_char_netcdf