16 #include <gsl/gsl-lite.hpp>
37 struct Named_Variable;
39 class Has_Variables_Backend;
40 class Has_Variables_Base;
41 class DataLayoutPolicy;
49 inline bool Chunking_Max(
const std::vector<Dimensions_t>& in, std::vector<Dimensions_t>& out) {
68 template <
class DataType>
70 detail::assignFillValue<DataType>(fillValue_, fill);
74 fillValue_.
set_ =
false;
89 std::function<bool(
const std::vector<Dimensions_t>&, std::vector<Dimensions_t>&)>
93 std::vector<Dimensions_t>
getChunks(
const std::vector<Dimensions_t>& cur_dims)
const {
95 std::vector<Dimensions_t> res;
96 if (fChunkingStrategy(cur_dims, res))
return res;
103 unsigned int szip_PixelsPerBlock_ = 16;
104 unsigned int szip_options_ = 4;
107 void compressWithGZIP(
int level = 6);
108 void compressWithSZIP(
unsigned PixelsPerBlock = 16,
unsigned options = 4);
121 template<
class DataType>
129 template <
class DataType>
131 return defaulted<DataType>();
166 : name_(
name), dataType_(typeid(void)), dataTypeKnown_(dataType),
180 template <
class DataType>
184 return std::make_shared<NewVariable_Base>(
name,
typeid(DataType), scales,
params);
188 const Type& DataType,
192 return std::make_shared<NewVariable_Base>(
name, DataType, scales,
params);
205 std::shared_ptr<const detail::DataLayoutPolicy>
layout_;
213 const std::string &inputName,
const std::string &outputName,
size_t position);
214 std::vector<std::vector<std::string>> loadComponentVariableData(
219 std::shared_ptr<const DataLayoutPolicy> =
nullptr);
226 virtual void setLayout(std::shared_ptr<const detail::DataLayoutPolicy>);
244 virtual bool exists(
const std::string&
name)
const;
248 virtual void remove(
const std::string&
name);
261 virtual std::vector<std::string> list()
const;
265 inline std::vector<std::string>
operator()()
const {
return list(); }
273 void stitchComplementaryVariables(
bool removeOriginals =
true);
280 void convertVariableUnits(std::ostream &out = std::cerr);
288 virtual Variable create(
const std::string&
name,
const Type& in_memory_dataType,
289 const std::vector<Dimensions_t>& dimensions = {1},
290 const std::vector<Dimensions_t>& max_dimensions = {},
291 const VariableCreationParameters&
params = VariableCreationParameters());
297 const std::vector<Dimensions_t>& cur_dimensions = {1},
298 const std::vector<Dimensions_t>& max_dimensions = {},
299 const std::vector<Variable>& dimension_scales = {},
300 const VariableCreationParameters&
params
301 = VariableCreationParameters());
315 template <
class DataType>
317 const std::vector<Dimensions_t>& max_dimensions = {},
321 FillValuePolicies::applyFillValuePolicy<DataType>(getFillValuePolicy(), params2.
fillValue_);
322 Type in_memory_dataType = Types::GetType<DataType>(getTypeProvider());
323 auto var = create(
name, in_memory_dataType, dimensions,
324 max_dimensions, params2);
327 std::throw_with_nested(Exception(
ioda_Here()));
331 template <
class DataType>
334 = VariableCreationParameters::defaulted<DataType>()) {
337 FillValuePolicies::applyFillValuePolicy<DataType>(getFillValuePolicy(), params2.
fillValue_);
350 template <
class DataType>
352 const std::vector<Variable>& dimension_scales,
354 = VariableCreationParameters::defaulted<DataType>()) {
356 Type in_memory_dataType = Types::GetType<DataType>(getTypeProvider());
359 createWithScales(newvars);
387 virtual void attachDimensionScales(
388 const std::vector<std::pair<
Variable, std::vector<Variable>>>& mapping);
400 void attachDimensionScales(
401 const std::vector<std::pair<
Variable, std::vector<Variable>>>& mapping)
override;
416 Has_Variables(std::shared_ptr<detail::Has_Variables_Backend>,
417 std::shared_ptr<const detail::DataLayoutPolicy> =
nullptr);
Flywheel creation of ioda::Attribute.
Convenience functions to work with Eigen objects.
Default fill values for ioda files.
Contains definitions for how data are arranged in ioda internally.
Utility functions and structs for combining multiple variables into one.
Interfaces for ioda::Type and related classes.
Interfaces for ioda::Variable and related classes.
Flywheel creation of ioda::Attribute objects.This is needed because you might want to make the same A...
The ioda exception class.
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
Represents the "type" (i.e. integer, string, float) of a piece of data.
virtual ~Has_Variables_Backend()
Variable create(const std::string &name, const ioda::Dimensions &dims, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >())
std::shared_ptr< const detail::DataLayoutPolicy > layout_
Set by ObsGroup.
std::vector< std::string > operator()() const
Variable createWithScales(const std::string &name, const std::vector< Variable > &dimension_scales, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >())
Convenience function to create a Variable from certain dimension scales.
virtual ~Has_Variables_Base()
std::vector< ComplementaryVariableCreationParameters > complementaryVariables_
std::shared_ptr< Has_Variables_Backend > backend_
Using an opaque object to implement the backend.
Variable create(const std::string &name, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >())
Create a Variable without setting its data.
Variable operator[](const std::string &name) const
Open a Variable by name.
Variable create(const std::string &name, const Type &in_memory_dataType, const ioda::Dimensions &dims, const VariableCreationParameters ¶ms=VariableCreationParameters())
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
@ NETCDF4
Use NetCDF4 default fill values. This is the default option for ioda files.
bool Chunking_Max(const std::vector< Dimensions_t > &in, std::vector< Dimensions_t > &out)
Convenience function for setting default chunking parameters.
std::vector< std::shared_ptr< NewVariable_Base > > NewVariables_t
std::vector< Variable > NewVariables_Scales_t
std::shared_ptr< NewVariable_Base > NewVariable(const std::string &name, const NewVariables_Scales_t &scales, const VariableCreationParameters ¶ms=VariableCreationParameters::defaulted< DataType >())
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
std::vector< Dimensions_t > dimsMax
This must always equal dimsCur for Attribute.
Used to specify a new variable with the collective createWithScales function.
std::string name_
Name of the variable.
VariableCreationParameters vcp_
Var creation params.
NewVariable_Base(const std::string &name, const Type &dataType, const NewVariables_Scales_t &scales, const VariableCreationParameters ¶ms)
NewVariable_Base(const std::string &name, const std::type_index &dataType, const NewVariables_Scales_t &scales, const VariableCreationParameters ¶ms)
Type dataTypeKnown_
Type of the new dimension. Used if a type is passed directly.
std::type_index dataType_
Type of the new dimension. Int, char, etc. Used if a type is not passed directly.
NewVariables_Scales_t scales_
Dimension scales.
virtual ~NewVariable_Base()
Used to specify Variable creation-time properties.
static VariableCreationParameters defaulted()
detail::python_bindings::VariableCreationFillValues< VariableCreationParameters > _py_setFillValue
void compressWithGZIP(int level=6)
Attribute_Creator_Store atts
Set any initial attributes here.
detail::FillValueData_t fillValue_
std::vector< Dimensions_t > chunks
Manually specify the chunks. Never directly use. Use getChunks(...) instead.
VariableCreationParameters & setFillValue(DataType fill)
std::vector< std::pair< unsigned int, Variable > > dimsToAttach_
std::string dimScaleName_
static VariableCreationParameters defaults()
detail::FillValueData_t::FillValueUnion_t finalize() const
Finalize routine to make sure struct members are intact (e.g. for fill values)
VariableCreationParameters & unsetFillValue()
std::vector< Dimensions_t > getChunks(const std::vector< Dimensions_t > &cur_dims) const
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
Container used to store and manipulate fill values.
FillValueUnion_t finalize() const