14 #include "ioda/testconfig.h"
16 #include "eckit/testing/Test.h"
18 #include "oops/util/FloatCompare.h"
20 using namespace eckit::testing;
28 CASE(
"Convert variables") {
29 typedef std::string str;
30 str mappingFile = str(IODA_ENGINES_TEST_SOURCE_DIR)
31 +
"/variables/hasvariables_unitconversion_map.yaml";
34 backendParams.
fileName =
"ioda-engines_hasvariables_unitconv-file.hdf5";
35 backendParams.
action = Engines::BackendFileActions::Create;
36 backendParams.
createMode = Engines::BackendCreateModes::Truncate_If_Exists;
40 temp.
write<
double>({0.0, 50.0, 100.0});
42 windspeed.
write<
double>({0.0, 50.0, 100.0});
44 relativeHumidity.
write<
double>({0.0, 50.0, 100.0});
46 pressure.
write<
double>({0.0, 50.0, 100.0});
48 angle.
write<
double>({0.0, 50.0, 100.0});
50 cloudCoverage.
write<
double>({0.0, 50.0, 100.0});
52 undefinedUnit.
write<
double>({0.0, 50.0, 100.0});
59 detail::DataLayoutPolicy::generate(
"ObsGroupODB",
62 std::vector<double> expectedValue = {0.0, 50.0, 100.0};
63 std::vector<double> retrievedValue;
64 og.vars.open(
"temp").read<
double>(retrievedValue);
65 EXPECT(retrievedValue == expectedValue);
66 og.vars.convertVariableUnits();
67 temp =
og.vars.open(
"temp");
71 EXPECT(tempUnit ==
"kelvin");
72 og.vars.open(
"temp").read<
double>(retrievedValue);
73 expectedValue = {273.15, 323.15, 373.15};
74 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
75 og.vars.open(
"windspeed").read<
double>(retrievedValue);
76 expectedValue = {0.0, 25.7222, 51.4444};
77 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
78 og.vars.open(
"rh").read(retrievedValue);
79 expectedValue = {0.0, 0.5, 1.0};
80 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
81 og.vars.open(
"press").read<
double>(retrievedValue);
82 expectedValue = {0.0, 5000.0, 10000.0};
83 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
84 og.vars.open(
"angle").read<
double>(retrievedValue);
85 expectedValue = {0.0, 0.872665, 1.74533};
86 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
87 og.vars.open(
"cloudCov").read<
double>(retrievedValue);
88 expectedValue = {0.0, 6.25, 12.5};
89 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
91 bar.
read<
double>(retrievedValue);
94 EXPECT(barUnit ==
"baz");
95 expectedValue = {0.0, 50.0, 100.0};
96 EXPECT(oops::are_all_close_relative(retrievedValue, expectedValue, .05));
101 int main(
int argc,
char** argv) {
102 return run_tests(argc, argv);
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Has_Variables and related classes.
Contains definitions for how data are arranged in ioda internally.
Interfaces for ioda::ObsGroup and related classes.
Groups are a new implementation of ObsSpaces.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
virtual Attribute_Implementation read(gsl::span< char > data, const Type &in_memory_dataType) const
The fundamental read function. Backends overload this function to implement all read operations.
Has_Variables vars
Use this to access variables.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
virtual Variable create(const std::string &name, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}, const std::vector< Dimensions_t > &max_dimensions={}, const VariableCreationParameters ¶ms=VariableCreationParameters())
Create a Variable without setting its data.
Has_Attributes atts
Attributes.
virtual Variable read(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read the Variable - as char array. Ordering is row-major.
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
BackendNames
Backend names.
IODA_DL Group constructBackend(BackendNames name, BackendCreationParameters ¶ms)
This is a simple factory style function that will instantiate a different backend based on a given na...
constexpr int Unlimited
Specifies that a dimension is resizable to infinity.
Used to specify backend creation-time properties.
BackendFileActions action
BackendCreateModes createMode
int main(int argc, char **argv)