IODA
|
#include <Has_Variables.h>
Public Member Functions | |
virtual | ~Has_Variables_Base () |
virtual void | setLayout (std::shared_ptr< const detail::DataLayoutPolicy >) |
virtual Type_Provider * | getTypeProvider () const |
Query the backend and get the type provider. More... | |
virtual FillValuePolicy | getFillValuePolicy () const |
Get the fill value policy used for Variables within this Group. More... | |
General Functions | |
virtual bool | exists (const std::string &name) const |
Does a Variable with the specified name exist? More... | |
virtual void | remove (const std::string &name) |
Delete an Attribute with the specified name. More... | |
virtual Variable | open (const std::string &name) const |
Open a Variable by name. More... | |
Variable | operator[] (const std::string &name) const |
Open a Variable by name. More... | |
virtual std::vector< std::string > | list () const |
std::vector< std::string > | operator() () const |
void | stitchComplementaryVariables (bool removeOriginals=true) |
Combines all complementary variables as specified in the mapping file, opens them, and optionally removes the originals from the ObsGroup. More... | |
void | convertVariableUnits (std::ostream &out=std::cerr) |
Converts unit to SI for all eligible variables. If conversion function not defined, stores unit as attribute. More... | |
virtual Variable | create (const std::string &name, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters()) |
Create a Variable without setting its data. More... | |
Variable | _create_py (const std::string &name, BasicTypes dataType, const std::vector< Dimensions_t > &cur_dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const std::vector< Variable > &dimension_scales={}, const VariableCreationParameters ¶ms=VariableCreationParameters()) |
Variable | create (const std::string &name, const Type &in_memory_dataType, const ioda::Dimensions &dims, const VariableCreationParameters ¶ms=VariableCreationParameters()) |
template<class DataType > | |
Variable | create (const std::string &name, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >()) |
Create a Variable without setting its data. More... | |
template<class DataType > | |
Variable | create (const std::string &name, const ioda::Dimensions &dims, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >()) |
template<class DataType > | |
Variable | createWithScales (const std::string &name, const std::vector< Variable > &dimension_scales, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >()) |
Convenience function to create a Variable from certain dimension scales. More... | |
void | createWithScales (const NewVariables_t &newvars) |
Collective function optimized to mass-construct variables and attach scales. More... | |
Collective functions | |
These functions apply the an operation to a set of variables in situations where such an operation would produce better performance results than a loop of serial function calls. | |
virtual void | attachDimensionScales (const std::vector< std::pair< Variable, std::vector< Variable >>> &mapping) |
Attach dimension scales to many Dimension Numbers in a set of Variables. More... | |
Protected Member Functions | |
Has_Variables_Base (std::shared_ptr< Has_Variables_Backend >, std::shared_ptr< const DataLayoutPolicy >=nullptr) | |
Private Member Functions | |
ComplementaryVariableCreationParameters | createDerivedVariableParameters (const std::string &inputName, const std::string &outputName, size_t position) |
std::vector< std::vector< std::string > > | loadComponentVariableData (const ComplementaryVariableCreationParameters &derivedVariableParams) |
Static Private Member Functions | |
static void | _py_fvp_helper (BasicTypes dataType, FillValuePolicy &fvp, VariableCreationParameters ¶ms) |
FillValuePolicy helper. More... | |
Private Attributes | |
std::shared_ptr< Has_Variables_Backend > | backend_ |
Using an opaque object to implement the backend. More... | |
std::shared_ptr< const detail::DataLayoutPolicy > | layout_ |
Set by ObsGroup. More... | |
std::vector< ComplementaryVariableCreationParameters > | complementaryVariables_ |
Definition at line 199 of file Has_Variables.h.
|
protected |
|
virtualdefault |
Variable ioda::detail::Has_Variables_Base::_create_py | ( | const std::string & | name, |
BasicTypes | dataType, | ||
const std::vector< Dimensions_t > & | cur_dimensions = {1} , |
||
const std::vector< Dimensions_t > & | max_dimensions = {} , |
||
const std::vector< Variable > & | dimension_scales = {} , |
||
const VariableCreationParameters & | params = VariableCreationParameters() |
||
) |
Python compatability function
Definition at line 261 of file Has_Variables.cpp.
|
staticprivate |
FillValuePolicy helper.
Hides the template function calls, so that the headers are smaller.
Definition at line 301 of file Has_Variables.cpp.
|
virtual |
Attach dimension scales to many Dimension Numbers in a set of Variables.
DimensionNumber | |
mapping | is the scale mappings for each variable. The first part of the pair refers to the variable that you are attaching scales to. The second part is a sequence of scales that are attached along each dimension (indexed by the vector). |
For some backends, particularly HDF5, attaching a dimension scale to a variable is a slow procedure when you have many variables. This function batches low-level calls and avoids loops.
Reimplemented in ioda::detail::Has_Variables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 335 of file Has_Variables.cpp.
void ioda::detail::Has_Variables_Base::convertVariableUnits | ( | std::ostream & | out = std::cerr | ) |
Converts unit to SI for all eligible variables. If conversion function not defined, stores unit as attribute.
Makes the conversion if the variable's unit is defined in the mapping file and the unit conversion is defined in UnitConversions.h.
Definition at line 177 of file Has_Variables.cpp.
|
inline |
Definition at line 332 of file Has_Variables.h.
|
inline |
Create a Variable without setting its data.
DataType | is the type of the data. I.e. float, int32_t, uint16_t, std::string, etc. |
name | is the name of the Variable. |
dimensions | is a vector representing the size of the metadata. Each element of the vector is a dimension with a certain size. |
Definition at line 316 of file Has_Variables.h.
|
inline |
Definition at line 303 of file Has_Variables.h.
|
virtual |
Create a Variable without setting its data.
attrname | is the name of the Variable. |
dimensions | is a vector representing the size of the metadata. Each element of the vector is a dimension with a certain size. |
in_memory_datatype | is the runtime description of the Attribute's data type. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 362 of file Has_Variables.cpp.
|
private |
void ioda::detail::Has_Variables_Base::createWithScales | ( | const NewVariables_t & | newvars | ) |
Collective function optimized to mass-construct variables and attach scales.
newvars | is a vector of the new variables to be created. |
Definition at line 392 of file Has_Variables.cpp.
|
inline |
Convenience function to create a Variable from certain dimension scales.
DataType | is the type of the data. I.e. int, int32_t, uint16_t, std::string, etc. |
name | is the name of the Variable. |
dimensions | is a vector representing the size of the metadata. Each element of the vector is a dimension with a certain size. |
Definition at line 351 of file Has_Variables.h.
|
virtual |
Does a Variable with the specified name exist?
name | is the name of the Variable that we are looking for. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 70 of file Has_Variables.cpp.
|
virtual |
Get the fill value policy used for Variables within this Group.
The backend has to be consulted for this operation. Storage of this policy is backend-dependent.
Reimplemented in ioda::detail::Has_Variables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 42 of file Has_Variables.cpp.
|
virtual |
Query the backend and get the type provider.
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 58 of file Has_Variables.cpp.
|
virtual |
List all Variables under this group (one-level search).
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 248 of file Has_Variables.cpp.
|
private |
Definition at line 228 of file Has_Variables.cpp.
|
virtual |
Open a Variable by name.
name | is the name of the Variable to be opened. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 98 of file Has_Variables.cpp.
|
inline |
Convenience function to list all Variables under this group (one-level search).
Definition at line 265 of file Has_Variables.h.
|
inline |
Open a Variable by name.
name | is the name of the Variable to be opened. |
Definition at line 256 of file Has_Variables.h.
|
virtual |
Delete an Attribute with the specified name.
attname | is the name of the Variable that we are deleting. |
jedi::xError | if no such attribute exists. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_HasVariables_Backend, and ioda::detail::Engines::HH::HH_HasVariables.
Definition at line 84 of file Has_Variables.cpp.
|
virtual |
Set the mapping policy to determine the Layout of Variables stored under this Group. Usually only set by ObsGroup when we create / open.
Definition at line 38 of file Has_Variables.cpp.
void ioda::detail::Has_Variables_Base::stitchComplementaryVariables | ( | bool | removeOriginals = true | ) |
Combines all complementary variables as specified in the mapping file, opens them, and optionally removes the originals from the ObsGroup.
removeOriginals
determines if the original complementary variables should be removed from the ObsGroup. Later functionality will ensure that the original complementary variables can be recreated on writing back to the original file.
Definition at line 112 of file Has_Variables.cpp.
|
private |
Using an opaque object to implement the backend.
Definition at line 203 of file Has_Variables.h.
|
private |
Definition at line 206 of file Has_Variables.h.
|
private |
Set by ObsGroup.
Definition at line 205 of file Has_Variables.h.