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

Last change on this file since 895 was 789, checked in by rlacroix, 8 years ago

Domain: Remove the domain_src attribute.

It was added but was never used.

  • 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.4 KB
Line 
1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
5
6/* GLOBAL */
7DECLARE_ATTRIBUTE(int             , ni_glo)
8DECLARE_ATTRIBUTE(int             , nj_glo)
9
10/* LOCAL */
11DECLARE_ATTRIBUTE(int             , ibegin)
12DECLARE_ATTRIBUTE(int             , ni)
13
14/* LOCAL */
15DECLARE_ATTRIBUTE(int             , jbegin)
16DECLARE_ATTRIBUTE(int             , nj)
17
18
19DECLARE_ARRAY(int,1             , i_index)
20DECLARE_ARRAY(int,1             , j_index)
21
22/* LOCAL */
23DECLARE_ARRAY(bool, 1 , mask_1d)
24DECLARE_ARRAY(bool, 2 , mask_2d)
25
26/* GLOBAL */
27DECLARE_ATTRIBUTE(int             , data_dim)
28
29/* LOCAL */
30DECLARE_ATTRIBUTE(int             , data_ni)
31DECLARE_ATTRIBUTE(int             , data_nj)
32DECLARE_ATTRIBUTE(int             , data_ibegin)
33DECLARE_ATTRIBUTE(int             , data_jbegin)
34
35/* LOCAL */
36DECLARE_ARRAY(int, 1 , data_i_index)
37DECLARE_ARRAY(int, 1,  data_j_index)
38
39/* LOCAL */
40DECLARE_ARRAY(double, 1, lonvalue_1d)
41DECLARE_ARRAY(double, 1, latvalue_1d)
42DECLARE_ARRAY(double, 2, lonvalue_2d)
43DECLARE_ARRAY(double, 2, latvalue_2d)
44
45DECLARE_ATTRIBUTE(int, nvertex)
46DECLARE_ARRAY(double, 2, bounds_lon_1d)
47DECLARE_ARRAY(double, 2, bounds_lat_1d)
48DECLARE_ARRAY(double, 3, bounds_lon_2d)
49DECLARE_ARRAY(double, 3, bounds_lat_2d)
50
51DECLARE_ARRAY(double, 2, area)
52
53DECLARE_ENUM3(type,rectilinear,curvilinear,unstructured)
54DECLARE_ATTRIBUTE(StdString, domain_ref)
Note: See TracBrowser for help on using the repository browser.