SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_grid_rotlatlon.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 ! ################
7 ! ################
8 !
9 !!**** *MODD_GRID_ROTLATLON - declaration of rotated lat lon characteristics
10 !!
11 !! PURPOSE
12 !! -------
13 ! Used if CINGRID_TYPE = 'ROTLATLON'
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! U, Andrae *SMHI'
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 10/2007
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
34 IMPLICIT NONE
35 !
36 INTEGER :: NRY ! Number of points in Y-direction
37 INTEGER :: NRX ! Number of points in X-direction
38 REAL :: XRILA1 ! Lat. (y) of first input point
39 REAL :: XRILO1 ! Lon. (x) of first input point
40 REAL :: XRILA2 ! Lat. (y) of last input point
41 REAL :: XRILO2 ! Lon. (x) of last input point
42 REAL :: XRLAP ! Latitude of rotated pole
43 REAL :: XRLOP ! Longitude of rotated pole
44 REAL :: XRDY ! Grid size in Y-direction in degrees
45 REAL :: XRDX ! Grid size in X-direction in degrees
46 !
47 LOGICAL :: LRROTPOLE! .TRUE. if pole is rotated
48 
49 END MODULE modd_grid_rotlatlon
50