IODA
test_oldfiles.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 #include <iostream>
8 #include <string>
9 #include <vector>
10 
11 #include "ioda/Engines/HH.h"
12 #include "ioda/Exception.h"
13 #include "ioda/Group.h"
14 #include "ioda/ObsGroup.h"
15 #include "ioda/defs.h"
16 
17 int main(int, char**) {
18  try {
19  using namespace std;
20  string srcfile(
21  "C:/Users/ryan/Downloads/testinput_tier_1.tar/testinput_tier_1/atms_npp_obs_2018041500_m.nc4");
22 
23  using namespace ioda;
24  Group f = Engines::HH::openFile(srcfile, Engines::BackendOpenModes::Read_Only);
25  Variable datetime = f.vars["datetime@MetaData"];
26  Variable variable_names = f.vars["variable_names@VarMetaData"];
27 
28  if (!datetime.isA<string>()) throw ioda::Exception("Unexpected type.", ioda_Here());
29 
30  // vector<char> vd = datetime.readAsVector<char>();
31 
32  // vector<string> vDatetimes = datetime.readAsVector<
33  // std::string,
34  // ioda::detail::Object_Accessor_Fixed_Array<std::string, char*>
35  //>();
36  vector<string> vDatetimes = datetime.readAsVector<std::string>();
37  cout << "vDatetimes has " << vDatetimes.size() << " elements.\n";
38 
39  // Attribute satellite = f.atts["satellite"];
40 
41  return 0;
42  } catch (const std::exception& e) {
44  return 1;
45  } catch (...) {
46  std::cerr << "Unknown exception." << std::endl;
47  return 2;
48  }
49 }
IODA's error system.
Interfaces for ioda::Group and related classes.
HDF5 engine.
Interfaces for ioda::ObsGroup and related classes.
The ioda exception class.
Definition: Exception.h:54
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
Variables store data!
Definition: Variable.h:680
Has_Variables vars
Use this to access variables.
Definition: Group.h:123
bool isA() const
Convenience function to check a Variable's storage type.
Definition: Variable.h:99
std::vector< DataType > readAsVector(const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read the variable into a new vector. Python convenience function.
Definition: Variable.h:502
Common preprocessor definitions used throughout IODA.
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147
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
#define ioda_Here()
int main(int, char **)