source: XIOS3/trunk/src/config/field_attribute.conf @ 2479

Last change on this file since 2479 was 2479, checked in by jderouillat, 15 months ago

Add tunable output chunking. The user can specify a chunking_blocksize_target (in Mo, default = 20) as a field attribute, and the chunking dimensions in domain/axis definition through the attributes : (chunking_weight_i, chunking_weight_j)/chunking_weight. Weights are relativized for more or less chunking along the directions concerned

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