IODA
py_scales.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_scales.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 setupNewDimensionScales(pybind11::module& m) {
29  // NewDimensionScale will be in a Python namespace because it
30  // is too polluting to have it at top-level, as Python lacks
31  // class template support.
32 
33  // ioda::Unlimited
34  m.attr("Unlimited") = py::int_(-1);
35 
36  auto mNDS = m.def_submodule("NewDimensionScale");
37  mNDS.doc()
38  = "Classes and methods for defining dimension "
39  "scales in a new ObsSpace";
40  py::class_<NewDimensionScale_Base, std::shared_ptr<NewDimensionScale_Base>> nds(mNDS, "Base");
41  nds.doc()
42  = "Base class for new dimension scales. Do not use "
43  "directly. Use a derived class.";
44  // No direct initialization. Go through the derived classes.
45  nds
46  .def(py::init<const std::string, const std::type_index&, Dimensions_t, Dimensions_t,
47  Dimensions_t>())
48  .def_readwrite("name", &NewDimensionScale_Base::name_)
49  .def_readonly("dataType", &NewDimensionScale_Base::dataType_)
50  .def_readwrite("size", &NewDimensionScale_Base::size_)
51  .def_readwrite("maxSize", &NewDimensionScale_Base::maxSize_)
52  .def_readwrite("chunkingSize", &NewDimensionScale_Base::chunkingSize_)
53  .def("writeInitialData", &NewDimensionScale_Base::writeInitialData);
54 
55 #define InstTmpl(typen, an, cn, typ) \
56  { \
57  py::class_<NewDimensionScale_Object<typ>, NewDimensionScale_Base, \
58  std::shared_ptr<NewDimensionScale_Object<typ>>> \
59  newnds(mNDS, typen); \
60  newnds.doc() = "New dimension scale of type " typen; \
61  newnds \
62  .def(py::init<const std::string, Dimensions_t, Dimensions_t, Dimensions_t>(), \
63  py::arg("name"), py::arg("size"), py::arg("maxSize") = ioda::Unspecified, py::arg("chunkingSize") = ioda::Unspecified) \
64  .def("getShared", &NewDimensionScale_Object<typ>::getShared) \
65  .def_readwrite("initdata", &NewDimensionScale_Object<typ>::initdata_); \
66  }
67 
69 }
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.
Python bindings - macros.
#define CLASS_TEMPLATE_FUNCTION_PATTERN_NOALIASES(actualname, classname, PATTERN)
Definition: macros.h:80
void setupNewDimensionScales(pybind11::module &m)
Definition: py_scales.cpp:28
#define InstTmpl(typen, an, cn, typ)
Dimensions_t size_
Initial size of the new dimension.
Dimensions_t chunkingSize_
Chunking size of the new dimension. May be used as a hint when creating new Variables based on this d...
Dimensions_t maxSize_
Maximum size of the new dimension. Unlimited (< 0) by default.
std::string name_
Name of the dimension. Scan position, scan line, latitude, ...
virtual void writeInitialData(Variable &) const
std::type_index dataType_
Type of the new dimension. Int, char, etc. Used if a type is not passed directly.