OOPS
ObsIteratorQG.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 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 QG_MODEL_OBSITERATORQG_H_
9 #define QG_MODEL_OBSITERATORQG_H_
10 
11 #include <iterator>
12 #include <memory>
13 #include <string>
14 
15 #include "eckit/geometry/Point2.h"
16 
17 #include "model/LocationsQG.h"
18 
19 #include "oops/util/ObjectCounter.h"
20 #include "oops/util/Printable.h"
21 
22 namespace qg {
23 
24 /// Iterator over all observations
25 class ObsIteratorQG: public std::iterator<std::forward_iterator_tag,
26  eckit::geometry::Point2>,
27  public util::Printable,
28  private util::ObjectCounter<ObsIteratorQG> {
29  public:
30  static const std::string classname() {return "qg::ObsIteratorQG";}
31 
33  ObsIteratorQG(const LocationsQG &, int);
34 
35  bool operator==(const ObsIteratorQG &) const;
36  bool operator!=(const ObsIteratorQG &) const;
37 
38  /// return location of current observation
39  eckit::geometry::Point2 operator*() const;
40 
42 
43  private:
44  void print(std::ostream & os) const override {os << index_;}
45 
46  /// index of a current observation
47  int index_;
48  /// atlas field of the lons and lats
49  atlas::Field locslonlat_;
50 };
51 
52 } // namespace qg
53 
54 #endif // QG_MODEL_OBSITERATORQG_H_
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
Iterator over all observations.
Definition: ObsIteratorQG.h:28
eckit::geometry::Point2 operator*() const
return location of current observation
bool operator!=(const ObsIteratorQG &) const
ObsIteratorQG & operator++()
bool operator==(const ObsIteratorQG &) const
static const std::string classname()
Definition: ObsIteratorQG.h:30
void print(std::ostream &os) const override
Definition: ObsIteratorQG.h:44
ObsIteratorQG(const ObsIteratorQG &)
atlas::Field locslonlat_
atlas field of the lons and lats
Definition: ObsIteratorQG.h:49
int index_
index of a current observation
Definition: ObsIteratorQG.h:47
The namespace for the qg model.