IODA
ObsGroup.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_cxx_layout
9  *
10  * @{
11  * \file ObsGroup.h
12  * \brief Interfaces for ioda::ObsGroup and related classes.
13  */
14 
15 #include <memory>
16 #include <utility>
17 #include <vector>
18 
19 #include "./Group.h"
20 #include "./Misc/DimensionScales.h"
21 #include "./defs.h"
22 
23 namespace ioda {
24 class ObsGroup;
25 namespace detail {
26 class DataLayoutPolicy;
27 } // namespace detail
28 
29 /// \brief An ObsGroup is a specialization of a ioda::Group. It provides convenience functions
30 /// and guarantees that the ioda data are well-formed.
31 /// \ingroup ioda_cxx_layout
32 class IODA_DL ObsGroup : public Group {
33  /// Identifies the current version of the ObsGroup schema.
34  static const int current_schema_version_;
35 
36  /// Set the mapping policy to determine the Layout of Variables stored under this Group.
37  void setLayout(std::shared_ptr<const detail::DataLayoutPolicy>);
38  /// Mapping policy
39  std::shared_ptr<const detail::DataLayoutPolicy> layout_;
40 
41 public:
42  /// \see generate for parameters.
43  ObsGroup(Group g, std::shared_ptr<const detail::DataLayoutPolicy> layout = nullptr);
45  virtual ~ObsGroup();
46 
47  /// \brief Create an empty ObsGroup and populate it with
48  /// the fundamental dimensions.
49  /// \param emptyGroup is an empty Group that will be filled
50  /// with the ObsGroup.
51  /// \param fundamentalDims is a collection of dimension names,
52  /// data types and dimension types (horizontal, vertical,
53  /// temporal, other) that define the basic dimensiosn of
54  /// the ObsGroup.
55  /// \param layout describes how the ObsGroup arranges its data internally.
56  /// Use nullptr to select the default policy.
57  static ObsGroup generate(Group& emptyGroup, const NewDimensionScales_t& fundamentalDims,
58  std::shared_ptr<const detail::DataLayoutPolicy> layout = nullptr);
59 
60  /// \brief Resize a Dimension and every Variable that
61  /// depends on it.
62  /// \details This operation is recursive on all objects within
63  /// the Group.
64  /// \throws if the input is not a dimension.
65  /// \param newDims is a vector of pairs of the Dimension and
66  /// its new size. If the dimension shrinks, then any data are
67  /// truncated. If it grows, then data are set to the fill value.
68  ///
69  void resize(const std::vector<std::pair<Variable, ioda::Dimensions_t>>& newDims);
70 
71 private:
72  /// \brief recusively visit all groups and resize variables according
73  /// to newDims.
74  /// \param group Current group in traversal
75  /// \param newDims Vector of pairs of Dimension and new size
76  static void resizeVars(Group& g,
77  const std::vector<std::pair<Variable, ioda::Dimensions_t>>& newDims);
78 
79  /// Create ObsGroup objects
80  void setup(const NewDimensionScales_t& fundamentalDims,
81  std::shared_ptr<const detail::DataLayoutPolicy> layout);
82 };
83 
84 } // namespace ioda
85 
86 /// @}
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
std::shared_ptr< const detail::DataLayoutPolicy > layout_
Mapping policy.
Definition: ObsGroup.h:39
static const int current_schema_version_
Identifies the current version of the ObsGroup schema.
Definition: ObsGroup.h:34
virtual ~ObsGroup()
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
list newDims
Definition: 05-ObsGroup.py:95
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t