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_v1d_netcdf_R8(filename,name,array,Xdim,group_name,rc)use netcdfimplicit nonecharacter(len=*),intent(in)::name,filenamecharacter(len=*),optional,intent(in)::group_nameinteger,intent(in)::Xdimreal(REAL64),dimension(Xdim),intent(out)::arrayinteger,optional,intent(out)::rcinteger::statusinteger::ncid,varid,ncid2,ncid_svcall check_nc_status(nf90_open(trim(fileName),NF90_NOWRITE,ncid),_RC)ncid_sv=ncidif(present(group_name))then if(group_name/='')thenncid2=ncidcall check_nc_status(nf90_inq_ncid(ncid2,group_name,ncid),_RC)end if end if call check_nc_status(nf90_inq_varid(ncid,name,varid),_RC)call check_nc_status(nf90_get_var(ncid,varid,array),_RC)call check_nc_status(nf90_close(ncid_sv),_RC)_RETURN(_SUCCESS)end subroutine get_v1d_netcdf_R8