19 Dimensions_t size, Dimensions_t maxSize,
20 Dimensions_t chunkingSize) {
21 return std::make_shared<NewDimensionScale_Base>(
name, t, size, maxSize, chunkingSize);
32 .
add(
"dims.dimensionality", dims.dimensionality)
33 .
add(
"dims.numElements", dims.numElements);
34 if (dims.dimensionality != 1)
throw Exception(
"Dimensionality != 1.",
ioda_Here(), errOpts);
42 chunkingSize = (!chunking.empty()) ? chunking[0] :
Unspecified;
44 errOpts.
add(
"size", size)
45 .
add(
"overrides.size_", overrides.
size_)
46 .
add(
"dims.dimsCur[0]", dims.dimsCur[0])
47 .
add(
"maxSize", maxSize)
48 .
add(
"dims.dimsMax[0]", dims.dimsMax[0])
50 .
add(
"chunkingSize", chunkingSize)
56 std::throw_with_nested(
Exception(
"An exception occurred inside ioda.",
ioda_Here(), errOpts));
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Type and related classes.
Interfaces for ioda::Variable and related classes.
The ioda exception class.
Quick and easy key-value container that stringifies all values.
Options & add(const std::string &key, const T &value)
Adds an option. Throws if the same name already exists.
Represents the "type" (i.e. integer, string, float) of a piece of data.
virtual Type getType() const
Get type.
virtual std::vector< Dimensions_t > getChunkSizes() const
Retrieve the chunking options for the Variable.
virtual Dimensions getDimensions() const
Common preprocessor definitions used throughout IODA.
std::shared_ptr< NewDimensionScale_Object< DataType > > NewDimensionScale(const std::string &name, Dimensions_t size, Dimensions_t maxSize=Unspecified, Dimensions_t chunkingSize=Unspecified)
Wrapper function used when listing new dimension scales to construct.
constexpr int Unspecified
Specifies that a dimension has no specified size. Tells ioda to figure it out from elsewhere.
Dimensions_t size_
Initial size of the new dimension.
Dimensions_t chunkingSize_
Chunking size of the new dimension.
Dimensions_t maxSize_
Maximum size of the new dimension.