53 int main(
int argc,
char** argv) {
106 g.atts.add<
int>(
"int-att-3", {1, 2, 3}, {3});
118 g.atts.add<
int>(
"int-att-4", 42);
141 std::vector<int> v_data_5{1, 2, 3, 4, 5, 6, 7, 8, 9};
142 std::array<int, 6> a_data_6{1, 2, 3, 4, 5, 6};
143 std::valarray<int> va_data_7{1, 2, 3, 4};
144 const size_t sz_ca_data_8 = 7;
145 const int ca_data_8[sz_ca_data_8]
146 = {1, 2, 3, 4, 5, 6, 7};
148 g.atts.add<
int>(
"int-att-5", gsl::make_span(v_data_5));
149 g.atts.add<
int>(
"int-att-6", gsl::make_span(a_data_6));
150 g.atts.add<
int>(
"int-att-7", gsl::make_span(std::begin(va_data_7), std::end(va_data_7)));
151 g.atts.add<
int>(
"int-att-8", gsl::make_span(ca_data_8, sz_ca_data_8));
171 g.atts.add<
float>(
"float-1", {3.1159f, 2.78f}, {2});
172 g.atts.add<
double>(
"double-1", {1.1, 2.2, 3.3, 4.4}, {4});
174 g.atts.add<std::string>(
"str-1", std::string(
"This is a test."));
200 std::vector<std::string> attList =
g.atts.list();
201 if (attList.size() != 11)
204 .
add(
"Actual", attList.size());
215 Expects(
f1_dims.dimensionality == 1);
220 Expects(
f1_dims.dimsCur[0] == 2);
221 Expects(
f1_dims.dimsMax[0] == 2);
223 Expects(
f1_dims.numElements == 2);
229 Expects(
g.atts[
"int-att-1"].isA<
int>() ==
true);
234 int int1val =
g.atts[
"int-att-1"].read<
int>();
235 Expects(int1val == 5);
237 Expects(
g.atts.read<
int>(
"int-att-1") == 5);
242 std::array<float, 2> check_float_1;
243 g.atts.read<
float>(
"float-1", gsl::make_span(check_float_1));
247 std::vector<double> check_double_1;
248 g.atts.read<
double>(
"double-1", check_double_1);
251 std::valarray<double> check_double_1_valarray;
252 g.atts.read<
double>(
"double-1", check_double_1_valarray);
254 }
catch (
const std::exception& e) {
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
This class represents attributes, which may be attached to both Variables and Groups.
The ioda exception class.
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
Groups are a new implementation of ObsSpaces.
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
int main(int argc, char **argv)
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
Describes the dimensions of an Attribute or Variable.