IODA
UnitConversions.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Crown copyright 2021, Met Office
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /// \file UnitConversions.h
9 /// \brief Basic arithmetic unit conversions to SI
10 
11 #include "ioda/defs.h"
12 
13 #include <functional>
14 #include <unordered_map>
15 #include <string>
16 #include <vector>
17 
18 namespace ioda {
19 namespace detail {
20 
21 inline double celsiusToKelvin(double temp) {
22  return temp + 273.15;
23 }
24 
25 inline double knotsToMetersPerSecond(double knots) {
26  return knots * 0.514444;
27 }
28 
29 inline double percentageToFraction(double percentage) {
30  return percentage * 0.01;
31 }
32 
33 inline double hectopascalToPascal(double hPa) {
34  return hPa * 100;
35 }
36 
37 inline double degreesToRadians(double deg) {
38  return deg * .0174533;
39 }
40 
41 inline double oktaToFraction(double okta) {
42  return okta * .125;
43 }
44 
45 /// @todo Move to source file.
46 const std::unordered_map<std::string, std::function<double(double)>> unitConversionEquations {
47  {"celsius", celsiusToKelvin},
48  {"knot", knotsToMetersPerSecond},
49  {"percentage", percentageToFraction},
50  {"hectopascal", hectopascalToPascal},
51  {"degree", degreesToRadians},
52  {"okta", oktaToFraction}
53 };
54 
55 /// @todo Move to source file.
56 const std::unordered_map<std::string, std::string> equivalentSIUnit {
57  {"celsius", "kelvin"},
58  {"knot", "meters per second"},
59  {"percentage", "-"},
60  {"hectopascal", "pascal"},
61  {"degree", "radian"},
62  {"okta", "-"}
63 };
64 
65 } // namespace detail
66 
67 IODA_DL void convertColumn(const std::string &unit, std::vector<double> &dataToConvert);
68 IODA_DL std::string getSIUnit(const std::string &unit);
69 } // namespace ioda
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
double hectopascalToPascal(double hPa)
const std::unordered_map< std::string, std::string > equivalentSIUnit
double percentageToFraction(double percentage)
const std::unordered_map< std::string, std::function< double(double)> > unitConversionEquations
double knotsToMetersPerSecond(double knots)
double degreesToRadians(double deg)
double celsiusToKelvin(double temp)
double oktaToFraction(double okta)
IODA_DL std::string getSIUnit(const std::string &unit)
IODA_DL void convertColumn(const std::string &unit, std::vector< double > &dataToConvert)