SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_grid_latlonregul.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_LATLONREGUL - declaration of Gauss grid characteristics
10 !!
11 !! PURPOSE
12 !! -------
13 ! Used if CINGRID_TYPE = 'LATLON'
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! C. Lebeaupin Brossier *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 01/2008
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
34 IMPLICIT NONE
35 !
36 REAL :: XILAT1 ! Lat. (y) of first input point
37 REAL :: XILON1 ! Lon. (x) of first input point
38 REAL :: XILAT2 ! Lat. (y) of last input point
39 REAL :: XILON2 ! Lon. (x) of last input point
40 INTEGER :: NINLAT ! Number of parallels
41 INTEGER , DIMENSION(:), ALLOCATABLE:: NINLON ! Nb. of points on each parallel
42 INTEGER :: NILENGTH ! size of input arrays
43 INTEGER :: NINDEPTH ! nb of vertical levels
44 REAL, DIMENSION(:), ALLOCATABLE :: XILATARRAY! latitudes values array
45 REAL, DIMENSION(:), ALLOCATABLE :: XILONARRAY! longitudes values array
46 REAL, DIMENSION(:), ALLOCATABLE :: XIDEPARRAY! depths values array
47 !
48 END MODULE modd_grid_latlonregul