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 | |||
integer, | intent(in) | :: | unitNo | |||
character(len=*), | intent(in) | :: | mapName | |||
character(len=*), | intent(in) | :: | environmentName | |||
integer, | intent(in) | :: | zonenum | |||
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 WriteDaylightMapTitle (mapNum, unitNo, mapName, environmentName, zonenum, refPt1, refPt2, zcoord)
! SUBROUTINE INFORMATION:
! AUTHOR Greg Stark
! DATE WRITTEN Sept 2008
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! The purpose of the routine is to allow the daylighting map data to be written in various formats
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
USE SQLiteProcedures
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: mapNum
INTEGER, INTENT(IN) :: unitNo
CHARACTER(len=*), INTENT(IN) :: mapName
CHARACTER(len=*), INTENT(IN) :: environmentName
INTEGER, INTENT(IN) :: zonenum
REAL(r64), INTENT(IN) :: zcoord
CHARACTER(len=*), INTENT(IN) :: refPt1
CHARACTER(len=*), INTENT(IN) :: refPt2
! SUBROUTINE PARAMETER DEFINITIONS:
CHARACTER(len=*), PARAMETER :: FmtA="(A)"
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
CHARACTER(len=300) :: fullmapName ! for output to map units as well as SQL
! must add correct number of commas at end
fullmapName=trim(Zone(zonenum)%Name)//':'//TRIM(environmentName)//':'//TRIM(mapName)// &
' Illuminance [lux] (Hourly)'
WRITE(unitNo, FmtA) 'Date/Time,'//trim(fullmapName)//MapColSep//TRIM(refPt1)//MapColSep// &
TRIM(refPt2)//MapColSep//MapColSep
IF (WriteOutputToSQLite) THEN
CALL CreateSQLiteDaylightMapTitle (mapNum, fullmapName, environmentName, zonenum, refPt1, refPt2, zcoord)
END IF
RETURN
END SUBROUTINE WriteDaylightMapTitle