SURFEX v8.1
General documentation of Surfex
modd_grid_cartesian.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_CARTESIAN - declaration of Arome gris characteristics
10 !!
11 !! PURPOSE
12 !! -------
13 ! Used if CINGRID_TYPE = 'CONF PROJ '
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! V. Masson *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 20/09/02
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
34 IMPLICIT NONE
35 !
36 REAL, DIMENSION(:), ALLOCATABLE :: xx ! X coordinate (meters)
37 REAL, DIMENSION(:), ALLOCATABLE :: xy ! Y coordinate (meters)
38 REAL, DIMENSION(:,:), ALLOCATABLE :: xcx
39 REAL, DIMENSION(:,:), ALLOCATABLE :: xcy
40 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ncij
41 INTEGER :: nx ! number of points in X direction
42 INTEGER :: ny ! number of points in Y direction
43 !
44 REAL :: xlat0 ! reference latitude
45 REAL :: xlon0 ! reference longitude
46 !
47 END MODULE modd_grid_cartesian
real, dimension(:), allocatable xy
real, dimension(:), allocatable xx
real, dimension(:,:), allocatable xcy
real, dimension(:,:), allocatable xcx
integer, dimension(:,:), allocatable ncij