IODA
test_dim_selectors.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /// This program tests that Variable read and write selections work as expected for certain engines.
8 
9 #include <Eigen/Dense>
10 #include <iostream>
11 #include <vector>
12 
13 #include "ioda/Engines/Factory.h"
14 #include "ioda/Exception.h"
15 #include "ioda/Group.h"
16 
18  // test_data1 is a 4x4 matrix that looks like:
19  // 1 2 3 4
20  // 5 6 7 8
21  // 9 10 11 12
22  // 13 14 15 16
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;
25 
26  // std::cerr << test_data1 << std::endl << std::endl;
27 
28  // Make a variable in the file and write test_data1.
29  ioda::Variable file_test_data1 = g.vars.create<int>("test_data1", {4, 4}).writeWithEigenRegular(test_data1);
30 
31  // Try selecting by dimension indices
32  // overlay_data
33  // 17 18 19
34  // 20 21 22
35  Eigen::ArrayXXi overlay_data(2, 3);
36  overlay_data << 17, 18, 19, 20, 21, 22;
37  file_test_data1.writeWithEigenRegular(overlay_data,
39  .extent({2, 3})
40  .select({ioda::SelectionOperator::SET, 0, {0, 1}})
41  .select({ioda::SelectionOperator::AND, 1, {0, 1, 2}}),
43  .select({ioda::SelectionOperator::SET, 0, {0, 2}})
44  .select({ioda::SelectionOperator::AND, 1, {0, 1, 3}}));
45 
46  // test_data1 should look like
47  // 17 18 3 19
48  // 5 6 7 8
49  // 20 21 11 22
50  // 13 14 15 16
51 
52  // And check our read function.
53  Eigen::ArrayXXi reference(4, 4);
54  reference << 17, 18, 3, 19, 5, 6, 7, 8, 20, 21, 11, 22, 13, 14, 15, 16;
55 
56  Eigen::ArrayXXi check;
57  file_test_data1.readWithEigenRegular(check);
58 
59  bool r = check.isApprox(reference);
60  if (!r)
61  throw; // jedi_throw.add("Reason", "Test 1 result for file_test_data1 do not match expected results");
62 
63  // Try selecting along only one of the two dimensions
64  // overlay_data
65  // 23 24 25 26
66  Eigen::ArrayXi overlay2_data(4);
67  overlay2_data << 23, 24, 25, 26;
68  file_test_data1.writeWithEigenRegular(
69  overlay2_data, ioda::Selection().extent({4}).select({ioda::SelectionOperator::SET, 0, {0, 1, 2, 3}}),
70  ioda::Selection().select({ioda::SelectionOperator::SET, 1, {3}}));
71 
72  // test_data1 should look like
73  // 17 18 3 23
74  // 5 6 7 24
75  // 20 21 11 25
76  // 13 14 15 26
77 
78  // And check our read function.
79  Eigen::ArrayXXi reference2(4, 4);
80  reference2 << 17, 18, 3, 23, 5, 6, 7, 24, 20, 21, 11, 25, 13, 14, 15, 26;
81 
82  Eigen::ArrayXXi check2;
83  file_test_data1.readWithEigenRegular(check2);
84 
85  bool r2 = check2.isApprox(reference2);
86  if (!r2)
87  throw; // jedi_throw.add("Reason", "Test 2 result for file_test_data1 do not match expected results");
88 }
89 
90 int main(int argc, char** argv) {
91  using namespace ioda;
92  using namespace std;
93  try {
94  auto f = Engines::constructFromCmdLine(argc, argv, "test-dim-selectors.hdf5");
96  } catch (const std::exception& e) {
98  return 1;
99  }
100  return 0;
101 }
IODA's error system.
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.
Definition: Group.h:159
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Definition: Selection.h:48
Variables store data!
Definition: Variable.h:680
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).
Definition: Variable.h:361
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.
Definition: Variable.h:551
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...
Definition: Factory.cpp:21
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.
Definition: Exception.cpp:48
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)