29 #if defined(__INTEL_COMPILER)
30 # pragma warning(push)
31 # pragma warning(disable : 444)
34 class Attribute :
public std::enable_shared_from_this<Attribute> {
74 std::map<std::string, std::shared_ptr<Attribute>>
attributes_;
85 const std::vector<std::size_t>& dims);
89 std::shared_ptr<Attribute>
open(
const std::string&
name)
const;
102 void rename(
const std::string& oldName,
const std::string& newName);
105 std::vector<std::string>
list()
const;
107 #if defined(__INTEL_COMPILER)
108 # pragma warning(pop)
Functions for ObsStore Selection.
Functions for ObsStore type markers.
Functions for ObsStore variable and attribute data storage.
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::size_t dtype_size_
ObsStore data type.
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
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.