source: XIOS/dev/XIOS_DEV_CMIP6/src/node/node_enum.hpp @ 1537

Last change on this file since 1537 was 1457, checked in by ymipsl, 6 years ago

Add new domain filter : reorder_domain
Reoder the data along the global domain but works only for rectilinear domain

  • invert_lat : invert the latitute axis
  • shift_lon_fraction : shift the longitude axis of a fration of global size
  • lon_min/lon_max : fixe the range of longitude value (ex : -180:180 or 0:360)

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.1 KB
RevLine 
[591]1#ifndef __XIOS_NODE_ENUM__
2#define __XIOS_NODE_ENUM__
[219]3
[300]4//#define DECLARE_NODE(Name_, name_)     ,e##Name_, g##Name_
5//#define DECLARE_NODE_PAR(Name_, name_) ,e##Name_, g##Name_
[219]6
[335]7namespace xios
[219]8{
9      /// ////////////////////// Définitions ////////////////////// ///
10      typedef enum _node_type
11      {
[300]12         Unknown = 0,
13         eAxis,gAxis,
14         eDomain,gDomain,
15         eField,gField,
16         eFile,gFile,
17         eGrid,gGrid,
18         eVariable,gVariable,
[549]19         eContext,gContext,
[619]20         eCalendarWrapper,
[621]21         eTransformation,
22         eInverseAxis,
[630]23         eZoomAxis,
[631]24         eInterpolateAxis,
[657]25         eZoomDomain,
[689]26         eInterpolateDomain,
[887]27         eGenerateRectilinearDomain,
[888]28         eScalar,
[895]29         eReduceAxisToScalar,
30         eReduceDomainToAxis,
[1301]31         eReduceAxisToAxis,
[934]32         eExtractDomainToAxis,
[935]33         eComputeConnectivityDomain,
[960]34         eExpandDomain,
[976]35         eExtractAxisToScalar,
[1275]36         eReduceDomainToScalar,
[1314]37         eTemporalSplitting,
38         eDuplicateScalarToAxis,
[1457]39         eReduceScalarToScalar,
40         eReorderDomain
[1314]41       } ENodeType;
[219]42
[335]43} // namespace xios
[219]44
[591]45#endif // __XIOS_NODE_ENUM__
Note: See TracBrowser for help on using the repository browser.