10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
20 namespace py = pybind11;
23 void setupAttributes(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
26 auto mAtt = mPy.def_submodule(
"Attributes");
27 mAtt.doc() =
"Attribute binding helper classes";
29 py::class_<python_bindings::AttributeIsA<Attribute>> is(mAtt,
"isA");
30 is.doc() =
"Is the data the specified type?";
34 py::class_<python_bindings::AttributeReadSingle<Attribute>> rd(mAtt,
"readDatum");
35 rd.doc() =
"Read a single value (a datum)";
39 py::class_<python_bindings::AttributeReadVector<Attribute>> rv(mAtt,
"readVector");
40 rv.doc() =
"Read data as a 1-D vector";
44 py::class_<python_bindings::AttributeReadNPArray<Attribute>> rNPA(mAtt,
"readNPArray");
45 rNPA.doc() =
"Read data as a numpy array";
49 py::class_<python_bindings::AttributeWriteSingle<Attribute>> wd(mAtt,
"writeDatum");
50 wd.doc() =
"Write a single value (a datum)";
54 py::class_<python_bindings::AttributeWriteVector<Attribute>> wv(mAtt,
"writeVector");
55 wv.doc() =
"Write data as a 1-D vector";
59 py::class_<python_bindings::AttributeWriteNPArray<Attribute>> wNPA(mAtt,
"writeNPArray");
60 wNPA.doc() =
"Write data as a numpy array";
64 py::class_<Attribute> att(m,
"Attribute");
65 att.doc() =
"A small tag on a variable or group that describes how to interpret data.";
Interfaces for ioda::Group and related classes.
detail::python_bindings::AttributeReadNPArray< Attribute > _py_readNPArray
detail::python_bindings::AttributeWriteSingle< Attribute > _py_writeSingle
detail::python_bindings::AttributeReadVector< Attribute > _py_readVector
detail::python_bindings::AttributeIsA< Attribute > _py_isA
detail::python_bindings::AttributeWriteVector< Attribute > _py_writeVector
detail::python_bindings::AttributeReadSingle< Attribute > _py_readSingle
detail::python_bindings::AttributeWriteNPArray< Attribute > _py_writeNPArray
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
bool _py_isA2(BasicTypes dataType)
Python bindings - macros.
#define READ_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define WRITE_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
#define ISA_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define CLASS_TEMPLATE_FUNCTION_PATTERN_NOSTR(actualname, classname, PATTERN)
void setupAttributes(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)