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
RevLine 
[219]1/* GLOBAL */
2DECLARE_ATTRIBUTE(StdString       , name)
3DECLARE_ATTRIBUTE(StdString       , standard_name)
4DECLARE_ATTRIBUTE(StdString       , long_name)
[1391]5DECLARE_ATTRIBUTE(StdString       , lon_name)
6DECLARE_ATTRIBUTE(StdString       , lat_name)
[1430]7DECLARE_ATTRIBUTE(StdString       , bounds_lon_name)
8DECLARE_ATTRIBUTE(StdString       , bounds_lat_name)
9DECLARE_ATTRIBUTE(StdString       , dim_i_name)
10DECLARE_ATTRIBUTE(StdString       , dim_j_name)
[219]11
[1493]12DECLARE_ATTRIBUTE(StdString, comment)
13
[219]14/* GLOBAL */
15DECLARE_ATTRIBUTE(int             , ni_glo)
16DECLARE_ATTRIBUTE(int             , nj_glo)
17
18/* LOCAL */
[1025]19DECLARE_ATTRIBUTE(int             , ibegin, false)
20DECLARE_ATTRIBUTE(int             , ni, false)
[219]21
22/* LOCAL */
[1025]23DECLARE_ATTRIBUTE(int             , jbegin, false)
24DECLARE_ATTRIBUTE(int             , nj, false)
[219]25
[467]26
[1025]27DECLARE_ARRAY(int,1             , i_index, false)
28DECLARE_ARRAY(int,1             , j_index, false)
[467]29
[219]30/* LOCAL */
[1025]31DECLARE_ARRAY(bool, 1 , mask_1d, false)
[1249]32DECLARE_ARRAY(bool, 2 , mask_2d, false)
[219]33
34/* GLOBAL */
35DECLARE_ATTRIBUTE(int             , data_dim)
36
37/* LOCAL */
[1025]38DECLARE_ATTRIBUTE(int             , data_ni, false)
39DECLARE_ATTRIBUTE(int             , data_nj, false)
40DECLARE_ATTRIBUTE(int             , data_ibegin, false)
41DECLARE_ATTRIBUTE(int             , data_jbegin, false)
[219]42
43/* LOCAL */
[1025]44DECLARE_ARRAY(int, 1 , data_i_index, false)
45DECLARE_ARRAY(int, 1,  data_j_index, false)
[219]46
47/* LOCAL */
[1025]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)
[664]52
[449]53DECLARE_ATTRIBUTE(int, nvertex)
[1025]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)
[664]58
[611]59DECLARE_ARRAY(double, 2, area)
[219]60
[953]61DECLARE_ENUM4(type,rectilinear,curvilinear,unstructured, gaussian)
[540]62DECLARE_ATTRIBUTE(StdString, domain_ref)
[1158]63DECLARE_ATTRIBUTE(int,       prec)
Note: See TracBrowser for help on using the repository browser.