19 #include "ioda/config.h"
21 #if (eckit_FOUND && oops_FOUND)
22 # define ENABLE_ODB_LAYOUT
29 if (polid ==
"ObsGroup") {
30 return std::make_shared<DataLayoutPolicy_ObsGroup>();
31 }
else if (polid ==
"ObsGroupODB") {
32 throw Exception(
"A mapping file is required for the ODB Data Layout Policy.",
ioda_Here());
34 return std::make_shared<DataLayoutPolicy>();
39 return std::make_shared<DataLayoutPolicy_ObsGroup>();
41 throw Exception(
"A mapping file is required for the ODB Data Layout Policy.",
ioda_Here());
43 return std::make_shared<DataLayoutPolicy>();
47 const std::string &polid,
const std::string &mapPath,
48 const std::vector<std::string> &nonODBVariables) {
49 std::string errorMessage;
50 if (polid !=
"ObsGroupODB")
51 errorMessage =
"A mapping file is not relevant for the policy '" + polid +
"'.";
54 #ifdef ENABLE_ODB_LAYOUT
55 return std::make_shared<DataLayoutPolicy_ObsGroup_ODB>(mapPath, nonODBVariables);
57 errorMessage =
"Cannot generate the policy '" + polid +
"', as either eckit or oops are disabled.";
63 Policies pol,
const std::string &mapPath,
const std::vector<std::string> &nonODBVariables) {
68 policyId =
"ObsGroup";
70 policyId =
"ObsGroupODB";
72 std::string errorMessage;
74 errorMessage =
"A mapping file is not relevant for the policy '" + policyId +
"'.";
77 #ifdef ENABLE_ODB_LAYOUT
78 return std::make_shared<DataLayoutPolicy_ObsGroup_ODB>(mapPath, nonODBVariables);
80 errorMessage =
"Cannot generate the policy '" + policyId +
81 "', as eckit or oops are disabled.";
103 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
107 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
111 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
115 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
119 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
123 throw Exception(
"Illogical operation for non-ODB data layout policies.",
ioda_Here());
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how ODB data are arranged in ioda internally.
The ioda exception class.
virtual size_t getComplementaryPosition(const std::string &) const
virtual std::type_index getOutputVariableDataType(const std::string &) const
virtual std::pair< bool, std::string > getUnit(const std::string &) const
static std::shared_ptr< const DataLayoutPolicy > generate(const std::string &polid="")
Factory generator.
virtual MergeMethod getMergeMethod(const std::string &) const
virtual bool isComplementary(const std::string &) const
Check if the named variable will be a part of a derived variable.
virtual bool isMapped(const std::string &) const
Check if the named variable is in the Variables section of the ODB mapping file.
virtual std::string getOutputNameFromComponent(const std::string &) const
virtual ~DataLayoutPolicy()
@ None
Do no manipulation of the Group / Variable layout.
virtual void initializeStructure(Group_Base &) const
virtual std::string name() const
A descriptive name for the policy.
virtual std::string doMap(const std::string &) const
Map a user-specified Variable path to the correct location.
virtual size_t getInputsNeeded(const std::string &) const
virtual bool isMapOutput(const std::string &) const
Check if the named variable matches one of the output (ioda) names.
Hidden base class to prevent constructor confusion.
Common preprocessor definitions used throughout IODA.