IODA
ObsIoGenerateUtils.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/io/ObsIoGenerateUtils.h"
9 
10 #include "ioda/Misc/Dimensions.h"
11 #include "ioda/ObsGroup.h"
13 
14 #include "oops/util/missingValues.h"
15 
16 namespace ioda {
17 
18 void storeGenData(const std::vector<float> & latVals,
19  const std::vector<float> & lonVals,
20  const std::vector<std::string> & dtStrings,
21  const std::vector<std::string> & obsVarNames,
22  const std::vector<float> & obsErrors,
23  ObsGroup &obsGroup) {
24  // Generated data is a set of vectors for now.
25  // MetaData group
26  // latitude
27  // longitude
28  // datetime
29  //
30  // ObsError group
31  // list of simulated variables in obsVarNames
32 
33  Variable nlocsVar = obsGroup.vars["nlocs"];
34 
35  float missingFloat = util::missingValue(missingFloat);
36  std::string missingString("missing");
37 
39  float_params.chunk = true;
40  float_params.compressWithGZIP();
41  float_params.setFillValue<float>(missingFloat);
42 
44  float_params.chunk = true;
45  float_params.compressWithGZIP();
46  float_params.setFillValue<std::string>(missingString);
47 
48  std::string latName("MetaData/latitude");
49  std::string lonName("MetaData/longitude");
50  std::string dtName("MetaData/datetime");
51 
52  // Create, write and attach units attributes to the variables
53  obsGroup.vars.createWithScales<float>(latName, { nlocsVar }, float_params)
54  .write<float>(latVals)
55  .atts.add<std::string>("units", std::string("degrees_east"));
56  obsGroup.vars.createWithScales<float>(lonName, { nlocsVar }, float_params)
57  .write<float>(lonVals)
58  .atts.add<std::string>("units", std::string("degrees_north"));
59  obsGroup.vars.createWithScales<std::string>(dtName, { nlocsVar }, string_params)
60  .write<std::string>(dtStrings)
61  .atts.add<std::string>("units", std::string("ISO 8601 format"));
62 
63  for (std::size_t i = 0; i < obsVarNames.size(); ++i) {
64  std::string varName = std::string("ObsError/") + obsVarNames[i];
65  std::vector<float> obsErrVals(latVals.size(), obsErrors[i]);
66  obsGroup.vars.createWithScales<float>(varName, { nlocsVar }, float_params)
67  .write<float>(obsErrVals);
68  }
69 }
70 
71 } // namespace ioda
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Interfaces for ioda::ObsGroup and related classes.
Interfaces for ioda::Variable and related classes.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
Variables store data!
Definition: Variable.h:680
DerivedHasAtts add(const std::string &attrname, ::gsl::span< const DataType > data, const ::std::vector< Dimensions_t > &dimensions)
Create and write an Attribute, for arbitrary dimensions.
Has_Variables vars
Use this to access variables.
Definition: Group.h:123
Variable createWithScales(const std::string &name, const std::vector< Variable > &dimension_scales, const VariableCreationParameters &params=VariableCreationParameters::defaulted< DataType >())
Convenience function to create a Variable from certain dimension scales.
Has_Attributes atts
Attributes.
Definition: Variable.h:71
string latName
Definition: 05-ObsGroup.py:118
string lonName
Definition: 05-ObsGroup.py:119
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
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57
VariableCreationParameters & setFillValue(DataType fill)
Definition: Has_Variables.h:69
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
Definition: Has_Variables.h:84