IODA
py_obsgroup.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_obsgroup.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 setupObsGroup(pybind11::module& m,
29  std::shared_ptr<const ioda::detail::DataLayoutPolicy> default_dlp) {
30  py::class_<ObsGroup, Group, std::shared_ptr<ObsGroup>> obs(m, "ObsGroup");
31 
32  obs.doc() = "The main class for manipulating data";
33  obs
34  .def(py::init<Group, std::shared_ptr<const detail::DataLayoutPolicy>>(), py::arg("group"),
35  py::arg("layout") = nullptr)
36  .def(py::init())
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"));
40 }
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.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
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.
Definition: ObsGroup.cpp:72
void resize(const std::vector< std::pair< Variable, ioda::Dimensions_t >> &newDims)
Resize a Dimension and every Variable that depends on it.
Definition: ObsGroup.cpp:85
Python bindings - macros.
void setupObsGroup(pybind11::module &m, std::shared_ptr< const ioda::detail::DataLayoutPolicy > default_dlp)
Definition: py_obsgroup.cpp:28