IODA
py_variables.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_variables.cpp
8 /// \brief Python bindings for the ioda / ioda-engines library.
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/Engines/HH.h"
19 #include "ioda/Engines/ObsStore.h"
20 #include "ioda/Group.h"
21 #include "ioda/Layout.h"
23 #include "ioda/ObsGroup.h"
24 
25 namespace py = pybind11;
26 using namespace ioda;
27 
28 void setupVariables(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
29  using namespace ioda::detail;
30 
31  auto mVar = mPy.def_submodule("Variables");
32  mVar.doc() = "Variable binding helper classes";
33 
34  py::class_<python_bindings::VariableIsA<Variable>> is(mVar, "isA");
35  is.doc() = "Is the data the specified type?";
38 
39  py::class_<python_bindings::VariableReadVector<Variable>> rv(mVar, "readVector");
40  rv.doc() = "Read data as a 1-D vector";
43 
44  py::class_<python_bindings::VariableReadNPArray<Variable>> rNPA(mVar, "readNPArray");
45  rNPA.doc() = "Read data as a numpy array";
48 
49  py::class_<python_bindings::VariableWriteVector<Variable>> wv(mVar, "writeVector");
50  wv.doc() = "Write data as a 1-D vector";
53 
54  py::class_<python_bindings::VariableWriteNPArray<Variable>> wNPA(mVar, "writeNPArray");
55  wNPA.doc() = "Write data as a numpy array";
58 
59  py::class_<python_bindings::VariableScales<Variable>> scales(mVar, "scales");
60  scales.doc() = "Dimension scales";
61  scales
63  "Attach a dimension scale to a variable", py::arg("DimensionNumber"), py::arg("scale"))
64  .def("detach", &python_bindings::VariableScales<Variable>::detach, "Detach a dimension scale",
65  py::arg("DimensionNumber"), py::arg("scale"))
66  .def("set", &python_bindings::VariableScales<Variable>::set, "Set dimension scales",
67  py::arg("scales"))
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")
74  .def("isDimensionScaleAttached", &python_bindings::VariableScales<Variable>::isAttached,
75  "Is a certain scale attached along the specified axis?", py::arg("DimensionNumber"),
76  py::arg("scale"));
77 
78  py::class_<Variable>(m, "Variable")
79  .def_readwrite("atts", &Variable::atts)
80  .def_property_readonly("dims", &Variable::getDimensions,
81  "The current dimensions of the variable")
82  .def_readwrite("isA", &Variable::_py_isA, "Query the data type")
83  .def("isA2", &Variable::_py_isA2, "Query the data type", py::arg("dtype"))
84  .def_readwrite("scales", &Variable::_py_scales, "Manipulate this variable's dimension scales")
85  .def_readwrite("readVector", &Variable::_py_readVector, "Read data as a 1-D vector")
86  .def_readwrite("readNPArray", &Variable::_py_readNPArray, "Read data as a numpy array")
87  .def_readwrite("writeVector", &Variable::_py_writeVector, "Write data as a 1-D vector")
88  .def_readwrite("writeNPArray", &Variable::_py_writeNPArray, "Write data as a numpy array")
89  .def("resize", &Variable::resize, "Resize a variable", py::arg("newdims"));
90 }
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
HDF5 engine.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
ObsStore engine.
detail::python_bindings::VariableReadVector< Variable > _py_readVector
Definition: Variable.h:697
detail::python_bindings::VariableScales< Variable > _py_scales
Definition: Variable.h:703
detail::python_bindings::VariableWriteNPArray< Variable > _py_writeNPArray
Definition: Variable.h:701
detail::python_bindings::VariableWriteVector< Variable > _py_writeVector
Definition: Variable.h:700
detail::python_bindings::VariableIsA< Variable > _py_isA
Definition: Variable.h:695
detail::python_bindings::VariableReadNPArray< Variable > _py_readNPArray
Definition: Variable.h:698
bool _py_isA2(BasicTypes dataType)
Definition: Variable.h:110
Has_Attributes atts
Attributes.
Definition: Variable.h:71
virtual Dimensions getDimensions() const
Definition: Variable.cpp:160
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
Definition: Variable.cpp:172
Python bindings - macros.
#define READ_VAR_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:72
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
Definition: macros.h:106
#define WRITE_VAR_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:76
#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 setupVariables(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)