IODA
odc_converter.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 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 <cstdlib>
8 #include <iomanip>
9 #include <iostream>
10 #include <numeric>
11 #include <string>
12 
13 #include "ioda/Engines/HH.h"
14 #include "ioda/Engines/ODC.h"
15 #include "ioda/Group.h"
16 #include "ioda/ObsGroup.h"
17 #include "ioda/defs.h"
18 #include "eckit/filesystem/PathName.h"
19 
20 int main(int argc, char** argv) {
21  try {
22  using namespace ioda;
23 
24  if (argc != 5) {
25  std::cerr << "Usage: " << argv[0]
26  << " subtype_str "
27  "filename mappingFile queryFile"
28  << std::endl;
29  return 1;
30  }
31 
33  const std::string subtype_str = argv[1];
34  odcparams.filename = argv[2];
35  odcparams.mappingFile = argv[3];
36  odcparams.queryFile = argv[4];
37 
38  auto f = Engines::HH::createFile("testoutput/test-" + subtype_str + ".hdf",
40  auto og = Engines::ODC::openFile(odcparams, f);
41  } catch (const std::exception& e) {
43  return 1;
44  }
45  return 0;
46 }
Interfaces for ioda::Group and related classes.
HDF5 engine.
ODB / ODC engine.
Interfaces for ioda::ObsGroup and related classes.
Common preprocessor definitions used throughout IODA.
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:120
IODA_DL ObsGroup openFile(const ODC_Parameters &params, Group emptyStorageGroup=ioda::Engines::ObsStore::createRootGroup())
Import an ODB file.
Definition: ODC.cpp:56
@ Truncate_If_Exists
If the file already exists, overwrite it.
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
int main(int argc, char **argv)
Encapsulate the parameters to make calling simpler.
Definition: ODC.h:32
std::string filename
The name of the database "file" to open.
Definition: ODC.h:34