10 #include <pybind11/pybind11.h>
11 #include <pybind11/stl.h>
19 namespace py = pybind11;
23 py::class_<Has_Attributes> hatt(m,
"Has_Attributes");
24 hatt.doc() =
"Container for this object's attributes";
33 py::arg(
"dtype"), py::arg(
"dims") = std::vector<Dimensions_t>{1})
39 std::ostringstream out;
40 auto names = ha.
list();
41 out <<
"<ioda.Has_Attributes: [ ";
42 for (
const auto& s : names) out << s <<
" ";
49 std::ostringstream out;
50 auto names = ha.
list();
51 out <<
"<ioda.Has_Attributes: [ ";
52 for (
const auto& s : names) out << s <<
" ";
64 py::class_<Attribute_Creator_Store> acs(m,
"Attribute_Creator_Store");
65 acs.doc() =
"Parameters involved in creating new attributes";
Interfaces for ioda::Group and related classes.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
Attribute _create_py(const std::string &attrname, BasicTypes dataType, const std::vector< Dimensions_t > &dimensions={1})
Python compatability function.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
Python bindings - macros.
void setupHasAttributes(pybind11::module &m)
void setupAttCreator(pybind11::module &m)