OOPS
ObsIterator.cc
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 #include "lorenz95/ObsIterator.h"
9 #include <vector>
10 
11 // -----------------------------------------------------------------------------
12 namespace lorenz95 {
13 
14 // -----------------------------------------------------------------------------
15 ObsIterator::ObsIterator(const std::vector<double> & locations, int index):
16  locations_(locations), index_(index) {
17 }
18 
19 // -----------------------------------------------------------------------------
20 bool ObsIterator::operator==(const ObsIterator & other) const {
21  return (index_ == other.index_);
22 }
23 
24 // -----------------------------------------------------------------------------
25 bool ObsIterator::operator!=(const ObsIterator & other) const {
26  return (index_ != other.index_);
27 }
28 
29 // -----------------------------------------------------------------------------
30 eckit::geometry::Point2 ObsIterator::operator*() const {
31  return eckit::geometry::Point2(locations_[index_], 0.0);
32 }
33 
34 // -----------------------------------------------------------------------------
36  index_++;
37  return *this;
38 }
39 
40 // -----------------------------------------------------------------------------
41 
42 } // namespace lorenz95
Iterator over all observations.
eckit::geometry::Point2 operator*() const
return location of current observation
Definition: ObsIterator.cc:30
const std::vector< double > locations_
locations (in 1D) of all observations
ObsIterator(const std::vector< double > &locations, int index)
Definition: ObsIterator.cc:15
ObsIterator & operator++()
Definition: ObsIterator.cc:35
bool operator!=(const ObsIterator &) const
Definition: ObsIterator.cc:25
int index_
index of a current observation
bool operator==(const ObsIterator &) const
Definition: ObsIterator.cc:20
The namespace for the L95 model.