16 #include "atlas/array.h"
17 #include "atlas/field.h"
18 #include "atlas/functionspace/PointCloud.h"
19 #include "eckit/config/Configuration.h"
20 #include "eckit/exception/Exceptions.h"
24 #include "oops/util/DateTime.h"
25 #include "oops/util/Duration.h"
26 #include "oops/util/Random.h"
28 using atlas::array::make_datatype;
29 using atlas::array::make_shape;
30 using atlas::array::make_view;
31 using atlas::option::name;
38 std::vector<double> lons;
39 std::vector<double> lats;
40 std::vector<double> z;
43 if (config.has(
"lats") || config.has(
"nrandom")) {
47 lons = config.getDoubleVector(
"lons");
48 lats = config.getDoubleVector(
"lats");
49 z = config.getDoubleVector(
"z");
51 ASSERT(lons.size() == lats.size());
52 ASSERT(lons.size() == z.size());
57 nrandom = config.getInt(
"nrandom", 0);
68 double lonmin, lonmax, latmin, latmax, zmax;
75 std::uint32_t
rseed = 11;
76 util::UniformDistribution<double> randlons(nrandom, lonmin, lonmax,
rseed);
77 util::UniformDistribution<double> randlats(nrandom, latmin, latmax);
78 util::UniformDistribution<double> randzs(nrandom, 0.0, zmax);
81 for (std::size_t jj=0; jj < nrandom; ++jj) {
82 lons.push_back(randlons[jj]);
83 lats.push_back(randlats[jj]);
84 z.push_back(randzs[jj]);
88 const unsigned int nlocs = lons.size();
92 atlas::Field field_lonlat(
"lonlat", make_datatype<double>(), make_shape(nlocs, 2));
93 auto lonlat = make_view<double, 2>(field_lonlat);
94 for (
unsigned int j = 0; j < nlocs; ++j ) {
98 pointcloud_.reset(
new atlas::functionspace::PointCloud(field_lonlat));
101 altitude_.reset(
new atlas::Field(
"altitude", make_datatype<double>(),
103 auto zpc = make_view<double, 1>(*
altitude_);
104 for (
unsigned int j = 0; j < nlocs; ++j) {
109 if (config.has(
"window end")) {
110 util::DateTime winbgn(config.getString(
"window begin"));
111 util::DateTime winend(config.getString(
"window end"));
112 util::Duration window_len(winend - winbgn);
113 util::Duration dt = window_len / nlocs;
116 for (
unsigned int j=0; j < nlocs; ++j) {
117 times_.push_back(winbgn + (j+1)*dt);
134 std::vector<util::DateTime> && times) {
135 pointcloud_.reset(
new atlas::functionspace::PointCloud(fields.field(
"lonlat")));
136 if (fields.has_field(
"altitude")) {
137 altitude_.reset(
new atlas::Field(fields.field(
"altitude")));
139 altitude_.reset(
new atlas::Field(atlas::Field()));
147 auto lonlat = make_view<double, 2>(field_lonlat);
148 auto z = make_view<double, 1>(*
altitude_);
149 for (
size_t jj=0; jj < static_cast<size_t>(nobs); ++jj) {
150 os <<
"location " << jj << std::setprecision(2) <<
": lon = " <<
lonlat(jj, 0)
151 <<
", lat = " <<
lonlat(jj, 1) <<
", z = " << z(jj) << std::endl;
LocationsQG class to handle locations for QG model.
std::vector< util::DateTime > times_
atlas::Field lonlat() const
std::unique_ptr< atlas::Field > altitude_
LocationsQG(atlas::FieldSet &, std::vector< util::DateTime > &&)
Constructor from fields and times.
void print(std::ostream &) const
std::unique_ptr< atlas::functionspace::PointCloud > pointcloud_
util::DateTime & times(size_t idx)
integer, parameter rseed
Random seed (for reproducibility)
The namespace for the qg model.
void qg_geom_dimensions_f90(double &, double &, double &, double &, double &)