26 : dimensions_(dimensions), dtype_(
dtype), attr_data_() {
32 std::multiplies<std::size_t>());
47 std::size_t start = 0;
48 std::size_t npoints = 1;
49 for (std::size_t idim = 0; idim <
dimensions_.size(); ++idim) {
55 return shared_from_this();
65 std::size_t start = 0;
66 std::size_t npoints = 1;
67 for (std::size_t idim = 0; idim <
dimensions_.size(); ++idim) {
73 return shared_from_this();
81 const std::vector<std::size_t>& dims) {
83 attributes_.insert(std::pair<std::string, std::shared_ptr<Attribute>>(
name, att));
102 std::shared_ptr<Attribute> att =
open(oldName);
104 attributes_.insert(std::pair<std::string, std::shared_ptr<Attribute>>(newName, att));
108 std::vector<std::string> attrList;
110 attrList.push_back(iattr->first);
Functions for ObsStore Attribute and Has_Attributes.
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::size_t > dimensions_
holds dimension sizes (vector length is rank of dimensions)
ObsTypes dtype_
holds ObsStore data type
std::shared_ptr< Attribute > read(gsl::span< char > data, ObsTypes dtype)
transfer data from attribute
std::vector< std::size_t > get_dimensions() const
returns dimensions vector
bool isOfType(ObsTypes dtype) const
returns true if requested type matches stored type
std::unique_ptr< VarAttrStore_Base > attr_data_
container for attribute data values
std::pair< ObsTypes, size_t > dtype() const
returns the data type.
std::shared_ptr< Attribute > write(gsl::span< char > data, ObsTypes dtype)
transfer data into attribute
std::shared_ptr< Attribute > create(const std::string &name, const ioda::ObsStore::ObsTypes &dtype, const std::vector< std::size_t > &dims)
create a new attribute
std::shared_ptr< Attribute > open(const std::string &name) const
open an exsiting attribute (throws exception if not found)
void remove(const std::string &name)
remove attribtute from container
std::vector< std::string > list() const
returns a list of the names of attributes in the container
void rename(const std::string &oldName, const std::string &newName)
rename attribtute in container
std::map< std::string, std::shared_ptr< Attribute > > attributes_
container of attributes
bool exists(const std::string &name) const
returns true if attribute is in the container
VarAttrStore_Base * createVarAttrStore(ObsTypes dtype)
factory style function to create a new templated object
ObsTypes
ObsStore data type markers.