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
function get_filename_from_template(time,file_template,rc)result(filename)use Plain_netCDF_Time,only:ESMF_time_to_two_integeruse MAPL_StringTemplate,only:fill_grads_templatetype(ESMF_Time),intent(in)::timecharacter(len=*),intent(in)::file_templatecharacter(len=ESMF_MAXSTR)::filenameinteger,optional,intent(out)::rcinteger::itime(2)integer::nymd,nhmsinteger::status_FAIL('DO not use get_filename_from_template')call ESMF_time_to_two_integer(time,itime,_RC)print*,'two integer time, itime(:)',itime(1:2)nymd=itime(1)nhms=itime(2)call fill_grads_template(filename,file_template,&experiment_id='',nymd=nymd,nhms=nhms,_RC)print*,'ck: obsFile_T=',trim(filename)_RETURN(ESMF_SUCCESS)end function get_filename_from_template