OOPS
ObsLocQG.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 "model/ObsLocQG.h"
9 
10 #include <memory>
11 
12 #include "atlas/array.h"
13 #include "eckit/config/Configuration.h"
14 #include "eckit/geometry/Point2.h"
15 #include "eckit/geometry/Sphere.h"
16 
17 #include "oops/util/Logger.h"
18 
20 #include "model/LocationsQG.h"
21 #include "model/ObsSpaceQG.h"
22 #include "model/QgTraits.h"
23 
24 using atlas::array::make_view;
25 
26 namespace qg {
27 
29 
30 // -----------------------------------------------------------------------------
31 
32 ObsLocQG::ObsLocQG(const eckit::Configuration & conf, const ObsSpaceQG & obsdb)
33  : lengthscale_(conf.getDouble("lengthscale")), obsdb_(obsdb)
34 {
35 }
36 
37 // -----------------------------------------------------------------------------
38 
40  ObsVecQG & local) const {
41  std::unique_ptr<LocationsQG> locs = obsdb_.locations();
42  atlas::Field field_lonlat = locs->lonlat();
43  auto lonlat = make_view<double, 2>(field_lonlat);
44  eckit::geometry::Point2 refPoint = *p;
45 
46  local.ones();
47  for (int jj = 0; jj < locs->size(); ++jj) {
48  eckit::geometry::Point2 obsPoint(lonlat(jj, 0), lonlat(jj, 1));
49  double localDist = eckit::geometry::Sphere::distance(6.371e6, refPoint, obsPoint);
50  if (localDist > lengthscale_) {
51  local.setToMissing(jj);
52  }
53  }
54 }
55 
56 // -----------------------------------------------------------------------------
57 
58 void ObsLocQG::print(std::ostream & os) const {
59  os << "Observation space localization: Heaviside with lengthscale = " << lengthscale_;
60 }
61 
62 // -----------------------------------------------------------------------------
63 
64 } // namespace qg
const ObsSpaceQG & obsdb_
Definition: ObsLocQG.h:37
void computeLocalization(const GeometryQGIterator &, ObsVecQG &) const override
Definition: ObsLocQG.cc:39
ObsLocQG(const eckit::Configuration &, const ObsSpaceQG &)
Definition: ObsLocQG.cc:32
void print(std::ostream &) const override
Definition: ObsLocQG.cc:58
const double lengthscale_
Definition: ObsLocQG.h:36
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
std::unique_ptr< LocationsQG > locations() const
create locations for the whole time window
Definition: ObsSpaceQG.cc:139
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
void ones()
set all values to one
Definition: ObsVecQG.cc:90
void setToMissing(int i)
set i-th value to missing value
Definition: ObsVecQG.cc:86
The namespace for the qg model.
static oops::ObsLocalizationMaker< QgTraits, QgObsTraits, ObsLocQG > makerObsLoc_("Heaviside")