IODA
|
Layout for ObsGroup-like data. More...
#include <Layout_ObsGroup.h>
Public Member Functions | |
virtual | ~DataLayoutPolicy_ObsGroup () |
void | initializeStructure (Group_Base &) const override |
std::string | doMap (const std::string &) const override |
Map a user-specified Variable path to the correct location. More... | |
DataLayoutPolicy_ObsGroup () | |
std::string | name () const override |
A descriptive name for the policy. More... | |
![]() | |
virtual | ~DataLayoutPolicy () |
virtual bool | isComplementary (const std::string &) const |
Check if the named variable will be a part of a derived variable. More... | |
virtual bool | isMapped (const std::string &) const |
Check if the named variable is in the Variables section of the ODB mapping file. More... | |
virtual bool | isMapOutput (const std::string &) const |
Check if the named variable matches one of the output (ioda) names. More... | |
virtual size_t | getComplementaryPosition (const std::string &) const |
virtual std::string | getOutputNameFromComponent (const std::string &) const |
virtual std::type_index | getOutputVariableDataType (const std::string &) const |
virtual MergeMethod | getMergeMethod (const std::string &) const |
virtual size_t | getInputsNeeded (const std::string &) const |
virtual std::pair< bool, std::string > | getUnit (const std::string &) const |
DataLayoutPolicy () | |
Static Private Attributes | |
static const int32_t | ObsGroup_Layout_Version = 0 |
Record versioning information for this layout in the ioda object. Provides forward compatability. More... | |
Additional Inherited Members | |
![]() | |
enum class | Policies { None , ObsGroup , ObsGroupODB } |
enum class | MergeMethod { Concat } |
![]() | |
static std::shared_ptr< const DataLayoutPolicy > | generate (const std::string &polid="") |
Factory generator. More... | |
static std::shared_ptr< const DataLayoutPolicy > | generate (const std::string &polid, const std::string &mapPath, const std::vector< std::string > &nonODBVariables={}) |
static std::shared_ptr< const DataLayoutPolicy > | generate (Policies pol=Policies::None) |
Factory generator. More... | |
static std::shared_ptr< const DataLayoutPolicy > | generate (Policies pol, const std::string &mapPath, const std::vector< std::string > &nonODBVariables={}) |
static std::shared_ptr< const DataLayoutPolicy > | _py_generate1 (const std::string &polid) |
static std::shared_ptr< const DataLayoutPolicy > | _py_generate2 (Policies pol) |
Layout for ObsGroup-like data.
Definition at line 26 of file Layout_ObsGroup.h.
|
virtualdefault |
|
default |
|
overridevirtual |
Map a user-specified Variable path to the correct location.
This allows us to keep the frontend paths consistent, and we can instead do a path transformation to hide implementation details from end users.
The default policy is to pass paths expressed with forward slashes ("MetaData/Longitude") unchanged. If we pass paths using '@' notation, then reverse the path component (i.e. "TB@ObsValue" becomes "ObsValue/TB").
inStr | is the user-provided string. Ex: "TB@ObsValue" or "MetaData/Latitude", or even a fundamental dimension ("ChannelNumber"). |
Reimplemented from ioda::detail::DataLayoutPolicy.
Definition at line 39 of file Layout_ObsGroup.cpp.
|
overridevirtual |
Create default groups and write default attributes upon object creation / initialization.
Reimplemented from ioda::detail::DataLayoutPolicy.
Definition at line 22 of file Layout_ObsGroup.cpp.
|
overridevirtual |
A descriptive name for the policy.
Reimplemented from ioda::detail::DataLayoutPolicy.
Definition at line 47 of file Layout_ObsGroup.cpp.
|
staticprivate |
Record versioning information for this layout in the ioda object. Provides forward compatability.
Definition at line 29 of file Layout_ObsGroup.h.