Expand Globalfunctions #168

Merged
meggert merged 8 commits from expand-globalfunctions into develop 2024-02-27 12:50:30 +01:00
Showing only changes of commit b2576d3422 - Show all commits

View File

@ -12,8 +12,7 @@ class TimeSystems {
virtual ~TimeSystems() {}
static double convertUnixToJD2000(timeval time) {
// time = {{s},{us}}
return (time.tv_sec / 86400.0) + 2440587.5 - 2451545;
return ((time.tv_sec + time.tv_usec * 1e-6) / 86400.0) + 2440587.5 - 2451545;
}
};