IODA
timeIodaIO.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 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 #ifndef MAINS_TIMEIODAIO_H_
9 #define MAINS_TIMEIODAIO_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 
16 #include "oops/base/Observations.h"
17 #include "oops/base/ObsSpaces.h"
18 #include "oops/mpi/mpi.h"
19 #include "oops/runs/Application.h"
20 #include "oops/util/DateTime.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/Logger.h"
23 
24 #include "ioda/core/IodaUtils.h"
25 #include "ioda/ObsSpace.h"
26 
27 // This application initially served the purpose of being able to do a simple and easy
28 // performance comparison for different file formats (netcdf, odb) in the context of
29 // ObsSpace construction (file read) and destruction (file write).
30 //
31 // Over the course of time, this application has proved useful for debugging ioda file IO
32 // issues, both functional and performance related. These kinds of issues typically surface
33 // during DA flow exercising, and this application provides a simple and direct way to run
34 // just the file IO piece of the flow without having to build, configure and run the DA flow.
35 
36 namespace ioda {
37 
38 template <typename MODEL> class TimeIodaIO : public oops::Application {
39  typedef oops::ObsSpaces<MODEL> ObsSpaces_;
40 
41  public:
42 // -----------------------------------------------------------------------------
43  explicit TimeIodaIO(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
44 // -----------------------------------------------------------------------------
45  virtual ~TimeIodaIO() {}
46 // -----------------------------------------------------------------------------
47  int execute(const eckit::Configuration & fullConfig) const {
48 // Setup observation window
49  const util::DateTime winbgn(fullConfig.getString("window begin"));
50  const util::DateTime winend(fullConfig.getString("window end"));
51  oops::Log::info() << "Observation window begin:" << winbgn << std::endl;
52  oops::Log::info() << "Observation window end:" << winend << std::endl;
53 
54 // Setup observations
55  eckit::LocalConfiguration obsconf(fullConfig, "observations");
56  oops::Log::debug() << "Observations configuration is:" << obsconf << std::endl;
57  ObsSpaces_ obsdb(obsconf, this->getComm(), winbgn, winend);
58 
59  for (std::size_t jj = 0; jj < obsdb.size(); ++jj) {
60  oops::Log::info() << "ObsSpace: " << obsdb[jj].obsname() << std::endl;
61  oops::Log::info() << " Number of locations: " << obsdb[jj].obsspace().nlocs()
62  << std::endl;
63  oops::Log::info() << " Number of variables: " << obsdb[jj].obsspace().nvars()
64  << std::endl;
65  oops::Log::info() << " Number of records: " << obsdb[jj].obsspace().nrecs()
66  << std::endl;
67 
68  // write the output file if "obsdataout" was specified
69  obsdb[jj].obsspace().save();
70  }
71  return 0;
72  }
73 
74 // -----------------------------------------------------------------------------
75  private:
76  std::string appname() const {
77  return "oops::TimeIodaIO<" + MODEL::name() + ">";
78  }
79 // -----------------------------------------------------------------------------
80 };
81 
82 } // namespace ioda
83 
84 #endif // MAINS_TIMEIODAIO_H_
int execute(const eckit::Configuration &fullConfig) const
Definition: timeIodaIO.h:47
virtual ~TimeIodaIO()
Definition: timeIodaIO.h:45
std::string appname() const
Definition: timeIodaIO.h:76
TimeIodaIO(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: timeIodaIO.h:43
oops::ObsSpaces< MODEL > ObsSpaces_
Definition: timeIodaIO.h:39