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);
35 Eigen::ArrayXXi overlay_data(2, 3);
36 overlay_data << 17, 18, 19, 20, 21, 22;
53 Eigen::ArrayXXi reference(4, 4);
54 reference << 17, 18, 3, 19, 5, 6, 7, 8, 20, 21, 11, 22, 13, 14, 15, 16;
56 Eigen::ArrayXXi check;
59 bool r = check.isApprox(reference);
66 Eigen::ArrayXi overlay2_data(4);
67 overlay2_data << 23, 24, 25, 26;
79 Eigen::ArrayXXi reference2(4, 4);
80 reference2 << 17, 18, 3, 23, 5, 6, 7, 24, 20, 21, 11, 25, 13, 14, 15, 26;
82 Eigen::ArrayXXi check2;
85 bool r2 = check2.isApprox(reference2);
90 int main(
int argc,
char** argv) {
96 }
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).
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.
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.
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)