29 "An exception occurred inside ioda while constructing an ObsGroup.",
ioda_Here()));
39 "An exception occurred inside ioda while setting a layout policy.",
ioda_Here()));
44 std::shared_ptr<const detail::DataLayoutPolicy>) {
46 layout_->initializeStructure(*
this);
48 for (
const auto& f : fundamentalDims) {
53 out = {f->chunkingSize_};
56 p.
atts.
add(
"suggested_chunk_dim", f->chunkingSize_);
58 Type t = (f->dataTypeKnown_.isValid())
62 auto newvar =
vars.
create(f->name_, t, {f->size_}, {f->maxSize_}, p);
64 f->writeInitialData(newvar);
68 "An exception occurred inside ioda while building a new ObsGroup.",
ioda_Here()));
73 std::shared_ptr<const detail::DataLayoutPolicy> layout) {
76 res.setup(fundamentalDims, layout);
81 "An exception occurred inside ioda while building a new ObsGroup.",
ioda_Here()));
85 void ObsGroup::resize(
const std::vector<std::pair<Variable, ioda::Dimensions_t>>&
newDims) {
88 for (std::size_t i = 0; i <
newDims.size(); ++i) {
97 "An exception occurred inside ioda while resizing an ObsGroup.",
ioda_Here()));
102 const std::vector<std::pair<Variable, ioda::Dimensions_t>>&
newDims)
107 auto groupVars =
g.listObjects(ObjectType::Variable,
true)[ObjectType::Variable];
108 for (std::size_t i = 0; i < groupVars.size(); ++i) {
120 Variable var =
g.vars.open(groupVars[i]);
123 std::vector<Dimensions_t> varNewDims(varDims);
124 for (std::size_t idim = 0; idim < varDims.size(); ++idim) {
125 for (std::size_t inewdim = 0; inewdim <
newDims.size(); ++inewdim) {
127 varNewDims[idim] =
newDims[inewdim].second;
136 "An exception occurred inside ioda while resizing an ObsGroup.",
ioda_Here()));
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
The ioda exception class.
Groups are a new implementation of ObsSpaces.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
void setup(const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout)
Create ObsGroup objects.
std::shared_ptr< const detail::DataLayoutPolicy > layout_
Mapping policy.
void setLayout(std::shared_ptr< const detail::DataLayoutPolicy >)
Set the mapping policy to determine the Layout of Variables stored under this Group.
Represents the "type" (i.e. integer, string, float) of a piece of data.
DerivedHasAtts add(const std::string &attrname, ::gsl::span< const DataType > data, const ::std::vector< Dimensions_t > &dimensions)
Create and write an Attribute, for arbitrary dimensions.
static std::shared_ptr< const DataLayoutPolicy > generate(const std::string &polid="")
Factory generator.
Has_Variables vars
Use this to access variables.
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.
virtual void setLayout(std::shared_ptr< const detail::DataLayoutPolicy >)
virtual Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
virtual Type makeFundamentalType(std::type_index type) const
Make a basic object type, like a double, a float, or a char.
virtual Variable setIsDimensionScale(const std::string &dimensionScaleName)
Designate this table as a dimension scale.
virtual bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const
Is a dimension scale attached to this Variable in a certain position?
virtual bool isDimensionScale() const
Is this Variable used as a dimension scale?
virtual Dimensions getDimensions() const
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
std::vector< Dimensions_t > VecDimensions_t
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
virtual ~NewDimensionScale_Base()
Used to specify Variable creation-time properties.
Attribute_Creator_Store atts
Set any initial attributes here.
std::function< bool(const std::vector< Dimensions_t > &, std::vector< Dimensions_t > &)> fChunkingStrategy
Set variable chunking strategy. Used only if chunk == true and chunks.size() == 0.
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.