IODA
UnitConversions.cpp
Go to the documentation of this file.
1 /*
2  * (C) Crown Copyright 2021 Met Office
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  */
8 #include "ioda/Exception.h"
9 
10 #include <functional>
11 #include <stdexcept>
12 #include <string>
13 #include <vector>
14 
15 namespace ioda {
16 void convertColumn(const std::string &unit, std::vector<double> &dataToConvert) {
17  try {
18  std::function<double(double)> conversionFunction = detail::unitConversionEquations.at(unit);
19  for (double& value : dataToConvert) {
20  value = conversionFunction(value);
21  }
22  } catch (std::out_of_range) {
23  throw Exception("unit does not have a defined unit conversion equation", ioda_Here())
24  .add("unit", unit);
25  }
26 }
27 std::string getSIUnit(const std::string &unit) {
28  try {
29  std::string siUnit = detail::equivalentSIUnit.at(unit);
30  return siUnit;
31  } catch (std::out_of_range) {
32  throw Exception("unit does not have a defined unit conversion equation", ioda_Here())
33  .add("unit", unit);
34  }
35 }
36 } // namespace ioda
IODA's error system.
Basic arithmetic unit conversions to SI.
The ioda exception class.
Definition: Exception.h:54
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
Definition: Exception.h:75
const std::unordered_map< std::string, std::string > equivalentSIUnit
const std::unordered_map< std::string, std::function< double(double)> > unitConversionEquations
IODA_DL std::string getSIUnit(const std::string &unit)
IODA_DL void convertColumn(const std::string &unit, std::vector< double > &dataToConvert)
#define ioda_Here()