IODA
ObsIoGenerateList.h
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 #ifndef IO_OBSIOGENERATELIST_H_
9 #define IO_OBSIOGENERATELIST_H_
10 
11 #include <iostream>
12 
13 #include "ioda/distribution/Distribution.h"
14 #include "ioda/io/ObsIo.h"
15 #include "ioda/ObsSpaceParameters.h"
16 
17 #include "eckit/mpi/Comm.h"
18 
19 #include "oops/util/DateTime.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/ObjectCounter.h"
22 
23 namespace ioda {
24 
25 /*! \brief Implementation of ObsIo generating observations at locations specified in the
26  * input YAML file (parsed earlier into the ObsGenerateListParameters object passed
27  * to the constructor).
28  *
29  * \author Stephen Herbener (JCSDA)
30  */
31 class ObsIoGenerateList : public ObsIo, private util::ObjectCounter<ObsIoGenerateList> {
32  public:
33  /// \brief classname method for object counter
34  ///
35  /// \details This method is supplied for the ObjectCounter base class.
36  /// It defines a name to identify an object of this class
37  /// for reporting by OOPS.
38  static const std::string classname() {return "ioda::ObsIoGenerateList";}
39 
40  /// Type used by ObsIoFactory
42 
43  explicit ObsIoGenerateList(const Parameters_ &ioParams,
44  const ObsSpaceParameters & obsSpaceParams);
46 
47  bool applyTimingWindow() const override { return false; }
48 
49  private:
50  //-------------------------- private data members -------------------------------
51 
52  //-------------------------- private functions ----------------------------------
53  /// \brief generate observation locations using the list method
54  /// \details This method will generate a set of latitudes and longitudes of which
55  /// can be used for testing without reading in an obs file. The values
56  /// are simply read from lists in the configuration file. The purpose of
57  /// this method is to allow the user to exactly specify obs locations.
58  /// these data are intended for use with the MakeObs functionality.
59  /// \param params Parameters structure specific to the generate list method
60  /// \param obsErrors list of error estimates for each assimilated variable
61  /// \param simVarNames list of names of variables to be assimilated
63  const std::vector<float> & obsErrors,
64  const std::vector<std::string> & simVarNames);
65 
66  /// \brief print routine for oops::Printable base class
67  /// \param ostream output stream
68  void print(std::ostream & os) const override;
69 };
70 
71 } // namespace ioda
72 
73 #endif // IO_OBSIOGENERATELIST_H_
Options controlling the ObsIoGenerateList class.
Implementation of ObsIo generating observations at locations specified in the input YAML file (parsed...
ObsGenerateListParameters Parameters_
Type used by ObsIoFactory.
void print(std::ostream &os) const override
print routine for oops::Printable base class
void genDistList(const EmbeddedObsGenerateListParameters &params, const std::vector< float > &obsErrors, const std::vector< std::string > &simVarNames)
generate observation locations using the list method
static const std::string classname()
classname method for object counter
bool applyTimingWindow() const override
return true if only observations within the timing window should be retained, false otherwise.
ObsIoGenerateList(const Parameters_ &ioParams, const ObsSpaceParameters &obsSpaceParams)