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.
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_gnomonic_local_coords(grid_type,im,start,lon,lat)integer,intent(in)::grid_typeinteger,intent(in)::iminteger,intent(in)::start(:)real(ESMF_KIND_R8),intent(out)::lon(:,:)real(ESMF_KIND_R8),intent(out)::lat(:,:)integer i,jselect case(grid_type)case(0)call get_gnomonic_ed_coords(im,start,lon,lat)case(1)call get_gnomonic_dist_coords(im,start,lon,lat)case(2)call get_gnomonic_angl_coords(im,start,lon,lat)end select if(grid_type<3)thenlon=lon-piend if end subroutine get_gnomonic_local_coords