IODA
ioda-test-collective-functions.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 <iostream>
8 #include <sstream>
9 #include <vector>
10 
11 #include "ioda/Engines/Factory.h"
12 #include "ioda/Exception.h"
13 #include "ioda/ObsGroup.h"
14 
15 int main(int argc, char** argv) {
16  using namespace ioda;
17  using namespace std;
18  try {
19  auto f = Engines::constructFromCmdLine(argc, argv, "collective.hdf5");
20 
21  // Create a new ObsGroup with a few scales.
22  NewDimensionScales_t newdims{NewDimensionScale<int32_t>("Location", 1000),
23  NewDimensionScale<int16_t>("Channel", 64),
24  NewDimensionScale<uint16_t>("Level", 100)};
25  ObsGroup og = ObsGroup::generate(f, newdims);
26  Variable sLocation = og.vars["Location"];
27  Variable sChannel = og.vars["Channel"];
28  Variable sLevel = og.vars["Level"];
29 
30 
31  // Create many variables, but use the collective operation instead
32  // of the usual createWithScales.
33  VariableCreationParameters vcpf = VariableCreationParameters::defaulted<float>();
34  vcpf.compressWithGZIP();
35  VariableCreationParameters vcpd = VariableCreationParameters::defaulted<double>();
36  vcpd.compressWithGZIP();
37 
38  NewVariables_t newvars{
39  NewVariable<float>("Metadata/Latitude", {sLocation}, vcpf),
40  NewVariable<float>("Metadata/Longitude", {sLocation}, vcpf),
41  NewVariable<float>("Metadata/Pressure_Level", {sLevel}, vcpf),
42  NewVariable<double>("ObsValue/Brightness_Temperature", {sLocation, sChannel}, vcpd),
43  NewVariable<float>("Metadata/Altitude", {sLocation, sLevel}, vcpf)
44  };
45 
46  newvars.reserve(1005);
47 
48  for (size_t i = 0; i < 1000; ++i) {
49  std::ostringstream varname;
50  varname << "ObsValue/var-" << i;
51  newvars.push_back(NewVariable<float>(varname.str(), {sLocation, sChannel}, vcpf));
52  }
53 
54 
55  og.vars.createWithScales(newvars);
56 
57  } catch (const std::exception& e) {
59  return 1;
60  }
61 }
IODA's error system.
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::ObsGroup and related classes.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
static ObsGroup generate(Group &emptyGroup, const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout=nullptr)
Create an empty ObsGroup and populate it with the fundamental dimensions.
Definition: ObsGroup.cpp:72
Variables store data!
Definition: Variable.h:680
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
int main(int argc, char **argv)
std::vector< std::shared_ptr< NewVariable_Base > > NewVariables_t
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
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57