IODA
Layout_ObsGroup.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 /// \file Layout_ObsGroup.cpp
8 /// \brief Contains implementations for how data are arranged in ioda internally.
9 
11 
12 #include "ioda/Group.h"
13 #include "ioda/Layout.h"
14 #include "ioda/Misc/StringFuncs.h"
15 #include "ioda/defs.h"
16 
17 namespace ioda {
18 namespace detail {
23  // First, set an attribute to indicate that the data are managed
24  // by this data policy.
25  g.atts.add<std::string>("_ioda_layout", std::string("ObsGroup"));
26  g.atts.add<int32_t>("_ioda_layout_version", ObsGroup_Layout_Version);
27 
28  // Create the default containers - currently ignored as these are
29  // dynamically created.
30  /*
31  g.create("MetaData");
32  g.create("ObsBias");
33  g.create("ObsError");
34  g.create("ObsValue");
35  g.create("PreQC");
36  */
37 }
38 
39 std::string DataLayoutPolicy_ObsGroup::doMap(const std::string &str) const {
40  // If the string contains '@', then it needs to be broken into
41  // components and reversed. All other strings are passed through untouched.
42 
43  std::string out = convertV1PathToV2Path(str);
44  return out;
45 }
46 
47 std::string DataLayoutPolicy_ObsGroup::name() const { return std::string{"ObsGroup v1"}; }
48 
49 } // namespace detail
50 } // namespace ioda
Interfaces for ioda::Group and related classes.
Contains definitions for how data are arranged in ioda internally.
Contains definitions for how data are arranged in ioda internally.
void initializeStructure(Group_Base &) const override
std::string name() const override
A descriptive name for the policy.
static const int32_t ObsGroup_Layout_Version
Record versioning information for this layout in the ioda object. Provides forward compatability.
std::string doMap(const std::string &) const override
Map a user-specified Variable path to the correct location.
Hidden base class to prevent constructor confusion.
Definition: Group.h:42
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,...
Definition: StringFuncs.cpp:85