15 int main(
int argc,
char** argv) {
23 NewDimensionScale<int16_t>(
"Channel", 64),
24 NewDimensionScale<uint16_t>(
"Level", 100)};
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)
46 newvars.reserve(1005);
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));
55 og.vars.createWithScales(newvars);
57 }
catch (
const std::exception& e) {
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...
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.
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...
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.
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
Used to specify Variable creation-time properties.
void compressWithGZIP(int level=6)