DUMMY_SURF_FIELDS_t Derived Type

type, public :: DUMMY_SURF_FIELDS_t


Contents

Source Code


Components

TypeVisibility AttributesNameInitial
integer, public :: NDUMMY_NBR
character(len=3), public, DIMENSION(:), POINTER:: CDUMMY_AREA
character(len=20), public, DIMENSION(:), POINTER:: CDUMMY_NAME
real, public, DIMENSION(:,:), POINTER:: XDUMMY_FIELDS

Source Code

TYPE DUMMY_SURF_FIELDS_t
!
  INTEGER                                          :: NDUMMY_NBR
!                          ! number of dummy pgd fields chosen by user
  CHARACTER(LEN=3) , DIMENSION(:), POINTER         :: CDUMMY_AREA 
!                          ! areas where dummy pgd fields are defined
!                          ! 'ALL' : everywhere
!                          ! 'SEA' : where sea exists
!                          ! 'LAN' : where land exists
!                          ! 'WAT' : where inland water exists
!                          ! 'NAT' : where natural or agricultural areas exist
!                          ! 'TWN' : where town areas exist
!                          ! 'STR' : where streets are present
!                          ! 'BLD' : where buildings are present
!                          !
  CHARACTER(LEN=20), DIMENSION(:), POINTER         :: CDUMMY_NAME 
!                          ! name of the dummy pgd fields (for information)
  REAL,              DIMENSION(:,:), POINTER       :: XDUMMY_FIELDS
!                          ! dummy pgd fields themselves
!
!-------------------------------------------------------------------------------
!
END TYPE DUMMY_SURF_FIELDS_t