19 std::string amsuaGroup(
"AMSU-A/ObsValue");
21 if (!
g.exists(amsuaGroup)) {
25 auto g1 =
g.open(amsuaGroup);
27 auto childList =
g1.list();
28 if (childList.size() != 1) {
31 if (childList[0] !=
"Child1") {
36 std::string amsuaGroupChild2 = amsuaGroup +
"/Child2";
37 g.create(amsuaGroupChild2);
38 childList =
g1.list();
39 if (childList.size() != 2) {
42 if ((childList[0] !=
"Child1") || (childList[1] !=
"Child2")) {
47 std::string sondeTopGroup =
"Sonde";
48 std::string sondeMidGroup =
"ObsValue";
49 std::string sondeVar =
"air_temperature";
50 std::string sondeGroupVar = sondeTopGroup +
"/" + sondeMidGroup +
"/" + sondeVar;
54 params.setFillValue<
float>(-999);
55 g.vars.create<
float>(sondeGroupVar, {4}, {4},
params);
57 auto v1 =
g.vars.open(sondeGroupVar);
58 std::vector<float> v1_data({1.5, 2.5, 3.5, 4.5});
61 std::vector<float> v1_check;
62 auto v2 =
g.open(sondeTopGroup).open(sondeMidGroup).vars[sondeVar];
63 v2.read<
float>(v1_check);
65 if (v1_check.size() != 4) {
68 for (std::size_t i = 0; i < v1_check.size(); ++i) {
69 float checkVal = fabs((v1_check[i] / v1_data[i]) - 1.0f);
70 if (checkVal > 1.e-3) {
80 int main(
int argc,
char** argv) {
88 }
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.
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.
Used to specify Variable creation-time properties.
void test_group_backend_engine(ioda::Group g)
int main(int argc, char **argv)