19 #include "boost/none_t.hpp"
20 #include "boost/optional.hpp"
21 #include "eckit/config/Configuration.h"
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/config/YAMLConfiguration.h"
24 #include "eckit/exception/Exceptions.h"
25 #include "eckit/filesystem/LocalPathName.h"
26 #include "eckit/filesystem/PathName.h"
27 #include "oops/util/parameters/Parameters.h"
31 #include <unordered_map>
40 const std::string &fileMappingName,
const std::vector<std::string> &nonODBVariables)
44 for (
auto const &str : nonODBVariables) {
50 const std::string &method) {
51 if (method !=
"concat") {
52 throw eckit::MethodNotYetImplemented(
"Concatenation is the only supported merge method.");
58 eckit::PathName yamlPath = nameMapFile;
59 eckit::YAMLConfiguration conf(yamlPath);
60 eckit::LocalConfiguration
ioda(conf,
"ioda");
71 if (variable.unit.value())
72 Mapping[variable.source] = {variable.name, {
true, *(variable.unit.value())}};
74 Mapping[variable.source] = {variable.name, {
false,
""}};
85 Mapping[str] = {str, {
false,
""}};
92 if (variable.outputVariableDataType.value() !=
"string") {
93 throw eckit::MethodNotYetImplemented(
"YAML mapping file: the output variable "
94 "data type for a derived variable is not "
98 if (std::find(variable.inputNames.value().begin(), variable.inputNames.value().end(),
99 variable.outputName.value()) != variable.inputNames.value().end()) {
100 throw eckit::ReadError(std::string(
"YAML mapping file has a complementary variable name") +
101 std::string(
"matching a derived variable name."));
103 std::type_index outputTypeIndex =
typeid(std::string);
105 std::shared_ptr<ComplementaryVariableOutputMetadata> sharedOutputMetaData(
107 variable.
outputName, outputTypeIndex, mergeMethod, 0});
108 size_t inputIndex = 0;
109 for (
const std::string &input : variable.inputNames.value()) {
113 sharedOutputMetaData->inputVariableCount = inputIndex;
120 g.atts.add<std::string>(
"_ioda_layout", std::string(
"ObsGroup_ODB"));
138 std::string mappedStr;
141 mappedStr = (it->second).iodaName;
160 for (
const std::pair<std::string, variableStorageInformation> &entry :
Mapping) {
161 if (entry.second.iodaName == output)
164 for (
const std::pair<std::string, complementaryVariableMetaData> &entry :
166 if (entry.second.second->outputName == output)
175 throw eckit::ReadError(input +
" was not found to be a complementary variable.");
182 throw eckit::ReadError(input + std::string(
" was not found to be a complementary variable."));
187 const std::string &input)
const
190 throw eckit::ReadError(input +
" was not found to be a complementary variable.");
195 const std::string &input)
const
198 throw eckit::ReadError(input +
" was not found to be a complementary variable.");
203 const std::string &input)
const
206 throw eckit::ReadError(input +
" was not found to be a complementary variable.");
211 const std::string & input)
const {
213 throw eckit::ReadError(input +
" was not found to to be an ODB source variable.");
215 return (
Mapping.at(input)).inputUnit;
Interfaces for ioda::Group and related classes.
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how ODB data are arranged in ioda internally.
Defines all of the information which should be stored in the YAML mapping file.
The ioda exception class.
DataLayoutPolicy::MergeMethod getMergeMethod(const std::string &) const override
std::string doMap(const std::string &) const override
Map a user-specified Variable path to the correct location.
std::unordered_map< std::string, variableStorageInformation > Mapping
Mapping with ODB equivalents as keys and IODA naming/unit pairs as values.
DataLayoutPolicy::MergeMethod parseMergeMethod(const std::string &)
size_t getInputsNeeded(const std::string &) const override
virtual ~DataLayoutPolicy_ObsGroup_ODB()
std::string getOutputNameFromComponent(const std::string &) const override
const int32_t ObsGroup_ODB_Layout_Version
Record versioning information for this layout in the ioda object. Provides forward compatability.
DataLayoutPolicy_ObsGroup_ODB(const std::string &, const std::vector< std::string > &={})
void initializeStructure(Group_Base &) const override
bool isComplementary(const std::string &) const override
Check if the named variable will be a part of a derived variable.
void parseComponentVariables()
std::string name() const override
A descriptive name for the policy.
std::pair< bool, std::string > getUnit(const std::string &) const override
std::unordered_map< std::string, complementaryVariableMetaData > complementaryVariableDataMap
void parseMappingFile(const std::string &)
bool isMapped(const std::string &) const override
Check if the named variable is in the Variables section of the ODB mapping file.
size_t getComplementaryPosition(const std::string &) const override
std::shared_ptr< ODBLayoutParameters > mappingParams_
void addUnchangedVariableName(const std::string &)
std::type_index getOutputVariableDataType(const std::string &) const override
bool isMapOutput(const std::string &) const override
Check if the named variable matches one of the output (ioda) names.
@ Concat
Concatenate complementary variables entry-by-entry.
Hidden base class to prevent constructor confusion.
Common preprocessor definitions used throughout IODA.
IODA_DL std::string convertV1PathToV2Path(const std::string &path)
Split path into substrings separated by @ characters, then concatenate them in reverse order,...