10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
34 m.attr(
"Unlimited") = py::int_(-1);
36 auto mNDS = m.def_submodule(
"NewDimensionScale");
38 =
"Classes and methods for defining dimension "
39 "scales in a new ObsSpace";
40 py::class_<NewDimensionScale_Base, std::shared_ptr<NewDimensionScale_Base>> nds(mNDS,
"Base");
42 =
"Base class for new dimension scales. Do not use "
43 "directly. Use a derived class.";
46 .def(py::init<
const std::string,
const std::type_index&, Dimensions_t, Dimensions_t,
55 #define InstTmpl(typen, an, cn, typ) \
57 py::class_<NewDimensionScale_Object<typ>, NewDimensionScale_Base, \
58 std::shared_ptr<NewDimensionScale_Object<typ>>> \
59 newnds(mNDS, typen); \
60 newnds.doc() = "New dimension scale of type " typen; \
62 .def(py::init<const std::string, Dimensions_t, Dimensions_t, Dimensions_t>(), \
63 py::arg("name"), py::arg("size"), py::arg("maxSize") = ioda::Unspecified, py::arg("chunkingSize") = ioda::Unspecified) \
64 .def("getShared", &NewDimensionScale_Object<typ>::getShared) \
65 .def_readwrite("initdata", &NewDimensionScale_Object<typ>::initdata_); \
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
Python bindings - macros.
#define CLASS_TEMPLATE_FUNCTION_PATTERN_NOALIASES(actualname, classname, PATTERN)
void setupNewDimensionScales(pybind11::module &m)
#define InstTmpl(typen, an, cn, typ)
Dimensions_t size_
Initial size of the new dimension.
Dimensions_t chunkingSize_
Chunking size of the new dimension. May be used as a hint when creating new Variables based on this d...
Dimensions_t maxSize_
Maximum size of the new dimension. Unlimited (< 0) by default.
std::string name_
Name of the dimension. Scan position, scan line, latitude, ...
virtual void writeInitialData(Variable &) const
std::type_index dataType_
Type of the new dimension. Int, char, etc. Used if a type is not passed directly.