source: XIOS/dev/dev_ym/XIOS_COUPLING/src/config/domain_attribute_private.conf @ 2312

Last change on this file since 2312 was 2312, checked in by ymipsl, 2 years ago

temporary fix when reading grid from file. Some part of code must rewrite in future.
YM

File size: 1.8 KB
Line 
1/* PRIVATE ATTRIBUTES */
2DECLARE_ATTRIBUTE_PRIVATE(double,  lon_start, false)
3DECLARE_ATTRIBUTE_PRIVATE(double,  lon_end, false)
4DECLARE_ATTRIBUTE_PRIVATE(double,  lat_start, false)
5DECLARE_ATTRIBUTE_PRIVATE(double,  lat_end, false)
6
7DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_start, false)
8DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lon_end, false)
9DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_start, false)
10DECLARE_ATTRIBUTE_PRIVATE(double,  bounds_lat_end, false)
11
12DECLARE_ATTRIBUTE(bool             , hasLatInReadFile, false)
13DECLARE_ATTRIBUTE(bool             , hasLonInReadFile, false)
14DECLARE_ATTRIBUTE(bool             , hasBoundsLatInReadFile, false)
15DECLARE_ATTRIBUTE(bool             , hasBoundsLonInReadFile, false)
16//  Array contain whole value (non distributed) of longitude and latitude read from a file
17DECLARE_ARRAY_PRIVATE(double, 1, lonvalue_rectilinear_read_from_file, false)
18DECLARE_ARRAY_PRIVATE(double, 1, latvalue_rectilinear_read_from_file, false)
19
20// Array containing longitude and latitude of LOCAL curvilinear domain to be read from a file
21DECLARE_ARRAY_PRIVATE(double, 2, lonvalue_curvilinear_read_from_file, false)
22DECLARE_ARRAY_PRIVATE(double, 2, latvalue_curvilinear_read_from_file, false)
23DECLARE_ARRAY_PRIVATE(double, 3, bounds_lonvalue_curvilinear_read_from_file, false)
24DECLARE_ARRAY_PRIVATE(double, 3, bounds_latvalue_curvilinear_read_from_file, false)
25
26// Array containing longitude and latitude of LOCAL unstructured domain to be read from a file
27DECLARE_ARRAY_PRIVATE(double, 1, lonvalue_unstructured_read_from_file, false)
28DECLARE_ARRAY_PRIVATE(double, 1, latvalue_unstructured_read_from_file, false)
29DECLARE_ARRAY_PRIVATE(double, 2, bounds_lonvalue_unstructured_read_from_file, false)
30DECLARE_ARRAY_PRIVATE(double, 2, bounds_latvalue_unstructured_read_from_file, false)
Note: See TracBrowser for help on using the repository browser.