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

Last change on this file was 2617, checked in by jderouillat, 3 months ago

Fix the field's attribute name conversion_by_NetCDF removing upper-case letters

  • 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.6 KB
RevLine 
[219]1DECLARE_ATTRIBUTE(StdString, name)
2DECLARE_ATTRIBUTE(StdString, standard_name)
3DECLARE_ATTRIBUTE(StdString, long_name)
4
[1493]5DECLARE_ATTRIBUTE(StdString, comment)
6
[219]7DECLARE_ATTRIBUTE(StdString, unit)
8DECLARE_ATTRIBUTE(StdString, operation)
[470]9DECLARE_ATTRIBUTE(bool,      detect_missing_value)
[219]10
[538]11DECLARE_ATTRIBUTE(CDuration, freq_op)
12DECLARE_ATTRIBUTE(CDuration, freq_offset)
[219]13DECLARE_ATTRIBUTE(int,       level)
14DECLARE_ATTRIBUTE(int,       prec)
[2617]15DECLARE_ATTRIBUTE(bool,      conversion_by_netcdf)
[2306]16DECLARE_ATTRIBUTE(StdString, expr, false)
[219]17
18DECLARE_ATTRIBUTE(bool,      enabled)
[593]19DECLARE_ATTRIBUTE(bool,      read_access)
[676]20DECLARE_ATTRIBUTE(bool,      indexed_output)
[1201]21DECLARE_ATTRIBUTE(bool,      check_if_active)
[219]22
[1524]23DECLARE_ATTRIBUTE(StdString, domain_ref, false)
24DECLARE_ATTRIBUTE(StdString, axis_ref, false)
25DECLARE_ATTRIBUTE(StdString, scalar_ref, false)
[219]26DECLARE_ATTRIBUTE(StdString, grid_ref)
[1934]27DECLARE_ATTRIBUTE(StdString, field_ref, false)
[790]28DECLARE_ATTRIBUTE(StdString, grid_path)
[219]29
30DECLARE_ATTRIBUTE(double,    default_value)
[463]31DECLARE_ATTRIBUTE(double,    valid_min)
32DECLARE_ATTRIBUTE(double,    valid_max)
[464]33DECLARE_ATTRIBUTE(double,    add_offset)
34DECLARE_ATTRIBUTE(double,    scale_factor)
[606]35
[2529]36DECLARE_ATTRIBUTE(StdString, compression_type)
[606]37DECLARE_ATTRIBUTE(int,       compression_level)
[2529]38DECLARE_ARRAY(double , 1,    compression_params)
[2479]39DECLARE_ATTRIBUTE(double,    chunking_blocksize_target)
[711]40
41DECLARE_ATTRIBUTE(bool,      ts_enabled)
42DECLARE_ATTRIBUTE(CDuration, ts_split_freq)
[1021]43
44DECLARE_ATTRIBUTE(StdString, cell_methods)
45DECLARE_ENUM4(cell_methods_mode,  overwrite, prefix, suffix, none)
[2142]46
47DECLARE_ATTRIBUTE(bool,      build_workflow_graph)
Note: See TracBrowser for help on using the repository browser.