12 #include "atlas/array.h"
13 #include "eckit/config/Configuration.h"
14 #include "eckit/geometry/Point2.h"
15 #include "eckit/geometry/Sphere.h"
17 #include "oops/util/Logger.h"
24 using atlas::array::make_view;
33 : lengthscale_(conf.getDouble(
"lengthscale")), obsdb_(obsdb)
42 atlas::Field field_lonlat = locs->lonlat();
43 auto lonlat = make_view<double, 2>(field_lonlat);
44 eckit::geometry::Point2 refPoint = *p;
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);
59 os <<
"Observation space localization: Heaviside with lengthscale = " <<
lengthscale_;
const ObsSpaceQG & obsdb_
void computeLocalization(const GeometryQGIterator &, ObsVecQG &) const override
ObsLocQG(const eckit::Configuration &, const ObsSpaceQG &)
void print(std::ostream &) const override
const double lengthscale_
std::unique_ptr< LocationsQG > locations() const
create locations for the whole time window
ObsVecQG class to handle vectors in observation space for QG model.
void ones()
set all values to one
void setToMissing(int i)
set i-th value to missing value
The namespace for the qg model.
static oops::ObsLocalizationMaker< QgTraits, QgObsTraits, ObsLocQG > makerObsLoc_("Heaviside")