10 #include <pybind11/eigen.h>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/stl.h>
25 namespace py = pybind11;
29 void setupVCPs(pybind11::module& m, pybind11::module& mDetail, pybind11::module& mPy) {
32 auto mVCP = mPy.def_submodule(
"VariableCreationParameters");
33 mVCP.doc() =
"VariableCreationParameters binding helper classes";
35 py::class_<python_bindings::VariableCreationFillValues<VariableCreationParameters>> sf(mVCP,
37 sf.doc() =
"Set the fill value";
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<>())
51 "Use SZIP compression (see H5_SZIP_EC_OPTION_MASK in hdf5.h)",
52 py::arg(
"PixelsPerBlock") = 16, py::arg(
"options") = 4)
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Interfaces for ioda::Group and related classes.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
Python bindings - macros.
#define SETFILL_CLASS_TEMPLATE_FUNCTION_T(funcnamestr, funcname, classname, T)
#define CLASS_TEMPLATE_FUNCTION_PATTERN(actualname, classname, PATTERN)
void setupVCPs(pybind11::module &m, pybind11::module &mDetail, pybind11::module &mPy)
detail::python_bindings::VariableCreationFillValues< VariableCreationParameters > _py_setFillValue
void compressWithGZIP(int level=6)
Attribute_Creator_Store atts
Set any initial attributes here.
std::vector< Dimensions_t > chunks
Manually specify the chunks. Never directly use. Use getChunks(...) instead.
void compressWithSZIP(unsigned PixelsPerBlock=16, unsigned options=4)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.