IODA
py_has_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_has_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 setupHasVariables(pybind11::module& m) {
29  py::class_<Has_Variables> hvar(m, "Has_Variables");
30  hvar.doc() = "Container for this group's variables";
31  hvar
32  .def("exists", &Has_Variables::exists, "Does a variable exist with the specified name?",
33  py::arg("name"))
34  .def("remove", &Has_Variables::remove, "Remove a variable", py::arg("name"))
35  .def("open", &Has_Variables::open, "Open a variable", py::arg("name"))
36  .def("list", &Has_Variables::list, "The names of all variables")
37 
38  .def("create", &Has_Variables::_create_py, "Create a variable", py::arg("name"),
39  py::arg("dtype"), py::arg("dimsCur") = std::vector<Dimensions_t>{1},
40  py::arg("dimsMax") = std::vector<Dimensions_t>{},
41  py::arg("scales") = std::vector<Variable>{},
42  py::arg("params") = VariableCreationParameters())
43  .def("__repr__",
44  [](const Has_Variables& g) {
45  std::ostringstream out;
46  auto names = g.list();
47  out << "<ioda.Has_Variables: [ ";
48  for (const auto& s : names) out << s << " ";
49  out << "]>";
50 
51  return out.str();
52  })
53  .def("__str__", [](const Has_Variables& g) {
54  std::ostringstream out;
55  auto names = g.list();
56  out << "<ioda.Has_Variables: [ ";
57  for (const auto& s : names) out << s << " ";
58  out << "]>";
59 
60  return out.str();
61  });
62 }
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.
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual std::vector< std::string > list() const
virtual bool exists(const std::string &name) const
Does a Variable with the specified name exist?
virtual void remove(const std::string &name)
Delete an Attribute with the specified name.
Variable _create_py(const std::string &name, BasicTypes dataType, const std::vector< Dimensions_t > &cur_dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const std::vector< Variable > &dimension_scales={}, const VariableCreationParameters &params=VariableCreationParameters())
Python bindings - macros.
void setupHasVariables(pybind11::module &m)
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57