8 #include "ioda/ObsSpaceParameters.h"
13 const eckit::Configuration &config) {
14 oops::Parameters::deserialize(path, config);
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 &&
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());
32 eckit::LocalConfiguration sourceConfig;
33 obsInFile.value()->serialize(sourceConfig);
34 sourceConfig.set(
"type",
"FileRead");
36 eckit::LocalConfiguration config;
37 config.set(
"source", sourceConfig);
38 util::CompositePath path;
39 source.deserialize(path, config);
42 eckit::LocalConfiguration 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");
55 eckit::LocalConfiguration config;
56 config.set(
"source", sourceConfig);
57 util::CompositePath path;
58 source.deserialize(path, config);
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.