New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
domain_attribute.conf in vendors/XIOS/current/src/config – NEMO

source: vendors/XIOS/current/src/config/domain_attribute.conf @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 1.6 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             , iend)
16DECLARE_ATTRIBUTE(int             , ni)
17
18/* LOCAL */
19DECLARE_ATTRIBUTE(int             , jbegin)
20DECLARE_ATTRIBUTE(int             , jend)
21DECLARE_ATTRIBUTE(int             , nj)
22
23/* LOCAL */
24DECLARE_ATTRIBUTE(ARRAY(bool, 2)  , mask)
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/* GLOBAL */
36DECLARE_ATTRIBUTE(int             , zoom_ni)
37DECLARE_ATTRIBUTE(int             , zoom_nj)
38DECLARE_ATTRIBUTE(int             , zoom_ibegin)
39DECLARE_ATTRIBUTE(int             , zoom_jbegin)
40
41/* LOCAL */
42DECLARE_ATTRIBUTE(int             , zoom_ni_loc)
43DECLARE_ATTRIBUTE(int             , zoom_nj_loc)
44DECLARE_ATTRIBUTE(int             , zoom_ibegin_loc)
45DECLARE_ATTRIBUTE(int             , zoom_jbegin_loc)
46
47/* LOCAL */
48DECLARE_ATTRIBUTE(int             , data_n_index)
49DECLARE_ATTRIBUTE(ARRAY(int, 1)   , data_i_index)
50DECLARE_ATTRIBUTE(ARRAY(int, 1)   , data_j_index)
51
52/* LOCAL */
53DECLARE_ATTRIBUTE(ARRAY(double, 1), lonvalue)
54DECLARE_ATTRIBUTE(ARRAY(double, 1), latvalue)
55
Note: See TracBrowser for help on using the repository browser.