IODA
obsspace_f.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 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 "ioda/core/obsspace_f.h"
9 
10 #include <algorithm>
11 #include <cstring>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/exception/Exceptions.h"
16 
17 #include "oops/util/DateTime.h"
18 
19 #include "ioda/ObsSpace.h"
20 
21 namespace ioda {
22 
23 // -----------------------------------------------------------------------------
24 const ObsSpace * obsspace_construct_f(const eckit::Configuration * conf,
25  const util::DateTime * begin,
26  const util::DateTime * end) {
28  params.validateAndDeserialize(*conf);
29  return new ObsSpace(params, oops::mpi::world(), *begin, *end, oops::mpi::myself());
30 }
31 
32 // -----------------------------------------------------------------------------
34  ASSERT(obss != nullptr);
35  delete obss;
36 }
37 
38 // -----------------------------------------------------------------------------
39 void obsspace_obsname_f(const ObsSpace & obss, size_t & lcname, char * cname) {
40  std::string obsname = obss.obsname();
41  lcname = obsname.size();
42  ASSERT(lcname < 100); // to not overflow the associated fortran string
43  strncpy(cname, obsname.c_str(), lcname);
44 }
45 
46 // -----------------------------------------------------------------------------
47 const oops::Variables * obsspace_obsvariables_f(const ObsSpace & obss) {
48  return &obss.obsvariables();
49 }
50 
51 // -----------------------------------------------------------------------------
52 std::size_t obsspace_get_gnlocs_f(const ObsSpace & obss) {
53  return obss.globalNumLocs();
54 }
55 // -----------------------------------------------------------------------------
56 std::size_t obsspace_get_nlocs_f(const ObsSpace & obss) {
57  return obss.nlocs();
58 }
59 // -----------------------------------------------------------------------------
60 std::size_t obsspace_get_nchans_f(const ObsSpace & obss) {
61  return obss.nchans();
62 }
63 // -----------------------------------------------------------------------------
64 std::size_t obsspace_get_nrecs_f(const ObsSpace & obss) {
65  return obss.nrecs();
66 }
67 // -----------------------------------------------------------------------------
68 std::size_t obsspace_get_nvars_f(const ObsSpace & obss) {
69  return obss.nvars();
70 }
71 
72 // -----------------------------------------------------------------------------
73 void obsspace_get_dim_name_f(const ObsSpace & obss, const int & dim_id,
74  std::size_t & len_dim_name, char * dim_name) {
75  std::string dimName = obss.get_dim_name(static_cast<ioda::ObsDimensionId>(dim_id));
76  len_dim_name = dimName.size();
77  ASSERT(len_dim_name < 100); // to not overflow the associated fortran string
78  strncpy(dim_name, dimName.c_str(), len_dim_name);
79 }
80 // -----------------------------------------------------------------------------
81 std::size_t obsspace_get_dim_size_f(const ObsSpace & obss, const int & dim_id) {
82  return obss.get_dim_size(static_cast<ioda::ObsDimensionId>(dim_id));
83 }
84 // -----------------------------------------------------------------------------
85 int obsspace_get_dim_id_f(const ObsSpace & obss, const char * dim_name) {
86  return static_cast<int>(obss.get_dim_id(std::string(dim_name)));
87 }
88 
89 // -----------------------------------------------------------------------------
90 void obsspace_get_comm_f(const ObsSpace & obss, int & lcname, char * cname) {
91  lcname = obss.comm().name().size();
92  ASSERT(lcname < 100); // to not overflow the associated fortran string
93  strncpy(cname, obss.comm().name().c_str(), lcname);
94 }
95 // -----------------------------------------------------------------------------
96 void obsspace_get_recnum_f(const ObsSpace & obss,
97  const std::size_t & length, std::size_t * recnum) {
98  ASSERT(length >= obss.nlocs());
99  for (std::size_t i = 0; i < length; i++) {
100  recnum[i] = obss.recnum()[i];
101  }
102 }
103 // -----------------------------------------------------------------------------
104 void obsspace_get_index_f(const ObsSpace & obss,
105  const std::size_t & length, std::size_t * index) {
106  ASSERT(length >= obss.nlocs());
107  for (std::size_t i = 0; i < length; i++) {
108  // Fortran array indices start at 1, whereas C indices start at 0.
109  // Add 1 to each index value as it is handed off from C to Fortran.
110  index[i] = obss.index()[i] + 1;
111  }
112 }
113 // -----------------------------------------------------------------------------
114 bool obsspace_has_f(const ObsSpace & obss, const char * group, const char * vname) {
115  return obss.has(std::string(group), std::string(vname));
116 }
117 // -----------------------------------------------------------------------------
118 void obsspace_get_int32_f(const ObsSpace & obss, const char * group, const char * vname,
119  const std::size_t & length, int32_t* vec,
120  const std::size_t & len_cs, int* chan_select) {
121  ASSERT(len_cs <= obss.nchans());
122  std::vector<int> chanSelect(len_cs);
123  chanSelect.assign(chan_select, chan_select + len_cs);
124  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
125  else
126  ASSERT(length >= obss.nlocs());
127  std::vector<int32_t> vdata(length);
128  obss.get_db(std::string(group), std::string(vname), vdata, chanSelect);
129  std::copy(vdata.begin(), vdata.end(), vec);
130 }
131 // -----------------------------------------------------------------------------
132 void obsspace_get_int64_f(const ObsSpace & obss, const char * group, const char * vname,
133  const std::size_t & length, int64_t* vec,
134  const std::size_t & len_cs, int* chan_select) {
135  ASSERT(len_cs <= obss.nchans());
136  std::vector<int> chanSelect(len_cs);
137  chanSelect.assign(chan_select, chan_select + len_cs);
138  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
139  else
140  ASSERT(length >= obss.nlocs());
141 // obss.get_db(std::string(group), std::string(vname), vec, chanSelect);
142 }
143 // -----------------------------------------------------------------------------
144 void obsspace_get_real32_f(const ObsSpace & obss, const char * group, const char * vname,
145  const std::size_t & length, float* vec,
146  const std::size_t & len_cs, int* chan_select) {
147  ASSERT(len_cs <= obss.nchans());
148  std::vector<int> chanSelect(len_cs);
149  chanSelect.assign(chan_select, chan_select + len_cs);
150  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
151  else
152  ASSERT(length >= obss.nlocs());
153 // obss.get_db(std::string(group), std::string(vname), vec, chanSelect);
154 }
155 // -----------------------------------------------------------------------------
156 void obsspace_get_real64_f(const ObsSpace & obss, const char * group, const char * vname,
157  const std::size_t & length, double* vec,
158  const std::size_t & len_cs, int* chan_select) {
159  ASSERT(len_cs <= obss.nchans());
160  std::vector<int> chanSelect(len_cs);
161  chanSelect.assign(chan_select, chan_select + len_cs);
162  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
163  else
164  ASSERT(length >= obss.nlocs());
165  std::vector<double> vdata(length);
166  obss.get_db(std::string(group), std::string(vname), vdata, chanSelect);
167  std::copy(vdata.begin(), vdata.end(), vec);
168 }
169 // -----------------------------------------------------------------------------
170 void obsspace_get_datetime_f(const ObsSpace & obss, const char * group, const char * vname,
171  const std::size_t & length, int32_t* date, int32_t* time,
172  const std::size_t & len_cs, int* chan_select) {
173  ASSERT(len_cs <= obss.nchans());
174  std::vector<int> chanSelect(len_cs);
175  chanSelect.assign(chan_select, chan_select + len_cs);
176  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
177  else
178  ASSERT(length >= obss.nlocs());
179 
180  // Load a DateTime vector from the database, then convert to a date and time
181  // vector which are then returned.
182  util::DateTime temp_dt("0000-01-01T00:00:00Z");
183  std::vector<util::DateTime> dt_vect(length, temp_dt);
184  obss.get_db(std::string(group), std::string(vname), dt_vect, chanSelect);
185 
186  // Convert to date and time values. The DateTime utilities can return year, month,
187  // day, hour, minute second.
188  int year;
189  int month;
190  int day;
191  int hour;
192  int minute;
193  int second;
194  for (std::size_t i = 0; i < length; i++) {
195  dt_vect[i].toYYYYMMDDhhmmss(year, month, day, hour, minute, second);
196  date[i] = (year * 10000) + (month * 100) + day;
197  time[i] = (hour * 10000) + (minute * 100) + second;
198  }
199 }
200 // -----------------------------------------------------------------------------
201 void obsspace_put_int32_f(ObsSpace & obss, const char * group, const char * vname,
202  const std::size_t & length, int32_t* vec,
203  const std::size_t & ndims, int* dim_ids) {
204  // Generate the dimension list (names) and the total number of elements required
205  // (product of dimension sizes). vec is just an allocated memory buffer in which
206  // to place the data from the ObsSpace variable.
207  std::vector<std::string> dimList;
208  int numElements = (ndims > 0) ? 1 : 0;
209  for (std::size_t i = 0; i < ndims; ++i) {
210  ObsDimensionId dimId = static_cast<ioda::ObsDimensionId>(dim_ids[i]);
211  dimList.push_back(obss.get_dim_name(dimId));
212  numElements *= obss.get_dim_size(dimId);
213  }
214 
215  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
216  else
217  ASSERT(length >= numElements);
218  std::vector<int32_t> vdata;
219  vdata.assign(vec, vec + length);
220 
221  obss.put_db(std::string(group), std::string(vname), vdata, dimList);
222 }
223 // -----------------------------------------------------------------------------
224 void obsspace_put_int64_f(ObsSpace & obss, const char * group, const char * vname,
225  const std::size_t & length, int64_t* vec,
226  const std::size_t & ndims, int* dim_ids) {
227  // Generate the dimension list (names) and the total number of elements required
228  // (product of dimension sizes). vec is just an allocated memory buffer in which
229  // to place the data from the ObsSpace variable.
230  std::vector<std::string> dimList;
231  int numElements = (ndims > 0) ? 1 : 0;
232  for (std::size_t i = 0; i < ndims; ++i) {
233  ObsDimensionId dimId = static_cast<ioda::ObsDimensionId>(dim_ids[i]);
234  dimList.push_back(obss.get_dim_name(dimId));
235  numElements *= obss.get_dim_size(dimId);
236  }
237 
238  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
239  else
240  ASSERT(length >= numElements);
241 // obss.put_db(std::string(group), std::string(vname), vec, dimList);
242 }
243 // -----------------------------------------------------------------------------
244 void obsspace_put_real32_f(ObsSpace & obss, const char * group, const char * vname,
245  const std::size_t & length, float* vec,
246  const std::size_t & ndims, int* dim_ids) {
247  // Generate the dimension list (names) and the total number of elements required
248  // (product of dimension sizes). vec is just an allocated memory buffer in which
249  // to place the data from the ObsSpace variable.
250  std::vector<std::string> dimList;
251  int numElements = (ndims > 0) ? 1 : 0;
252  for (std::size_t i = 0; i < ndims; ++i) {
253  ObsDimensionId dimId = static_cast<ioda::ObsDimensionId>(dim_ids[i]);
254  dimList.push_back(obss.get_dim_name(dimId));
255  numElements *= obss.get_dim_size(dimId);
256  }
257 
258  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
259  else
260  ASSERT(length >= numElements);
261 // obss.put_db(std::string(group), std::string(vname), vec, dimList);
262 }
263 // -----------------------------------------------------------------------------
264 void obsspace_put_real64_f(ObsSpace & obss, const char * group, const char * vname,
265  const std::size_t & length, double* vec,
266  const std::size_t & ndims, int* dim_ids) {
267  // Generate the dimension list (names) and the total number of elements required
268  // (product of dimension sizes). vec is just an allocated memory buffer in which
269  // to place the data from the ObsSpace variable.
270  std::vector<std::string> dimList;
271  int numElements = (ndims > 0) ? 1 : 0;
272  for (std::size_t i = 0; i < ndims; ++i) {
273  ObsDimensionId dimId = static_cast<ioda::ObsDimensionId>(dim_ids[i]);
274  dimList.push_back(obss.get_dim_name(dimId));
275  numElements *= obss.get_dim_size(dimId);
276  }
277 
278  if (std::string(group) == "VarMetaData") ASSERT(length >= obss.nvars());
279  else
280  ASSERT(length >= numElements);
281  std::vector<double> vdata;
282  vdata.assign(vec, vec + length);
283 
284  obss.put_db(std::string(group), std::string(vname), vdata, dimList);
285 }
286 // -----------------------------------------------------------------------------
288  return static_cast<int>(ObsDimensionId::Nlocs);
289 }
290 // -----------------------------------------------------------------------------
292  return static_cast<int>(ObsDimensionId::Nchans);
293 }
294 // -----------------------------------------------------------------------------
295 
296 } // namespace ioda
std::size_t obsspace_get_nvars_f(const ObsSpace &obss)
Definition: obsspace_f.cc:68
void obsspace_get_comm_f(const ObsSpace &obss, int &lcname, char *cname)
Definition: obsspace_f.cc:90
const ObsSpace * obsspace_construct_f(const eckit::Configuration *conf, const util::DateTime *begin, const util::DateTime *end)
Definition: obsspace_f.cc:24
void obsspace_get_int32_f(const ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, int32_t *vec, const std::size_t &len_cs, int *chan_select)
Definition: obsspace_f.cc:118
void obsspace_put_real32_f(ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, float *vec, const std::size_t &ndims, int *dim_ids)
Definition: obsspace_f.cc:244
void obsspace_put_int32_f(ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, int32_t *vec, const std::size_t &ndims, int *dim_ids)
Definition: obsspace_f.cc:201
void obsspace_get_real32_f(const ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, float *vec, const std::size_t &len_cs, int *chan_select)
Definition: obsspace_f.cc:144
void obsspace_destruct_f(ObsSpace *obss)
Definition: obsspace_f.cc:33
std::size_t obsspace_get_nlocs_f(const ObsSpace &obss)
Definition: obsspace_f.cc:56
const oops::Variables * obsspace_obsvariables_f(const ObsSpace &obss)
Definition: obsspace_f.cc:47
IODA_DL void copy(const ObjectSelection &from, ObjectSelection &to, const ScaleMapping &scale_map)
Generic data copying function.
Definition: Copying.cpp:63
void obsspace_get_recnum_f(const ObsSpace &obss, const std::size_t &length, std::size_t *recnum)
Definition: obsspace_f.cc:96
int obsspace_get_dim_id_f(const ObsSpace &obss, const char *dim_name)
Definition: obsspace_f.cc:85
void obsspace_obsname_f(const ObsSpace &obss, size_t &lcname, char *cname)
Definition: obsspace_f.cc:39
void obsspace_get_real64_f(const ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, double *vec, const std::size_t &len_cs, int *chan_select)
Definition: obsspace_f.cc:156
void obsspace_get_datetime_f(const ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, int32_t *date, int32_t *time, const std::size_t &len_cs, int *chan_select)
Definition: obsspace_f.cc:170
void obsspace_get_index_f(const ObsSpace &obss, const std::size_t &length, std::size_t *index)
Definition: obsspace_f.cc:104
void obsspace_put_real64_f(ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, double *vec, const std::size_t &ndims, int *dim_ids)
Definition: obsspace_f.cc:264
bool obsspace_has_f(const ObsSpace &obss, const char *group, const char *vname)
Definition: obsspace_f.cc:114
void obsspace_get_int64_f(const ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, int64_t *vec, const std::size_t &len_cs, int *chan_select)
Definition: obsspace_f.cc:132
std::size_t obsspace_get_nchans_f(const ObsSpace &obss)
Definition: obsspace_f.cc:60
int obsspace_get_nchans_dim_id_f()
Definition: obsspace_f.cc:291
int obsspace_get_nlocs_dim_id_f()
Definition: obsspace_f.cc:287
void obsspace_put_int64_f(ObsSpace &obss, const char *group, const char *vname, const std::size_t &length, int64_t *vec, const std::size_t &ndims, int *dim_ids)
Definition: obsspace_f.cc:224
std::size_t obsspace_get_dim_size_f(const ObsSpace &obss, const int &dim_id)
Definition: obsspace_f.cc:81
std::size_t obsspace_get_gnlocs_f(const ObsSpace &obss)
Definition: obsspace_f.cc:52
void obsspace_get_dim_name_f(const ObsSpace &obss, const int &dim_id, std::size_t &len_dim_name, char *dim_name)
Definition: obsspace_f.cc:73
ObsDimensionId
Definition: src/ObsSpace.h:61
std::size_t obsspace_get_nrecs_f(const ObsSpace &obss)
Definition: obsspace_f.cc:64