IODA
py_attributes.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  */
7 /// \file py_attributes.cpp
8 /// \brief Python bindings - Attributes
9 
10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
13 
14 #include <iostream>
15 #include <sstream>
16 
17 #include "./macros.h"
18 #include "ioda/Group.h"
19 
20 namespace py = pybind11;
21 using namespace ioda;
22 
23 void setupAttributes(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
24  using namespace ioda::detail;
25 
26  auto mAtt = mPy.def_submodule("Attributes");
27  mAtt.doc() = "Attribute binding helper classes";
28 
29  py::class_<python_bindings::AttributeIsA<Attribute>> is(mAtt, "isA");
30  is.doc() = "Is the data the specified type?";
33 
34  py::class_<python_bindings::AttributeReadSingle<Attribute>> rd(mAtt, "readDatum");
35  rd.doc() = "Read a single value (a datum)";
38 
39  py::class_<python_bindings::AttributeReadVector<Attribute>> rv(mAtt, "readVector");
40  rv.doc() = "Read data as a 1-D vector";
43 
44  py::class_<python_bindings::AttributeReadNPArray<Attribute>> rNPA(mAtt, "readNPArray");
45  rNPA.doc() = "Read data as a numpy array";
48 
49  py::class_<python_bindings::AttributeWriteSingle<Attribute>> wd(mAtt, "writeDatum");
50  wd.doc() = "Write a single value (a datum)";
53 
54  py::class_<python_bindings::AttributeWriteVector<Attribute>> wv(mAtt, "writeVector");
55  wv.doc() = "Write data as a 1-D vector";
58 
59  py::class_<python_bindings::AttributeWriteNPArray<Attribute>> wNPA(mAtt, "writeNPArray");
60  wNPA.doc() = "Write data as a numpy array";
63 
64  py::class_<Attribute> att(m, "Attribute");
65  att.doc() = "A small tag on a variable or group that describes how to interpret data.";
66  att.def("isA2", &Attribute::_py_isA2, "Query the data type", py::arg("dtype"))
67  .def_readwrite("isA", &Attribute::_py_isA, "Query the data type")
68  .def_property_readonly("dims", &Attribute::getDimensions, "The dimensions of the attribute")
69  .def_readwrite("readDatum", &Attribute::_py_readSingle, "Read a single value (a datum)")
70  .def_readwrite("readVector", &Attribute::_py_readVector, "Read data as a 1-D vector")
71  .def_readwrite("readNPArray", &Attribute::_py_readNPArray, "Read data as a numpy array")
72  .def_readwrite("writeDatum", &Attribute::_py_writeSingle, "Write a single value (a datum)")
73  .def_readwrite("writeVector", &Attribute::_py_writeVector, "Write data as a 1-D vector")
74  .def_readwrite("writeNPArray", &Attribute::_py_writeNPArray, "Write data as a numpy array");
75 }
Interfaces for ioda::Group and related classes.
detail::python_bindings::AttributeReadNPArray< Attribute > _py_readNPArray
Definition: Attribute.h:508
detail::python_bindings::AttributeWriteSingle< Attribute > _py_writeSingle
Definition: Attribute.h:510
detail::python_bindings::AttributeReadVector< Attribute > _py_readVector
Definition: Attribute.h:507
detail::python_bindings::AttributeIsA< Attribute > _py_isA
Definition: Attribute.h:504
detail::python_bindings::AttributeWriteVector< Attribute > _py_writeVector
Definition: Attribute.h:511
detail::python_bindings::AttributeReadSingle< Attribute > _py_readSingle
Definition: Attribute.h:506
detail::python_bindings::AttributeWriteNPArray< Attribute > _py_writeNPArray
Definition: Attribute.h:512
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
Definition: Attribute.cpp:35
bool _py_isA2(BasicTypes dataType)
Definition: Attribute.h:458
Python bindings - macros.
#define READ_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:66
#define WRITE_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:69
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
Definition: macros.h:106
#define ISA_ATT_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:63
#define CLASS_TEMPLATE_FUNCTION_PATTERN_NOSTR(actualname, classname, PATTERN)
Definition: macros.h:95
void setupAttributes(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)