SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_pgd_grid.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 ! ##################
6  MODULE modd_pgd_grid
7 ! ##################
8 !
9 !!
10 !! PURPOSE
11 !! -------
12 !
13 !!
14 !!** IMPLICIT ARGUMENTS
15 !! ------------------
16 !!
17 !! REFERENCE
18 !! ---------
19 !!
20 !!
21 !! AUTHOR
22 !! ------
23 !! V. Masson *Meteo France*
24 !!
25 !! MODIFICATIONS
26 !! -------------
27 !! Original 10/2003
28 !-------------------------------------------------------------------------------
29 !
30 IMPLICIT NONE
31 !
32 !* 0. DECLARATIONS
33 ! ------------
34 !
35  CHARACTER(LEN=10) :: CGRID ! type of grid
36 INTEGER :: NL ! number of points of the surface fields
37 LOGICAL, DIMENSION(720,360) :: LLATLONMASK ! mask where data are to be read
38 REAL, POINTER, DIMENSION(:) :: XGRID_PAR ! lits of parameters used to define the grid
39 INTEGER :: NGRID_PAR ! size of XGRID_PAR
40 REAL :: XMESHLENGTH ! average mesh length/width (decimal degre)
41 !
42 END MODULE modd_pgd_grid