ADD: added M/S Knots conversion and correction functions for course and clb

This commit is contained in:
Henry Winkel
2023-11-02 11:05:42 +01:00
parent e879a12f26
commit 49dd5e295f
2 changed files with 52 additions and 0 deletions

View File

@@ -12,6 +12,8 @@
namespace SimCore {
#define __MS_TO_KNOTS__ 1.943844;
class UtilFunctions
{
public:
@@ -27,9 +29,20 @@ namespace SimCore {
static double DegToRad(double deg);
static double RadToDeg(double rad);
static double MSToKnots(double ms);
static double KnotsToMs(double knots);
static double ShiftRadCrs(double Rad);
static double ShiftRadClb(double Rad);
};
class AsyncWorker {
std::atomic<bool> active{true};