Nodes of different colours represent the following:
Solid arrows point from a parent (sub)module to the submodule which is descended from it. Dashed arrows point from a module being used to the module or program unit using it. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | mapNum | |||
character(len=*), | intent(in) | :: | mapName | |||
character(len=*), | intent(in) | :: | environmentName | |||
integer, | intent(in) | :: | zone | |||
character(len=*), | intent(in) | :: | refPt1 | |||
character(len=*), | intent(in) | :: | refPt2 | |||
real(kind=r64), | intent(in) | :: | zCoord |
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.
SUBROUTINE CreateSQLiteDaylightMapTitle (mapNum, mapName, environmentName, zone, refPt1, refPt2, zCoord)
! SUBROUTINE INFORMATION:
! AUTHOR Greg Stark
! DATE WRITTEN Sept 2008
! MODIFIED April 2010, Kyle Benne, Added zCoord
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
!
! METHODOLOGY EMPLOYED:
! Standard SQL92 queries and commands via the Fortran SQLite3 API
! REFERENCES:
! na
! USE STATEMENTS:
USE DataPrecisionGlobals, ONLY: r64
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: mapNum
CHARACTER(len=*), INTENT(IN) :: mapName
CHARACTER(len=*), INTENT(IN) :: environmentName
INTEGER, INTENT(IN) :: zone
REAL(r64), INTENT(IN) :: zCoord
CHARACTER(len=*), INTENT(IN) :: refPt1
CHARACTER(len=*), INTENT(IN) :: refPt2
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: result
result = SQLiteBindInteger (DaylightMapTitleInsertStmt, 1, mapNum)
result = SQLiteBindTextMacro (DaylightMapTitleInsertStmt, 2, TRIM(mapName))
result = SQLiteBindTextMacro (DaylightMapTitleInsertStmt, 3, TRIM(environmentName))
result = SQLiteBindInteger (DaylightMapTitleInsertStmt, 4, zone)
result = SQLiteBindTextMacro (DaylightMapTitleInsertStmt, 5, TRIM(refPt1))
result = SQLiteBindTextMacro (DaylightMapTitleInsertStmt, 6, TRIM(refPt2))
result = SQLiteBindDouble (DaylightMapTitleInsertStmt, 7, zCoord)
result = SQLiteStepCommand (DaylightMapTitleInsertStmt)
result = SQLiteResetCommand (DaylightMapTitleInsertStmt)
END SUBROUTINE CreateSQLiteDaylightMapTitle