OOPS
ObsIteratorQG.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 <utility>
9 #include <vector>
10 
11 #include "atlas/array.h"
12 #include "atlas/field.h"
13 
14 #include "model/ObsIteratorQG.h"
15 
16 // -----------------------------------------------------------------------------
17 namespace qg {
18 
19 ObsIteratorQG::ObsIteratorQG(const ObsIteratorQG & other): index_(other.index_),
20  locslonlat_(other.locslonlat_) {}
21 
22 // -----------------------------------------------------------------------------
23 ObsIteratorQG::ObsIteratorQG(const LocationsQG & locations, int index):
24  index_(index), locslonlat_(locations.lonlat()) {}
25 
26 // -----------------------------------------------------------------------------
27 bool ObsIteratorQG::operator==(const ObsIteratorQG & other) const {
28  return (index_ == other.index_);
29 }
30 
31 // -----------------------------------------------------------------------------
32 bool ObsIteratorQG::operator!=(const ObsIteratorQG & other) const {
33  return (index_!= other.index_);
34 }
35 
36 // -----------------------------------------------------------------------------
37 eckit::geometry::Point2 ObsIteratorQG::operator*() const {
38  auto lonlat = atlas::array::make_view<double, 2>(locslonlat_);
39  return eckit::geometry::Point2(lonlat(index_, 0), lonlat(index_, 1));
40 }
41 
42 // -----------------------------------------------------------------------------
44  index_++;
45  return *this;
46 }
47 
48 // -----------------------------------------------------------------------------
49 
50 } // namespace qg
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
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.