IODA
DimensionScales.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
8 
9 #include <map>
10 
11 #include "ioda/Exception.h"
12 #include "ioda/Types/Type.h"
14 #include "ioda/defs.h"
15 
16 namespace ioda {
17 std::shared_ptr<NewDimensionScale_Base> NewDimensionScale(const std::string& name,
18  const Type& t,
19  Dimensions_t size, Dimensions_t maxSize,
20  Dimensions_t chunkingSize) {
21  return std::make_shared<NewDimensionScale_Base>(name, t, size, maxSize, chunkingSize);
22 }
23 
24 std::shared_ptr<NewDimensionScale_Base> NewDimensionScale(const std::string& name,
25  const Variable& scale,
26  const ScaleSizes& overrides) {
27  Options errOpts;
28  try {
29  Type typ = scale.getType();
30  const auto dims = scale.getDimensions();
31  errOpts
32  .add("dims.dimensionality", dims.dimensionality)
33  .add("dims.numElements", dims.numElements);
34  if (dims.dimensionality != 1) throw Exception("Dimensionality != 1.", ioda_Here(), errOpts);
35  Dimensions_t size = (overrides.size_ != Unspecified) ? overrides.size_ : dims.dimsCur[0];
36  Dimensions_t maxSize
37  = (overrides.maxSize_ != Unspecified) ? overrides.maxSize_ : dims.dimsMax[0];
38  Dimensions_t chunkingSize = overrides.chunkingSize_;
39  if (chunkingSize == Unspecified) {
40  auto chunking = scale.getChunkSizes();
41  // If chunking is not declared, hint that it should be found elsewhere.
42  chunkingSize = (!chunking.empty()) ? chunking[0] : Unspecified;
43  }
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])
49  .add("overrides.maxSize_", overrides.maxSize_)
50  .add("chunkingSize", chunkingSize)
51  .add("overrides.chunkingSize_", overrides.chunkingSize_)
52  ;
53 
54  return NewDimensionScale(name, typ, size, maxSize, chunkingSize);
55  } catch (...) {
56  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here(), errOpts));
57  }
58 }
59 } // namespace ioda
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
IODA's error system.
Interfaces for ioda::Type and related classes.
Interfaces for ioda::Variable and related classes.
The ioda exception class.
Definition: Exception.h:54
Quick and easy key-value container that stringifies all values.
Definition: Options.h:23
Options & add(const std::string &key, const T &value)
Adds an option. Throws if the same name already exists.
Definition: Options.h:73
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Variables store data!
Definition: Variable.h:680
virtual Type getType() const
Get type.
Definition: Variable.cpp:49
virtual std::vector< Dimensions_t > getChunkSizes() const
Retrieve the chunking options for the Variable.
Definition: Variable.cpp:123
virtual Dimensions getDimensions() const
Definition: Variable.cpp:160
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.
#define ioda_Here()
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.