10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
29 std::shared_ptr<const ioda::detail::DataLayoutPolicy> default_dlp) {
30 py::class_<ObsGroup, Group, std::shared_ptr<ObsGroup>> obs(m,
"ObsGroup");
32 obs.doc() =
"The main class for manipulating data";
34 .def(py::init<
Group, std::shared_ptr<const detail::DataLayoutPolicy>>(), py::arg(
"group"),
35 py::arg(
"layout") =
nullptr)
37 .def_static(
"generate", &
ObsGroup::generate,
"Create a new ObsGroup", py::arg(
"group"),
38 py::arg(
"fundamentalDims"), py::arg(
"layout") = default_dlp)
39 .def(
"resize", &
ObsGroup::resize,
"Resize this ObsGroup", py::arg(
"newSizes"));
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.
static ObsGroup generate(Group &emptyGroup, const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout=nullptr)
Create an empty ObsGroup and populate it with the fundamental dimensions.
void resize(const std::vector< std::pair< Variable, ioda::Dimensions_t >> &newDims)
Resize a Dimension and every Variable that depends on it.
Python bindings - macros.
void setupObsGroup(pybind11::module &m, std::shared_ptr< const ioda::detail::DataLayoutPolicy > default_dlp)