source: XIOS/trunk/src/config/field_attribute.conf @ 998

Last change on this file since 998 was 998, checked in by ymipsl, 7 years ago
  • Clarify the situation about filter chaining order between spatial and arithmetics operation :
    • Arithmetic expression is computed first on the source grid
    • Spatial transform is computed after, transforming the result of arithmetics expression on source grid to the target grid.
    • Time filter will be involved on the target grid after spatial transform
  • @this is working now.
  • Add a field attribute "expr" that is equivalent to the XML content describing the arithmetic expression. This attribute can be inherited.

YM

  • 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.2 KB
Line 
1DECLARE_ATTRIBUTE(StdString, name)
2DECLARE_ATTRIBUTE(StdString, standard_name)
3DECLARE_ATTRIBUTE(StdString, long_name)
4
5DECLARE_ATTRIBUTE(StdString, unit)
6DECLARE_ATTRIBUTE(StdString, operation)
7DECLARE_ATTRIBUTE(bool,      detect_missing_value)
8
9DECLARE_ATTRIBUTE(CDuration, freq_op)
10DECLARE_ATTRIBUTE(CDuration, freq_offset)
11DECLARE_ATTRIBUTE(int,       level)
12DECLARE_ATTRIBUTE(int,       prec)
13DECLARE_ATTRIBUTE(StdString, expr)
14
15DECLARE_ATTRIBUTE(bool,      enabled)
16DECLARE_ATTRIBUTE(bool,      read_access)
17DECLARE_ATTRIBUTE(bool,      indexed_output)
18
19DECLARE_ATTRIBUTE(StdString, domain_ref)
20DECLARE_ATTRIBUTE(StdString, axis_ref)
21DECLARE_ATTRIBUTE(StdString, scalar_ref)
22DECLARE_ATTRIBUTE(StdString, grid_ref)
23DECLARE_ATTRIBUTE(StdString, field_ref)
24DECLARE_ATTRIBUTE(StdString, grid_path)
25
26DECLARE_ATTRIBUTE(double,    default_value)
27DECLARE_ATTRIBUTE(double,    valid_min)
28DECLARE_ATTRIBUTE(double,    valid_max)
29DECLARE_ATTRIBUTE(double,    add_offset)
30DECLARE_ATTRIBUTE(double,    scale_factor)
31
32DECLARE_ATTRIBUTE(int,       compression_level)
33
34DECLARE_ATTRIBUTE(bool,      ts_enabled)
35DECLARE_ATTRIBUTE(CDuration, ts_split_freq)
36
37DECLARE_ATTRIBUTE(StdString, cell_methods)
38DECLARE_ENUM4(cell_methods_mode,  overwrite, prefix, suffix, none)
Note: See TracBrowser for help on using the repository browser.