source: XIOS/trunk/src/config/domain_attribute_private.conf @ 784

Last change on this file since 784 was 775, checked in by mhnguyen, 8 years ago

Implementing the reading of attributes of an axis from a file

+) 3d grid can be read directly from a file
+) Clean some redundant codes
+) Add new attribute declaration that allows to output only desired attributes

Test
+) On Curie
+) test_remap passes and result is correct

File size: 645 bytes
Line 
1/* PRIVATE ATTRIBUTES */
2DECLARE_ATTRIBUTE_PRIVATE(double,  lon_start)
3DECLARE_ATTRIBUTE_PRIVATE(double,  lon_end)
4DECLARE_ATTRIBUTE_PRIVATE(double,  lat_start)
5DECLARE_ATTRIBUTE_PRIVATE(double,  lat_end)
6
7DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_start)
8DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_end)
9DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_start)
10DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_end)
11
12// Array contain whole value (non distributed) of longitude and latitude read from a file
13DECLARE_ARRAY_PRIVATE(double, 1, lonvalue_rectilinear_read_from_file)
14DECLARE_ARRAY_PRIVATE(double, 1, latvalue_rectilinear_read_from_file)
Note: See TracBrowser for help on using the repository browser.