IODA
ObsSpaceParameters.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2021 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/ObsSpaceParameters.h"
9 
10 namespace ioda {
11 
12 void ObsTopLevelParameters::deserialize(util::CompositePath &path,
13  const eckit::Configuration &config) {
14  oops::Parameters::deserialize(path, config);
15 
16  // Check that only one set of options controlling the obsio is present.
17  const int numIoOptionsSet =
18  static_cast<int>(obsInFile.value() != boost::none) +
19  static_cast<int>(obsGenerate.value() != boost::none &&
20  obsGenerate.value()->random.value() != boost::none) +
21  static_cast<int>(obsGenerate.value() != boost::none &&
22  obsGenerate.value()->list.value() != boost::none) +
23  static_cast<int>(source.value() != boost::none);
24  if (numIoOptionsSet != 1)
25  throw eckit::UserError(
26  path.path() + ": Exactly one of the following options must be set: "
27  "obsdatain, generate.list, generate.random, source", Here());
28 
29  // Store the contents of the `obsdatain` or `generate` section (if present)
30  // in the `source` member variable.
31  if (obsInFile.value() != boost::none) {
32  eckit::LocalConfiguration sourceConfig;
33  obsInFile.value()->serialize(sourceConfig);
34  sourceConfig.set("type", "FileRead");
35 
36  eckit::LocalConfiguration config;
37  config.set("source", sourceConfig);
38  util::CompositePath path;
39  source.deserialize(path, config);
40  } else if (obsGenerate.value() != boost::none) {
41  const LegacyObsGenerateParameters &legacyParams = *obsGenerate.value();
42  eckit::LocalConfiguration sourceConfig;
43  // Store all these parameters at the root level of sourceConfig.
44  legacyParams.obsGrouping.serialize(sourceConfig);
45  legacyParams.maxFrameSize.serialize(sourceConfig);
46  legacyParams.obsErrors.serialize(sourceConfig);
47  if (legacyParams.list.value() != boost::none) {
48  legacyParams.list.value()->serialize(sourceConfig);
49  sourceConfig.set("type", "GenerateList");
50  } else if (legacyParams.random.value() != boost::none) {
51  legacyParams.random.value()->serialize(sourceConfig);
52  sourceConfig.set("type", "GenerateRandom");
53  }
54 
55  eckit::LocalConfiguration config;
56  config.set("source", sourceConfig);
57  util::CompositePath path;
58  source.deserialize(path, config);
59  }
60 }
61 
62 } // namespace ioda
Options in the 'generate' YAML section.
oops::Parameter< std::vector< float > > obsErrors
obs error estimates
oops::Parameter< ObsGroupingParameters > obsGrouping
options controlling obs record grouping
oops::OptionalParameter< EmbeddedObsGenerateRandomParameters > random
specification for generating using the random method
oops::OptionalParameter< EmbeddedObsGenerateListParameters > list
specification for generating using the list method
oops::Parameter< int > maxFrameSize
maximum frame size
oops::OptionalParameter< ObsFileInParameters > obsInFile
Fill this section to read observations from a file.
oops::OptionalParameter< LegacyObsGenerateParameters > obsGenerate
Fill this section to generate observations on the fly.
void deserialize(util::CompositePath &path, const eckit::Configuration &config) override
oops::OptionalParameter< ObsIoParametersWrapper > source
Fill this section instead of obsdatain and generate to load observations from any other source.