IODA
ObsIo.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef IO_OBSIO_H_
9 #define IO_OBSIO_H_
10 
11 #include <iostream>
12 #include <typeindex>
13 #include <typeinfo>
14 
15 #include "eckit/config/LocalConfiguration.h"
16 
17 #include "ioda/core/IodaUtils.h"
18 #include "ioda/distribution/Distribution.h"
19 #include "ioda/Misc/Dimensions.h"
21 
22 #include "oops/util/Logger.h"
23 #include "oops/util/Printable.h"
24 
25 namespace ioda {
26 
27 /// \details The ObsIo class along with its subclasses are responsible for providing an obs
28 /// data source (for the ObsSpace constructor) and an obs data destination (for the
29 /// ObsSpace destructor). An obs data source can either be a file (obsdatain.obsfile YAML
30 /// specification) or a "generator" (obsdatain.generate YAML specification). The generator
31 /// provides a means for creating obs data through YAML specification, which is useful for
32 /// testing purposes, thus bypassing the need for a file.
33 ///
34 /// \author Stephen Herbener (JCSDA)
35 
36 class ObsIo : public util::Printable {
37  public:
38  ObsIo();
39  virtual ~ObsIo() {}
40 
41  /// \brief return number of maximum variable size (along first dimension)
42  Dimensions_t maxVarSize() const {return max_var_size_;}
43 
44  /// \brief return number of locations from the source
45  Dimensions_t numLocs() const {return nlocs_;}
46 
47  /// \brief return number of regular variables from the source
48  Dimensions_t numVars() const {return var_list_.size();}
49 
50  /// \brief return number of dimension scale variables from the source
51  Dimensions_t numDimVars() const {return dim_var_list_.size();}
52 
53  /// \brief return list of regular variable names
54  /// \details This routine is only guarenteed to return correct results if
55  /// updateVarDimInfo has been called and the variables and dimensions
56  /// haven't been modified since.
57  const VarNameObjectList & varList() const {return var_list_;}
58 
59  /// \brief return list of dimension scale variable names
60  /// \details This routine is only guarenteed to return correct results if
61  /// updateVarDimInfo has been called and the variables and dimensions
62  /// haven't been modified since.
63  const VarNameObjectList & dimVarList() const {return dim_var_list_;}
64 
65  /// \brief return map of variables to attached dimension scales
67 
68  /// \brief return true if variable's first dimension is nlocs
69  bool isVarDimByNlocs(const std::string & varName) const;
70 
71  /// \brief access to the variables container in the associated ObsGroup
73 
74  /// \brief access to the attributes container in the associated ObsGroup
76 
77  /// \brief update the variable and dimension information
78  void updateVarDimInfo();
79 
80  /// \brief return the names of variables to be used to group observations into records
81  const std::vector<std::string> &obsGroupingVars() const { return obs_grouping_vars_; }
82 
83  /// \brief return true if only observations within the timing window should be retained,
84  /// false otherwise.
85  virtual bool applyTimingWindow() const { return true; }
86 
87  /// \brief return true if each process generates a separate series of observations
88  /// (e.g. read from different files).
89  virtual bool eachProcessGeneratesSeparateObs() const { return false; }
90 
91  protected:
92  //------------------ protected data members ------------------------------
93  /// \brief ObsGroup object representing io source/destination
95 
96  /// \brief maximum variable size (ie, first dimension size)
97  Dimensions_t max_var_size_;
98 
99  /// \brief number of locations from source (file or generator)
100  Dimensions_t nlocs_;
101 
102  /// \brief list of regular variables from source (file or generator)
104 
105  /// \brief list of dimension scale variables from source (file or generator)
107 
108  /// \brief map containing variables with their attached dimension scales
110 
111  /// \brief names of variables to be used to group observations into records
112  std::vector<std::string> obs_grouping_vars_;
113 
114  //------------------ protected functions ----------------------------------
115  /// \brief print() for oops::Printable base class
116  /// \param ostream output stream
117  virtual void print(std::ostream & os) const = 0;
118 };
119 
120 } // namespace ioda
121 
122 #endif // IO_OBSIO_H_
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Interfaces for ioda::Variable and related classes.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
Dimensions_t max_var_size_
maximum variable size (ie, first dimension size)
Definition: ObsIo.h:97
const VarNameObjectList & dimVarList() const
return list of dimension scale variable names
Definition: ObsIo.h:63
void updateVarDimInfo()
update the variable and dimension information
Definition: ObsIo.cc:38
virtual void print(std::ostream &os) const =0
print() for oops::Printable base class
Definition: ObsIo.cc:44
Has_Variables & vars()
access to the variables container in the associated ObsGroup
Definition: ObsIo.h:72
Dimensions_t nlocs_
number of locations from source (file or generator)
Definition: ObsIo.h:100
VarDimMap varDimMap() const
return map of variables to attached dimension scales
Definition: ObsIo.h:66
VarNameObjectList var_list_
list of regular variables from source (file or generator)
Definition: ObsIo.h:103
std::vector< std::string > obs_grouping_vars_
names of variables to be used to group observations into records
Definition: ObsIo.h:112
Has_Attributes & atts()
access to the attributes container in the associated ObsGroup
Definition: ObsIo.h:75
VarNameObjectList dim_var_list_
list of dimension scale variables from source (file or generator)
Definition: ObsIo.h:106
virtual bool applyTimingWindow() const
return true if only observations within the timing window should be retained, false otherwise.
Definition: ObsIo.h:85
Dimensions_t numLocs() const
return number of locations from the source
Definition: ObsIo.h:45
Dimensions_t numVars() const
return number of regular variables from the source
Definition: ObsIo.h:48
VarDimMap dims_attached_to_vars_
map containing variables with their attached dimension scales
Definition: ObsIo.h:109
bool isVarDimByNlocs(const std::string &varName) const
return true if variable's first dimension is nlocs
Definition: ObsIo.cc:26
const std::vector< std::string > & obsGroupingVars() const
return the names of variables to be used to group observations into records
Definition: ObsIo.h:81
ObsGroup obs_group_
ObsGroup object representing io source/destination.
Definition: ObsIo.h:94
Dimensions_t numDimVars() const
return number of dimension scale variables from the source
Definition: ObsIo.h:51
Dimensions_t maxVarSize() const
return number of maximum variable size (along first dimension)
Definition: ObsIo.h:42
virtual ~ObsIo()
Definition: ObsIo.h:39
virtual bool eachProcessGeneratesSeparateObs() const
return true if each process generates a separate series of observations (e.g. read from different fil...
Definition: ObsIo.h:89
const VarNameObjectList & varList() const
return list of regular variable names
Definition: ObsIo.h:57
Has_Attributes atts
Use this to access the metadata for the group / ObsSpace.
Definition: Group.h:120
Has_Variables vars
Use this to access variables.
Definition: Group.h:123
std::vector< std::pair< std::string, Variable > > VarNameObjectList
typedef for holding list of variable names with associated variable object
Definition: IodaUtils.h:30
std::map< std::string, std::vector< std::string > > VarDimMap
typedef for holding dim names attached to variables
Definition: IodaUtils.h:36