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) | :: | month | |||
integer, | intent(in) | :: | dayOfMonth | |||
integer, | intent(in) | :: | hourOfDay | |||
integer, | intent(in) | :: | nX | |||
real(kind=r64), | intent(in), | DIMENSION(:) | :: | x | ||
integer, | intent(in) | :: | nY | |||
real(kind=r64), | intent(in), | DIMENSION(:) | :: | y | ||
real(kind=r64), | intent(in), | DIMENSION(:,:) | :: | illuminance |
SUBROUTINE CreateSQLiteDaylightMap (mapNum, month, dayOfMonth, hourOfDay, nX, x, nY, y, illuminance)
! SUBROUTINE INFORMATION:
! AUTHOR Greg Stark
! DATE WRITTEN Sept 2008
! MODIFIED na
! 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
INTEGER, INTENT(IN) :: month
INTEGER, INTENT(IN) :: dayOfMonth
INTEGER, INTENT(IN) :: hourOfDay
INTEGER, INTENT(IN) :: nX
REAL(r64), INTENT(IN), DIMENSION(:) :: x
INTEGER, INTENT(IN) :: nY
REAL(r64), INTENT(IN), DIMENSION(:) :: y
REAL(r64), INTENT(IN), DIMENSION(:,:) :: illuminance
END SUBROUTINE CreateSQLiteDaylightMap