29 const std::vector<Dimensions_t>& max_dimensions,
const ObsTypes&
dtype,
31 : dimensions_(dimensions),
32 max_dimensions_(max_dimensions),
70 .
add(
"dimension index", i)
72 .
add(
"new_dim_sizes[i]", new_dim_sizes[i]);
83 std::size_t numElements = std::accumulate(new_dim_sizes.begin(), new_dim_sizes.end(), (
size_t)1,
84 std::multiplies<std::size_t>());
88 gsl::span<char> fillValue(fvalue.data(),
dtype_size_);
90 var_data_->resize(numElements, fillValue);
103 const std::shared_ptr<Variable> scale) {
108 const std::shared_ptr<Variable> scale) {
125 const std::shared_ptr<Variable> scale)
const {
134 var_data_->write(data, m_select, f_select);
135 return shared_from_this();
143 var_data_->read(data, m_select, f_select);
144 return shared_from_this();
152 const std::vector<Dimensions_t>& dims,
153 const std::vector<Dimensions_t>& max_dims,
159 std::shared_ptr<Variable> var;
164 std::shared_ptr<Group> group = parentGroup->create(
splitPaths[0]);
168 var = std::make_shared<Variable>(dims, max_dims,
dtype,
params);
169 variables_.insert(std::pair<std::string, std::shared_ptr<Variable>>(
name, var));
175 std::shared_ptr<Variable> var;
179 std::shared_ptr<Group> group = parentGroup->open(
splitPaths[0]);
191 bool varExists =
false;
196 std::shared_ptr<Group> group = parentGroup->open(
splitPaths[0]);
197 varExists = group->vars->exists(
splitPaths[1]);
209 std::shared_ptr<Group> group = parentGroup->open(
splitPaths[0]);
220 std::shared_ptr<Group> group = parentGroup->open(
splitPaths[0]);
223 std::shared_ptr<Variable> var =
open(oldName);
225 variables_.insert(std::pair<std::string, std::shared_ptr<Variable>>(newName, var));
230 std::vector<std::string> varList;
232 varList.push_back(ivar->first);
243 std::vector<std::string> splitPath;
244 auto pos = path.find_last_of(
'/');
245 splitPath.push_back(path.substr(0, pos));
246 if (pos != std::string::npos) {
247 splitPath.push_back(path.substr(pos + 1));
Functions for ObsStore Group and Has_Groups.
Functions for ObsStore Variable and Has_Variables.
The ioda exception class.
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
std::vector< std::string > list() const
returns a list of names of the variables in the container
static std::vector< std::string > splitGroupVar(const std::string &path)
split a path into groups and variable pieces
bool exists(const std::string &name) const
returns true if variable exists in the container
std::shared_ptr< Variable > create(const std::string &name, const ioda::ObsStore::ObsTypes &dtype, const std::vector< Dimensions_t > &dims, const std::vector< Dimensions_t > &max_dims, const VarCreateParams ¶ms)
create a new variable
std::shared_ptr< Variable > open(const std::string &name) const
open an existing variable (throws exception if not found)
void remove(const std::string &name)
remove variable
std::map< std::string, std::shared_ptr< Variable > > variables_
container of variables
void rename(const std::string &oldName, const std::string &newName)
rename variable
std::weak_ptr< Group > parent_group_
pointer to parent group
void setParentGroup(const std::shared_ptr< Group > &parentGroup)
set parent group pointer
detail::FillValueData_t fvdata_
Fill value information.
std::shared_ptr< Has_Attributes > impl_atts
implementation-specific attribute storage. Fill values, chunking, compression settings,...
std::string scale_name_
alias for this variable when it is serving as a dimension scale
void detachDimensionScale(const std::size_t dim_number, const std::shared_ptr< Variable > scale)
detach another variable that is servingas a scale (coordinate values)
detail::FillValueData_t getFillValue() const
Get the fill value.
void attachDimensionScale(const std::size_t dim_number, const std::shared_ptr< Variable > scale)
attach another variable to serve as a scale (holds coordinate values)
bool hasFillValue() const
Is there an associated fill value?
bool isDimensionScaleAttached(const std::size_t dim_number, const std::shared_ptr< Variable > scale) const
return true if the scale is attached to this variable
std::size_t dtype_size_
ObsStore data type.
bool isOfType(ObsTypes dtype) const
returns true if requested type matches stored type
void resize(const std::vector< Dimensions_t > &new_dim_sizes)
resizes dimensions (but cannot change dimensions themselves)
std::vector< Dimensions_t > get_dimensions() const
returns dimension sizes
std::vector< Dimensions_t > dimensions_
dimension sizes (length is rank of dimensions)
std::shared_ptr< Variable > write(gsl::span< char > data, ObsTypes dtype, Selection &m_select, Selection &f_select)
transfer data to variable storage
std::pair< ObsTypes, size_t > dtype() const
returns the data type.
void setIsDimensionScale(const std::string &name)
set this variable as a dimension scale
bool isDimensionScale() const
returns true if this is being used as a scale for another variable
std::vector< std::shared_ptr< Variable > > dim_scales_
pointers to associated dimension scales
std::vector< Dimensions_t > max_dimensions_
maximum dimension sizes (for resizing)
std::unique_ptr< VarAttrStore_Base > var_data_
container for variable data values
void getDimensionScaleName(std::string &name) const
get the dimension scale name
std::shared_ptr< Variable > read(gsl::span< char > data, ObsTypes dtype, Selection &m_select, Selection &f_select)
transfer data from variable storage
std::vector< Dimensions_t > get_max_dimensions() const
returns maximum dimension sizes
ObsTypes dtype_
ObsStore data type.
bool is_scale_
true if this variable is a dimension scale
IODA_DL std::vector< std::string > splitPaths(const std::string &p)
Split a string based on occurances of the '/' character.
@ ObsStore
ObsStore in-memory.
VarAttrStore_Base * createVarAttrStore(ObsTypes dtype)
factory style function to create a new templated object
ObsTypes
ObsStore data type markers.
parameters for creating a new variable
detail::FillValueData_t fvdata
Container used to store and manipulate fill values.