source: XIOS/dev/XIOS_DEV_CMIP6/src/config/domain_attribute.conf @ 1493

Last change on this file since 1493 was 1493, checked in by oabramkina, 6 years ago

Adding attribute comment to certain objects.

Fortran interface is already updated in r1492.

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