IODA
py_scales.cpp File Reference

Python bindings for the ioda / ioda-engines library. More...

#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <iostream>
#include <sstream>
#include "./macros.h"
#include "ioda/Engines/HH.h"
#include "ioda/Engines/ObsStore.h"
#include "ioda/Group.h"
#include "ioda/Layout.h"
#include "ioda/Misc/DimensionScales.h"
#include "ioda/ObsGroup.h"
Include dependency graph for py_scales.cpp:

Go to the source code of this file.

Macros

#define InstTmpl(typen, an, cn, typ)
 

Functions

void setupNewDimensionScales (pybind11::module &m)
 

Detailed Description

Python bindings for the ioda / ioda-engines library.

Definition in file py_scales.cpp.

Macro Definition Documentation

◆ InstTmpl

#define InstTmpl (   typen,
  an,
  cn,
  typ 
)
Value:
{ \
py::class_<NewDimensionScale_Object<typ>, NewDimensionScale_Base, \
std::shared_ptr<NewDimensionScale_Object<typ>>> \
newnds(mNDS, typen); \
newnds.doc() = "New dimension scale of type " typen; \
newnds \
.def(py::init<const std::string, Dimensions_t, Dimensions_t, Dimensions_t>(), \
py::arg("name"), py::arg("size"), py::arg("maxSize") = ioda::Unspecified, py::arg("chunkingSize") = ioda::Unspecified) \
.def_readwrite("initdata", &NewDimensionScale_Object<typ>::initdata_); \
}
constexpr int Unspecified
Specifies that a dimension has no specified size. Tells ioda to figure it out from elsewhere.
Used to specify a new dimension scale when making an ObsSpace.
Used to specify a new dimension scale when making an ObsSpace. Templated version of NewDimensionScale...

Function Documentation

◆ setupNewDimensionScales()

void setupNewDimensionScales ( pybind11::module &  m)

Definition at line 28 of file py_scales.cpp.

Here is the call graph for this function:
Here is the caller graph for this function: