10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
29 py::class_<Group, std::shared_ptr<Group>> grp(m,
"Group");
30 grp.doc() =
"A group";
32 grp.def(
"list", &
Group::list,
"The names of all child groups")
33 .def(
"listGroups", &Group::listObjects<ObjectType::Group>,
"List the names of all groups",
34 py::arg(
"recurse") =
false)
35 .def(
"listVars", &Group::listObjects<ObjectType::Variable>,
"List the names of all variables",
36 py::arg(
"recurse") =
false)
41 .def(
"exists", &
Group::exists,
"Does a group exist with the specified name?", py::arg(
"name"))
42 .def(
"create", &
Group::create,
"Create a group", py::arg(
"name"))
43 .def(
"open", &
Group::open,
"Open a group", py::arg(
"name"))
44 .def_readwrite(
"atts", &
Group::atts,
"Attributes for this group")
45 .def_readwrite(
"vars", &
Group::vars,
"Variables in this group")
48 std::ostringstream out;
49 auto names =
g.list();
50 out <<
"<ioda.Group at " << &
g
51 <<
". Use list(), atts.list() and vars.list() to see contents.>";
55 .def(
"__str__", [](
const Group&
g) {
56 std::ostringstream out;
57 auto names =
g.list();
58 out <<
"<ioda.Group: [ ";
59 for (
const auto& s : names) out << s <<
" ";
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.
Groups are a new implementation of ObsSpaces.
Has_Attributes atts
Use this to access the metadata for the group / ObsSpace.
virtual Group open(const std::string &name) const
Open a group.
Has_Variables vars
Use this to access variables.
virtual bool exists(const std::string &name) const
virtual Group create(const std::string &name)
Create a group.
std::vector< std::string > list() const
List all one-level child groups in this group.
Python bindings - macros.
void setupGroups(pybind11::module &m)