32 #if defined(__INTEL_COMPILER)
33 # pragma warning(push)
34 # pragma warning(disable : 444)
49 class Variable :
public std::enable_shared_from_this<Variable> {
77 Variable(
const std::vector<Dimensions_t>& dimensions,
78 const std::vector<Dimensions_t>& max_dimensions,
const ObsTypes&
dtype,
83 std::shared_ptr<Has_Attributes>
atts;
95 void resize(
const std::vector<Dimensions_t>& new_dim_sizes);
132 const std::shared_ptr<Variable> scale)
const;
160 static std::vector<std::string>
splitGroupVar(
const std::string& path);
173 const std::vector<Dimensions_t>& dims,
174 const std::vector<Dimensions_t>& max_dims,
178 std::shared_ptr<Variable>
open(
const std::string&
name)
const;
191 void rename(
const std::string& oldName,
const std::string& newName);
194 std::vector<std::string>
list()
const;
200 #if defined(__INTEL_COMPILER)
201 # pragma warning(pop)
Functions for ObsStore Attribute and Has_Attributes.
Fill value getters and setters.
Functions for ObsStore Selection.
Functions for ObsStore type markers.
Functions for ObsStore variable and attribute data storage.
Groups are a new implementation of ObsSpaces.
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
std::shared_ptr< Has_Attributes > atts
container for variable attributes
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
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
parameters for creating a new variable
gsl::span< char > fill_value
detail::FillValueData_t fvdata
Container used to store and manipulate fill values.