IODA
py_vcps.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_vcps.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 /// \todo AttributeCreatorStore needs python bindings
29 void setupVCPs(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
30  using namespace ioda::detail;
31 
32  auto mVCP = mPy.def_submodule("VariableCreationParameters");
33  mVCP.doc() = "VariableCreationParameters binding helper classes";
34 
35  py::class_<python_bindings::VariableCreationFillValues<VariableCreationParameters>> sf(mVCP,
36  "setFill");
37  sf.doc() = "Set the fill value";
41 
42  py::class_<VariableCreationParameters> vcps(m, "VariableCreationParameters");
43  vcps.doc() = "Additional parameters that can be set at variable creation time";
44  vcps.def(py::init<>())
45  .def_readwrite("chunk", &VariableCreationParameters::chunk, "Use chunking")
46  .def_readwrite("chunks", &VariableCreationParameters::chunks, "Chunk sizes")
47  .def("noCompress", &VariableCreationParameters::noCompress, "Do not compress")
48  .def("compressWithGZIP", &VariableCreationParameters::compressWithGZIP, "Use GZIP compression",
49  py::arg("level") = 6)
50  .def("compressWithSZIP", &VariableCreationParameters::compressWithSZIP,
51  "Use SZIP compression (see H5_SZIP_EC_OPTION_MASK in hdf5.h)",
52  py::arg("PixelsPerBlock") = 16, py::arg("options") = 4)
53  .def_readwrite("setFillValue", &VariableCreationParameters::_py_setFillValue, "Set fill value")
54  .def_readwrite("atts", &VariableCreationParameters::atts, "Attributes");
55 }
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 SETFILL_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
Definition: macros.h:43
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
Definition: macros.h:106
void setupVCPs(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)
Definition: py_vcps.cpp:29
detail::python_bindings::VariableCreationFillValues< VariableCreationParameters > _py_setFillValue
Attribute_Creator_Store atts
Set any initial attributes here.
std::vector< Dimensions_t > chunks
Manually specify the chunks. Never directly use. Use getChunks(...) instead.
Definition: Has_Variables.h:87
void compressWithSZIP(unsigned PixelsPerBlock=16, unsigned options=4)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
Definition: Has_Variables.h:84