source: XIOS/trunk/src/config/domain_attribute.conf @ 687

Last change on this file since 687 was 687, checked in by mhnguyen, 9 years ago

Implementing auto-generate rectilinear domain

+) Add a new special transformation to generate (complete) rectilinear domain

Test
+) On Curie
+) test_new_feature passed

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.5 KB
Line 
1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
5
6/* Spécifique */
7DECLARE_ATTRIBUTE(StdString       , domain_group_ref)
8
9/* GLOBAL */
10DECLARE_ATTRIBUTE(int             , ni_glo)
11DECLARE_ATTRIBUTE(int             , nj_glo)
12
13/* LOCAL */
14DECLARE_ATTRIBUTE(int             , ibegin)
15DECLARE_ATTRIBUTE(int             , ni)
16
17/* LOCAL */
18DECLARE_ATTRIBUTE(int             , jbegin)
19DECLARE_ATTRIBUTE(int             , nj)
20
21
22DECLARE_ARRAY(int,1             , i_index)
23DECLARE_ARRAY(int,1             , j_index)
24
25/* LOCAL */
26DECLARE_ARRAY(bool, 1 , mask_1d)
27DECLARE_ARRAY(bool, 2 , mask_2d)
28
29/* GLOBAL */
30DECLARE_ATTRIBUTE(int             , data_dim)
31
32/* LOCAL */
33DECLARE_ATTRIBUTE(int             , data_ni)
34DECLARE_ATTRIBUTE(int             , data_nj)
35DECLARE_ATTRIBUTE(int             , data_ibegin)
36DECLARE_ATTRIBUTE(int             , data_jbegin)
37
38/* LOCAL */
39DECLARE_ARRAY(int, 1 , data_i_index)
40DECLARE_ARRAY(int, 1,  data_j_index)
41
42/* LOCAL */
43DECLARE_ARRAY(double, 1, lonvalue_1d)
44DECLARE_ARRAY(double, 1, latvalue_1d)
45DECLARE_ARRAY(double, 2, lonvalue_2d)
46DECLARE_ARRAY(double, 2, latvalue_2d)
47
48DECLARE_ATTRIBUTE(int, nvertex)
49DECLARE_ARRAY(double, 2, bounds_lon_1d)
50DECLARE_ARRAY(double, 2, bounds_lat_1d)
51DECLARE_ARRAY(double, 3, bounds_lon_2d)
52DECLARE_ARRAY(double, 3, bounds_lat_2d)
53
54DECLARE_ARRAY(double, 2, area)
55
56DECLARE_ENUM3(type,rectilinear,curvilinear,unstructured)
57DECLARE_ATTRIBUTE(StdString, domain_ref)
58DECLARE_ATTRIBUTE(StdString, domain_src)
Note: See TracBrowser for help on using the repository browser.