IODA
py_dimensions.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_dimensions.cpp
8 /// \brief Python bindings - Dimensions
9 
10 #include <pybind11/pybind11.h>
11 #include <pybind11/stl.h>
12 
13 #include <iostream>
14 #include <sstream>
15 
16 #include "./macros.h"
17 #include "ioda/Group.h"
18 
19 namespace py = pybind11;
20 using namespace ioda;
21 
22 void setupDimensions(pybind11::module& m) {
23  py::class_<Dimensions> dims(m, "Dimensions");
24  dims.doc() = "Dimensions of an attribute or variable";
25  dims.def_readwrite("dimensionality", &Dimensions::dimensionality, "The dimensionality")
26  .def_readwrite("numElements", &Dimensions::numElements, "The number of elements")
27  .def_readwrite("dimsCur", &Dimensions::dimsCur, "The current dimensions")
28  .def_readwrite("dimsMax", &Dimensions::dimsMax, "The maximum possible dimensions")
29  .def("__repr__",
30  [](const Dimensions& dims) {
31  std::ostringstream out;
32  out << "<ioda.Dimensions object:\n"
33  << "\tDimensionality: " << dims.dimensionality << "\n"
34  << "\tNumber of elements: " << dims.numElements << "\n"
35  << "\tCurrent dimensions: ";
36  for (size_t i = 0; i < dims.dimsCur.size(); ++i) {
37  if (i) out << " x ";
38  out << dims.dimsCur[i];
39  }
40  out << "\n\tMax dimensions: ";
41  for (size_t i = 0; i < dims.dimsMax.size(); ++i) {
42  if (i) out << " x ";
43  out << dims.dimsMax[i];
44  }
45  out << "\n\t>";
46 
47  return out.str();
48  })
49  .def("__str__", [](const Dimensions& dims) {
50  std::ostringstream out;
51  out << "<ioda.Dimensions object with current dimensions ";
52  if (dims.dimensionality) {
53  for (size_t i = 0; i < gsl::narrow<size_t>(dims.dimensionality); ++i) {
54  if (i) out << " x ";
55  out << dims.dimsCur[i];
56  }
57  } else
58  out << "null";
59  out << " >";
60  return out.str();
61  });
62 }
Interfaces for ioda::Group and related classes.
Python bindings - macros.
void setupDimensions(pybind11::module &m)
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Definition: Dimensions.h:23
Dimensions_t numElements
Definition: Dimensions.h:26
Dimensions_t dimensionality
The dimensionality (rank) of the data.
Definition: Dimensions.h:25
std::vector< Dimensions_t > dimsMax
This must always equal dimsCur for Attribute.
Definition: Dimensions.h:24