SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_grid_rotlatlon.F90
Go to the documentation of this file.
00001 !     ################
00002       MODULE MODD_GRID_ROTLATLON
00003 !     ################
00004 !
00005 !!****  *MODD_GRID_ROTLATLON - declaration of rotated lat lon characteristics
00006 !!
00007 !!    PURPOSE
00008 !!    -------
00009 !     Used if CINGRID_TYPE = 'ROTLATLON'
00010 !
00011 !!
00012 !!**  IMPLICIT ARGUMENTS
00013 !!    ------------------
00014 !!      None 
00015 !!
00016 !!    REFERENCE
00017 !!    ---------
00018 !!
00019 !!    AUTHOR
00020 !!    ------
00021 !!      U, Andrae    *SMHI'
00022 !!
00023 !!    MODIFICATIONS
00024 !!    -------------
00025 !!      Original       10/2007
00026 !
00027 !*       0.   DECLARATIONS
00028 !             ------------
00029 !
00030 IMPLICIT NONE
00031 !
00032 INTEGER                            :: NRY      ! Number of points in Y-direction
00033 INTEGER                            :: NRX      ! Number of points in X-direction
00034 REAL                               :: XRILA1   ! Lat. (y) of first input point
00035 REAL                               :: XRILO1   ! Lon. (x) of first input point
00036 REAL                               :: XRILA2   ! Lat. (y) of last input point
00037 REAL                               :: XRILO2   ! Lon. (x) of last input point
00038 REAL                               :: XRLAP    ! Latitude of rotated pole
00039 REAL                               :: XRLOP    ! Longitude of rotated pole
00040 REAL                               :: XRDY     ! Grid size in Y-direction in degrees
00041 REAL                               :: XRDX     ! Grid size in X-direction in degrees
00042 !
00043 LOGICAL                            :: LRROTPOLE! .TRUE. if pole is rotated
00044 
00045 END MODULE MODD_GRID_ROTLATLON
00046