IODA
ObsIoGenerateUtils.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_OBSIOGENERATEUTILS_H_
9 #define IO_OBSIOGENERATEUTILS_H_
10 
11 #include <string>
12 #include <vector>
13 
14 /// \file ObsIoGenerateUtils.h
15 ///
16 /// Utilities used by the ObsIoGenerate* classes
17 
18 namespace ioda {
19 
20 class ObsGroup;
21 
22 /// \brief store generated data into an ObsGroup
23 /// \param latVals vector of latitude values
24 /// \param lonVals vector of longitude values
25 /// \param dtStrings vector of datetime (ISO 8601 string) values
26 /// \param obsVarNames vector (string) of simulated variable names
27 /// \param obsErrors vector of obs error estimates
28 /// \param[out] obsGroup destination for the generated data
29 void storeGenData(const std::vector<float> & latVals,
30  const std::vector<float> & lonVals,
31  const std::vector<std::string> & dtStrings,
32  const std::vector<std::string> & obsVarNames,
33  const std::vector<float> & obsErrors,
34  ObsGroup &obsGroup);
35 
36 } // namespace ioda
37 
38 #endif // IO_OBSIOGENERATEUTILS_H_
void storeGenData(const std::vector< float > &latVals, const std::vector< float > &lonVals, const std::vector< std::string > &dtStrings, const std::vector< std::string > &obsVarNames, const std::vector< float > &obsErrors, ObsGroup &obsGroup)
store generated data into an ObsGroup