OOPS
ObsData1D.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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 LORENZ95_OBSDATA1D_H_
9 #define LORENZ95_OBSDATA1D_H_
10 
11 #include <cmath>
12 #include <limits>
13 #include <ostream>
14 #include <string>
15 #include <vector>
16 
17 #include "eckit/exception/Exceptions.h"
18 
19 #include "oops/base/Variables.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/missingValues.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 
25 #include "lorenz95/ObsTable.h"
26 #include "lorenz95/ObsVec1D.h"
27 
28 namespace lorenz95 {
29 
30 // -----------------------------------------------------------------------------
31 /// Data in observation space
32 
33 template<typename DATATYPE>
34 class ObsData1D : public util::Printable,
35  private util::ObjectCounter<ObsData1D<DATATYPE> > {
36  public:
37  static const std::string classname() {return "lorenz95::ObsData1D";}
38 
39  ObsData1D(const ObsTable &, const oops::Variables &, const std::string &);
40  ObsData1D(const ObsData1D &);
41  explicit ObsData1D(const ObsVec1D &);
43 
44  ObsData1D & operator= (const ObsData1D &);
45 
46  void zero();
47  void mask(const ObsData1D<int> &);
48 
49  size_t nobs() const {return data_.size();}
50  DATATYPE & operator[] (const size_t ii) {return data_.at(ii);}
51  const DATATYPE & operator[] (const size_t ii) const {return data_.at(ii);}
52 
53 // I/O
54  void read(const std::string &);
55  void save(const std::string &) const;
56 
57  private:
58  void print(std::ostream &) const;
59 
60  const ObsTable & obsdb_;
61  std::vector<DATATYPE> data_;
62 };
63 
64 //-----------------------------------------------------------------------------
65 
66 template<typename DATATYPE>
68  const std::string & name)
69  : obsdb_(ot), data_(ot.nobs())
70 {
71  this->zero();
72  if (!name.empty()) obsdb_.getdb(name, data_);
73 }
74 // -----------------------------------------------------------------------------
75 template<typename DATATYPE>
77  : obsdb_(other.obsdb_), data_(other.data_)
78 {}
79 // -----------------------------------------------------------------------------
80 template<typename DATATYPE>
82  : obsdb_(other.obsdb()), data_(other.size()) {
83  const DATATYPE missing = util::missingValue(DATATYPE());
84  const double dmiss = util::missingValue(double());
85  for (size_t jj = 0; jj < data_.size(); ++jj) {
86  if (other[jj] == dmiss) {
87  data_.at(jj) = missing;
88  } else {
89  data_.at(jj) = static_cast<DATATYPE>(other[jj]);
90  }
91  }
92 }
93 // -----------------------------------------------------------------------------
94 template<typename DATATYPE>
96  ASSERT(data_.size() == rhs.data_.size());
97  data_ = rhs.data_;
98  return *this;
99 }
100 // -----------------------------------------------------------------------------
101 template<typename DATATYPE>
103  for (size_t jj = 0; jj < data_.size(); ++jj) {
104  data_.at(jj) = static_cast<DATATYPE>(0);
105  }
106 }
107 // -----------------------------------------------------------------------------
108 template<typename DATATYPE>
110  DATATYPE missing = util::missingValue(DATATYPE());
111  for (size_t jj = 0; jj < data_.size(); ++jj) {
112  if (mask[jj]) data_.at(jj) = missing;
113  }
114 }
115 // -----------------------------------------------------------------------------
116 template<typename DATATYPE>
117 void ObsData1D<DATATYPE>::read(const std::string & name) {
118  obsdb_.getdb(name, data_);
119 }
120 // -----------------------------------------------------------------------------
121 template<typename DATATYPE>
122 void ObsData1D<DATATYPE>::save(const std::string & name) const {
123  obsdb_.putdb(name, data_);
124 }
125 // -----------------------------------------------------------------------------
126 template<typename DATATYPE>
127 void ObsData1D<DATATYPE>::print(std::ostream & os) const {
128  DATATYPE missing = util::missingValue(DATATYPE());
129  DATATYPE zmin = std::numeric_limits<DATATYPE>::max();
130  DATATYPE zmax = std::numeric_limits<DATATYPE>::lowest();
131  DATATYPE zavg = 0.0;
132  size_t iobs = 0;
133  for (const DATATYPE & val : data_) {
134  if (val != missing) {
135  if (val < zmin) zmin = val;
136  if (val > zmax) zmax = val;
137  zavg += val;
138  ++iobs;
139  }
140  }
141  if (iobs > 0) {
142  zavg /= static_cast<DATATYPE>(iobs);
143  os << "Lorenz 95 nobs= " << iobs << " Min=" << zmin << ", Max=" << zmax
144  << ", Average=" << zavg;
145  } else {
146  os << "Lorenz 95 : No observations";
147  }
148 }
149 // -----------------------------------------------------------------------------
150 } // namespace lorenz95
151 
152 #endif // LORENZ95_OBSDATA1D_H_
Data in observation space.
Definition: ObsData1D.h:35
size_t nobs() const
Definition: ObsData1D.h:49
const ObsTable & obsdb_
Definition: ObsData1D.h:60
void mask(const ObsData1D< int > &)
Definition: ObsData1D.h:109
DATATYPE & operator[](const size_t ii)
Definition: ObsData1D.h:50
ObsData1D(const ObsTable &, const oops::Variables &, const std::string &)
Definition: ObsData1D.h:67
void read(const std::string &)
Definition: ObsData1D.h:117
ObsData1D & operator=(const ObsData1D &)
Definition: ObsData1D.h:95
static const std::string classname()
Definition: ObsData1D.h:37
std::vector< DATATYPE > data_
Definition: ObsData1D.h:61
void print(std::ostream &) const
Definition: ObsData1D.h:127
void save(const std::string &) const
Definition: ObsData1D.h:122
A Simple Observation Data Handler.
Definition: ObsTable.h:67
void getdb(const std::string &, std::vector< int > &) const
Definition: ObsTable.cc:128
Vector in observation space.
Definition: ObsVec1D.h:33
The namespace for the L95 model.