10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
28 void setupVariables(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
31 auto mVar = mPy.def_submodule(
"Variables");
32 mVar.doc() =
"Variable binding helper classes";
34 py::class_<python_bindings::VariableIsA<Variable>> is(mVar,
"isA");
35 is.doc() =
"Is the data the specified type?";
39 py::class_<python_bindings::VariableReadVector<Variable>> rv(mVar,
"readVector");
40 rv.doc() =
"Read data as a 1-D vector";
44 py::class_<python_bindings::VariableReadNPArray<Variable>> rNPA(mVar,
"readNPArray");
45 rNPA.doc() =
"Read data as a numpy array";
49 py::class_<python_bindings::VariableWriteVector<Variable>> wv(mVar,
"writeVector");
50 wv.doc() =
"Write data as a 1-D vector";
54 py::class_<python_bindings::VariableWriteNPArray<Variable>> wNPA(mVar,
"writeNPArray");
55 wNPA.doc() =
"Write data as a numpy array";
59 py::class_<python_bindings::VariableScales<Variable>> scales(mVar,
"scales");
60 scales.doc() =
"Dimension scales";
63 "Attach a dimension scale to a variable", py::arg(
"DimensionNumber"), py::arg(
"scale"))
65 py::arg(
"DimensionNumber"), py::arg(
"scale"))
69 "Is this variable a dimension scale?")
71 "Make this variable a dimension scale", py::arg(
"scale_name"))
73 "Get the name of this dimension scale")
75 "Is a certain scale attached along the specified axis?", py::arg(
"DimensionNumber"),
78 py::class_<Variable>(m,
"Variable")
81 "The current dimensions of the variable")
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.
detail::python_bindings::VariableReadVector< Variable > _py_readVector
detail::python_bindings::VariableScales< Variable > _py_scales
detail::python_bindings::VariableWriteNPArray< Variable > _py_writeNPArray
detail::python_bindings::VariableWriteVector< Variable > _py_writeVector
detail::python_bindings::VariableIsA< Variable > _py_isA
detail::python_bindings::VariableReadNPArray< Variable > _py_readNPArray
bool _py_isA2(BasicTypes dataType)
Has_Attributes atts
Attributes.
virtual Dimensions getDimensions() const
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
Python bindings - macros.
#define READ_VAR_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
#define WRITE_VAR_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define ISA_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define CLASS_TEMPLATE_FUNCTION_PATTERN_NOSTR(actualname, classname, PATTERN)
void setupVariables(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)