23 Eigen::ArrayXXi test_data1(4, 4);
24 test_data1 << 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16;
29 ioda::Variable file_test_data1 =
g.vars.create<
int>(
"test_data1", {4, 4}).writeWithEigenRegular(test_data1);
34 Eigen::ArrayXXi overlay_data1(2, 2);
35 overlay_data1 << 17, 18, 19, 20;
73 std::vector<int> point_vals{21, 22};
74 file_test_data1.
write(gsl::make_span(point_vals),
86 Eigen::ArrayXXi reference(4, 4);
87 reference << 1, 2, 3, 22, 5, 17, 18, 8, 9, 19, 20, 18, 21, 14, 19, 20;
89 Eigen::ArrayXXi check;
92 bool r = check.isApprox(reference);
93 if (!r)
throw std::logic_error(
"Test failure.");
96 int main(
int argc,
char** argv) {
102 }
catch (
const std::exception& e) {
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
Groups are a new implementation of ObsSpaces.
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Variable_Implementation writeWithEigenRegular(const EigenClass &d, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
Write an Eigen object (a Matrix, an Array, a Block, a Map).
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
Variable_Implementation readWithEigenRegular(EigenClass &res, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
void test_group_backend_engine(ioda::Group g)
This program tests that Variable read and write selections work as expected for certain engines.
int main(int argc, char **argv)
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...
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.