IODA
|
The main data storage methods and objects in IODA. More...
Files | |
file | Fill.h |
Fill value getters and setters. | |
file | FillPolicy.h |
Default fill values for ioda files. | |
file | Has_Variables.h |
Interfaces for ioda::Has_Variables and related classes. | |
file | Selection.h |
Dataspace selections for reading and writing ioda::Variable data. | |
file | Variable.h |
Interfaces for ioda::Variable and related classes. | |
Classes | |
struct | ioda::Dimensions |
Describes the dimensions of an Attribute or Variable. More... | |
struct | ioda::detail::FillValueData_t |
Container used to store and manipulate fill values. More... | |
struct | ioda::VariableCreationParameters |
Used to specify Variable creation-time properties. More... | |
class | ioda::detail::Has_Variables_Base |
class | ioda::Has_Variables |
This class exists inside of ioda::Group and provides the interface to manipulating Variables. More... | |
struct | ioda::Selections::InstantiatedSelection |
An opaque object used to store a selection for direct processing by a backend. More... | |
class | ioda::Selection |
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writing. More... | |
struct | ioda::Selection::SingleSelection |
Represents a hyperslab or a series of points in a selection, coupled with a SelectionOperator "action". More... | |
class | ioda::detail::Variable_Base< Variable_Implementation > |
Exists to prevent constructor conflicts when passing a backend into a frontend object. More... | |
class | ioda::Variable |
Variables store data! More... | |
Typedefs | |
typedef std::shared_ptr< InstantiatedSelection > | ioda::Selections::SelectionBackend_t |
typedef std::vector< Dimensions_t > | ioda::Selection::VecDimensions_t |
Enumerations | |
enum class | ioda::FillValuePolicy { ioda::HDF5 , ioda::NETCDF4 } |
This option describes the default fill values that will be used if the user does not manually specify a fill value. More... | |
enum class | ioda::SelectionOperator { ioda::SET , ioda::OR , ioda::AND , ioda::XOR , ioda::NOT_B , ioda::NOT_A , ioda::APPEND , ioda::PREPEND } |
Selection enum. More... | |
enum class | ioda::SelectionState { ioda::ALL , ioda::NONE } |
The "default" for the selection. More... | |
The main data storage methods and objects in IODA.
typedef std::shared_ptr<InstantiatedSelection> ioda::Selections::SelectionBackend_t |
Definition at line 35 of file Selection.h.
typedef std::vector<Dimensions_t> ioda::Selection::VecDimensions_t |
Definition at line 50 of file Selection.h.
|
strong |
This option describes the default fill values that will be used if the user does not manually specify a fill value.
Enumerator | |
---|---|
HDF5 | Set all fill values to zero or null strings. |
NETCDF4 | Use NetCDF4 default fill values. This is the default option for ioda files. |
Definition at line 28 of file FillPolicy.h.
|
strong |
Selection enum.
Enumerator | |
---|---|
SET | |
OR | |
AND | |
XOR | |
NOT_B | |
NOT_A | |
APPEND | |
PREPEND |
Definition at line 24 of file Selection.h.
|
strong |
|
inline |
Definition at line 92 of file Selection.h.
|
inline |
Definition at line 89 of file Selection.h.
|
inline |
Definition at line 81 of file Selection.h.
|
inline |
Definition at line 77 of file Selection.h.
|
inline |
Definition at line 83 of file Selection.h.
|
virtualdefault |
|
inline |
Definition at line 94 of file Selection.h.
void ioda::FillValuePolicies::applyFillValuePolicy | ( | FillValuePolicy | pol, |
detail::FillValueData_t & | fvd | ||
) |
Applies the fill value policy. This sets default fill values when fill values are not already provided.
Definition at line 108 of file FillPolicy.h.
void ioda::detail::assignFillValue | ( | FillValueData_t & | data, |
T | val | ||
) |
|
inline |
|
inline |
Return the cached selection object.
Definition at line 123 of file Selection.h.
Selections::SelectionBackend_t ioda::Selection::concretize | ( | const Variable & | var | ) | const |
Talk to the backend and generate the appropriate selection object.
Definition at line 18 of file Selection.cpp.
|
inline |
Definition at line 124 of file Selection.h.
|
inline |
Definition at line 116 of file Selection.h.
|
inline |
Provide the dimensions of the object that you are selecting from.
Definition at line 111 of file Selection.h.
|
inline |
|
inline |
T ioda::detail::getFillValue | ( | FillValueData_t & | data | ) |
|
inline |
|
inline |
|
inline |
Ditch the concretized selection.
Definition at line 129 of file Selection.h.
|
inline |
Is the selection already cached in the backend?
Definition at line 127 of file Selection.h.
T ioda::FillValuePolicies::netCDF4_default | ( | ) |
Definition at line 52 of file FillPolicy.h.
|
inline |
Append a new selection.
Definition at line 103 of file Selection.h.
|
inline |
Shift the selection by an offset.
Definition at line 96 of file Selection.h.
|
private |
Definition at line 141 of file Selection.h.
|
static |
Definition at line 131 of file Selection.h.
|
mutableprivate |
Using an opaque object to implement a cache of the Selection for a backend.
This allows the selection to be reused without expensive repetitive recomputation. Any new manipulation invalidates backend_.
Definition at line 138 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::block_ |
Definition at line 70 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::count_ |
Definition at line 70 of file Selection.h.
|
private |
Definition at line 140 of file Selection.h.
size_t ioda::Selection::SingleSelection::dimension_ |
Definition at line 74 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::dimension_indices_counts_ |
Definition at line 75 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::dimension_indices_starts_ |
Definition at line 75 of file Selection.h.
|
private |
The extent is the dimensions of the object that you are selecting from.
Definition at line 145 of file Selection.h.
|
static |
Definition at line 132 of file Selection.h.
|
private |
The offset is a way to quickly shift the selection.
Definition at line 143 of file Selection.h.
SelectionOperator ioda::Selection::SingleSelection::op_ |
Definition at line 68 of file Selection.h.
std::vector<VecDimensions_t> ioda::Selection::SingleSelection::points_ |
Definition at line 72 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::start_ |
Definition at line 70 of file Selection.h.
VecDimensions_t ioda::Selection::SingleSelection::stride_ |
Definition at line 70 of file Selection.h.