0.3.0
Loading...
Searching...
No Matches
InsTime.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
17
18#pragma once
19
20#include <cstdint>
21#include <string>
22#include <array>
23#include <limits>
24#include <iostream>
25#include <chrono>
26
27#include <fmt/ostream.h>
28#include "gcem.hpp"
29
30#include <nlohmann/json.hpp>
31using json = nlohmann::json;
32
33#include "TimeSystem.hpp"
35
36namespace NAV
37{
39namespace InsTimeUtil
40{
41constexpr int32_t END_OF_THE_CENTURY_MJD = 400000;
42constexpr int32_t WEEKS_PER_GPS_CYCLE = 1024;
43constexpr int32_t DIFF_TO_6_1_1980_MJD = 44244;
44constexpr int32_t DIFF_TO_1_1_1970_MJD = 40587;
45constexpr int32_t DIFF_BDT_WEEK_TO_GPST_WEEK = 1356;
46
47constexpr int32_t DIFF_MJD_TO_JD_DAYS = 2400000;
48constexpr long double DIFF_MJD_TO_JD_FRAC = 0.5L;
49
50constexpr int32_t MONTHS_PER_YEAR = 12;
51constexpr int32_t DAYS_PER_YEAR = 365;
52constexpr int32_t DAYS_PER_WEEK = 7;
53constexpr int32_t HOURS_PER_DAY = 24;
55constexpr int32_t MINUTES_PER_HOUR = 60;
58constexpr int32_t SECONDS_PER_MINUTE = 60;
62
67constexpr long double EPSILON = std::max(1e-17L, 10 * std::numeric_limits<long double>::epsilon());
68
70constexpr std::array<int32_t, 20> GPS_LEAP_SEC_MJD = {
71 0, // + 0 at 1 Jan 1980 and before
72 44786, // + 1 at 1 Jul 1981 = diff UTC-TAI: 20
73 45151, // + 2 at 1 Jul 1982 = diff UTC-TAI: 21
74 45516, // + 3 at 1 Jul 1983 = diff UTC-TAI: 22
75 46247, // + 4 at 1 Jul 1985 = diff UTC-TAI: 23
76 47161, // + 5 at 1 Jan 1988 = diff UTC-TAI: 24
77 47892, // + 6 at 1 Jan 1990 = diff UTC-TAI: 25
78 48257, // + 7 at 1 Jan 1991 = diff UTC-TAI: 26
79 48804, // + 8 at 1 Jul 1992 = diff UTC-TAI: 27
80 49169, // + 9 at 1 Jul 1993 = diff UTC-TAI: 28
81 49534, // +10 at 1 Jul 1994 = diff UTC-TAI: 29
82 50083, // +11 at 1 Jan 1996 = diff UTC-TAI: 30
83 50630, // +12 at 1 Jul 1997 = diff UTC-TAI: 31
84 51179, // +13 at 1 Jan 1999 = diff UTC-TAI: 32
85 53736, // +14 at 1 Jan 2006 = diff UTC-TAI: 33
86 54832, // +15 at 1 Jan 2009 = diff UTC-TAI: 34
87 56109, // +16 at 1 Jul 2012 = diff UTC-TAI: 35
88 57204, // +17 at 1 Jul 2015 = diff UTC-TAI: 36
89 57754, // +18 at 1 Jan 2017 = diff UTC-TAI: 37
90 99999, // future
91};
92
96constexpr bool isLeapYear(int32_t year)
97{
98 return (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0));
99}
100
105constexpr int32_t daysInMonth(int32_t month, int32_t year)
106{
107 --month; // Make month 0 based
108 if (month >= InsTimeUtil::MONTHS_PER_YEAR)
109 {
110 year += month / InsTimeUtil::MONTHS_PER_YEAR;
112 }
113 while (month < 0)
114 {
115 month += MONTHS_PER_YEAR;
116 year--;
117 }
118 ++month; // Make month 1 based
119
120 switch (month)
121 {
122 case 1:
123 return 31;
124 case 2:
125 if (isLeapYear(year))
126 {
127 return 29;
128 }
129 return 28;
130 case 3:
131 return 31;
132 case 4:
133 return 30;
134 case 5:
135 return 31;
136 case 6:
137 return 30;
138 case 7:
139 return 31;
140 case 8:
141 return 31;
142 case 9:
143 return 30;
144 case 10:
145 return 31;
146 case 11:
147 return 30;
148 case 12:
149 return 31;
150 default:
151 return 366;
152 }
153}
154} // namespace InsTimeUtil
155
158{
159 int32_t mjd_day = 0;
160 long double mjd_frac = 0.0L;
161
163 constexpr InsTime_MJD() = default;
164
168 constexpr InsTime_MJD(int32_t mjd_day, long double mjd_frac)
170 {
171 if (this->mjd_frac >= 1.0L)
172 {
173 this->mjd_day += static_cast<int32_t>(this->mjd_frac);
174 this->mjd_frac -= static_cast<int32_t>(this->mjd_frac);
175 }
176 while (this->mjd_frac < 0.0L)
177 {
178 this->mjd_frac += 1.0L;
179 this->mjd_day--;
180 }
181 }
182
186 constexpr bool operator==(const InsTime_MJD& rhs) const
187 {
188 if (mjd_day == rhs.mjd_day)
189 {
190 auto difference = gcem::abs(mjd_frac - rhs.mjd_frac);
191 return difference <= InsTimeUtil::EPSILON;
192 }
193 if (auto diffDays = mjd_day - rhs.mjd_day;
194 gcem::abs(diffDays) == 1)
195 {
196 auto difference = 1 + diffDays * (mjd_frac - rhs.mjd_frac);
197 return difference <= InsTimeUtil::EPSILON;
198 }
199 return false;
200 }
204 constexpr bool operator!=(const InsTime_MJD& rhs) const
205 {
206 return !(*this == rhs);
207 }
211 constexpr bool operator<=(const InsTime_MJD& rhs) const
212 {
213 return *this < rhs || *this == rhs;
214 }
218 constexpr bool operator>=(const InsTime_MJD& rhs) const
219 {
220 return *this > rhs || *this == rhs;
221 }
225 constexpr bool operator<(const InsTime_MJD& rhs) const
226 {
227 return (mjd_day < rhs.mjd_day || (mjd_day == rhs.mjd_day && mjd_frac < rhs.mjd_frac))
228 && *this != rhs;
229 }
233 constexpr bool operator>(const InsTime_MJD& rhs) const
234 {
235 return !(*this <= rhs);
236 }
237
239 explicit operator std::string() const;
240};
241
244{
245 int32_t jd_day{};
246 long double jd_frac{};
247
251 constexpr InsTime_JD(int32_t jd_day, long double jd_frac)
253 {
254 if (this->jd_frac >= 1.0L)
255 {
256 this->jd_day += static_cast<int32_t>(this->jd_frac);
257 this->jd_frac -= static_cast<int32_t>(this->jd_frac);
258 }
259 while (this->jd_frac < 0.0L)
260 {
261 this->jd_frac += 1.0L;
262 this->jd_day--;
263 }
264 }
265
269 constexpr bool operator==(const InsTime_JD& rhs) const
270 {
271 if (jd_day == rhs.jd_day)
272 {
273 auto difference = gcem::abs(jd_frac - rhs.jd_frac);
274 return difference <= InsTimeUtil::EPSILON;
275 }
276 if (auto diffDays = jd_day - rhs.jd_day;
277 gcem::abs(diffDays) == 1)
278 {
279 auto difference = 1 + diffDays * (jd_frac - rhs.jd_frac);
280 return difference <= InsTimeUtil::EPSILON;
281 }
282 return false;
283 }
287 constexpr bool operator!=(const InsTime_JD& rhs) const
288 {
289 return !(*this == rhs);
290 }
294 constexpr bool operator<=(const InsTime_JD& rhs) const
295 {
296 return *this < rhs || *this == rhs;
297 }
301 constexpr bool operator>=(const InsTime_JD& rhs) const
302 {
303 return *this > rhs || *this == rhs;
304 }
308 constexpr bool operator<(const InsTime_JD& rhs) const
309 {
310 return (jd_day < rhs.jd_day || (jd_day == rhs.jd_day && jd_frac < rhs.jd_frac))
311 && *this != rhs;
312 }
316 constexpr bool operator>(const InsTime_JD& rhs) const
317 {
318 return !(*this <= rhs);
319 }
320
322 explicit operator std::string() const;
323};
324
327{
328 int32_t gpsCycle{};
329 int32_t gpsWeek{};
330 long double tow{};
331
336 constexpr InsTime_GPSweekTow(int32_t gpsCycle, int32_t gpsWeek, long double tow)
338 {
339 if (this->tow >= InsTimeUtil::SECONDS_PER_WEEK)
340 {
341 this->gpsWeek += static_cast<int32_t>(this->tow / InsTimeUtil::SECONDS_PER_WEEK);
342 this->tow = gcem::fmod(this->tow, InsTimeUtil::SECONDS_PER_WEEK);
343 }
344 while (this->tow < 0.0L)
345 {
347 this->gpsWeek--;
348 }
349
350 if (this->gpsWeek >= InsTimeUtil::WEEKS_PER_GPS_CYCLE)
351 {
352 this->gpsCycle += this->gpsWeek / InsTimeUtil::WEEKS_PER_GPS_CYCLE;
353 this->gpsWeek %= InsTimeUtil::WEEKS_PER_GPS_CYCLE;
354 }
355 while (this->gpsWeek < 0)
356 {
357 this->gpsWeek += InsTimeUtil::WEEKS_PER_GPS_CYCLE;
358 this->gpsCycle--;
359 }
360 };
361
365 constexpr bool operator==(const InsTime_GPSweekTow& rhs) const
366 {
367 if (gpsCycle == rhs.gpsCycle && gpsWeek == rhs.gpsWeek)
368 {
369 return gcem::abs(tow - rhs.tow) <= InsTimeUtil::EPSILON;
370 }
372 gcem::abs(diffWeeks) == 1)
373 {
374 return gcem::abs(tow + diffWeeks * InsTimeUtil::SECONDS_PER_WEEK - rhs.tow) <= InsTimeUtil::EPSILON;
375 }
376 return false;
377 }
381 constexpr bool operator!=(const InsTime_GPSweekTow& rhs) const
382 {
383 return !(*this == rhs);
384 }
388 constexpr bool operator<=(const InsTime_GPSweekTow& rhs) const
389 {
390 return *this < rhs || *this == rhs;
391 }
395 constexpr bool operator>=(const InsTime_GPSweekTow& rhs) const
396 {
397 return *this > rhs || *this == rhs;
398 }
402 constexpr bool operator<(const InsTime_GPSweekTow& rhs) const
403 {
404 return (gpsCycle < rhs.gpsCycle
405 || (gpsCycle == rhs.gpsCycle && gpsWeek < rhs.gpsWeek)
406 || (gpsCycle == rhs.gpsCycle && gpsWeek == rhs.gpsWeek && tow < rhs.tow))
407 && *this != rhs;
408 }
412 constexpr bool operator>(const InsTime_GPSweekTow& rhs) const
413 {
414 return !(*this <= rhs);
415 }
416
418 explicit operator std::string() const;
419};
420
423{
424 int32_t year{};
425 int32_t month{};
426 int32_t day{};
427 int32_t hour{};
428 int32_t min{};
429 long double sec{};
430
439 constexpr InsTime_YMDHMS(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, long double sec, int digits = -1)
441 {
442 if (digits >= 0) { this->sec = math::round(this->sec, static_cast<size_t>(digits)); }
443 if (this->sec >= InsTimeUtil::SECONDS_PER_MINUTE)
444 {
445 this->min += static_cast<int32_t>(this->sec / InsTimeUtil::SECONDS_PER_MINUTE);
446 this->sec = gcem::fmod(this->sec, InsTimeUtil::SECONDS_PER_MINUTE);
447 }
448 while (this->sec < 0.0L)
449 {
451 this->min--;
452 }
453 if (digits >= 0) { this->sec = math::round(this->sec, static_cast<size_t>(digits)); }
454
455 if (this->min >= InsTimeUtil::MINUTES_PER_HOUR)
456 {
457 this->hour += this->min / InsTimeUtil::MINUTES_PER_HOUR;
459 }
460 while (this->min < 0)
461 {
463 this->hour--;
464 }
465
466 if (this->hour >= InsTimeUtil::HOURS_PER_DAY)
467 {
468 this->day += this->hour / InsTimeUtil::HOURS_PER_DAY;
469 this->hour %= InsTimeUtil::HOURS_PER_DAY;
470 }
471 while (this->hour < 0)
472 {
473 this->hour += InsTimeUtil::HOURS_PER_DAY;
474 this->day--;
475 }
476
477 while (this->day >= InsTimeUtil::DAYS_PER_YEAR + static_cast<int32_t>(InsTimeUtil::isLeapYear(this->year)))
478 {
479 this->day -= InsTimeUtil::DAYS_PER_YEAR + static_cast<int32_t>(InsTimeUtil::isLeapYear(this->year));
480 this->year++;
481 }
482
483 while (this->day > InsTimeUtil::daysInMonth(this->month, this->year))
484 {
485 this->day -= InsTimeUtil::daysInMonth(this->month, this->year);
486 this->month++;
487 }
488 while (this->day < 1)
489 {
490 this->month--;
491 this->day += InsTimeUtil::daysInMonth(this->month, this->year);
492 }
493
494 while (this->month > InsTimeUtil::MONTHS_PER_YEAR)
495 {
496 this->month -= InsTimeUtil::MONTHS_PER_YEAR;
497 this->year++;
498 }
499 while (this->month < 1)
500 {
501 this->month += InsTimeUtil::MONTHS_PER_YEAR;
502 this->year--;
503 }
504 }
505
509 constexpr bool operator==(const InsTime_YMDHMS& rhs) const
510 {
511 if (year == rhs.year && month == rhs.month && day == rhs.day && hour == rhs.hour && min == rhs.min)
512 {
513 return gcem::abs(sec - rhs.sec) <= InsTimeUtil::EPSILON;
514 }
515 InsTime_YMDHMS this_plus = InsTime_YMDHMS(this->year, this->month, this->day, this->hour, this->min, this->sec + 10);
516 InsTime_YMDHMS rhs_plus = InsTime_YMDHMS(rhs.year, rhs.month, rhs.day, rhs.hour, rhs.min, rhs.sec + 10);
517 if (this_plus.year == rhs_plus.year && this_plus.month == rhs_plus.month && this_plus.day == rhs_plus.day && this_plus.hour == rhs_plus.hour && this_plus.min == rhs_plus.min)
518 {
519 return gcem::abs(this_plus.sec - rhs_plus.sec) <= InsTimeUtil::EPSILON;
520 }
521 return false;
522 }
526 constexpr bool operator!=(const InsTime_YMDHMS& rhs) const
527 {
528 return !(*this == rhs);
529 }
533 constexpr bool operator<=(const InsTime_YMDHMS& rhs) const
534 {
535 return *this < rhs || *this == rhs;
536 }
540 constexpr bool operator>=(const InsTime_YMDHMS& rhs) const
541 {
542 return *this > rhs || *this == rhs;
543 }
547 constexpr bool operator<(const InsTime_YMDHMS& rhs) const
548 {
549 return (year < rhs.year
550 || (year == rhs.year && month < rhs.month)
551 || (year == rhs.year && month == rhs.month && day < rhs.day)
552 || (year == rhs.year && month == rhs.month && day == rhs.day && hour < rhs.hour)
553 || (year == rhs.year && month == rhs.month && day == rhs.day && hour == rhs.hour && min < rhs.min)
554 || (year == rhs.year && month == rhs.month && day == rhs.day && hour == rhs.hour && min == rhs.min && sec < rhs.sec))
555 && *this != rhs;
556 }
560 constexpr bool operator>(const InsTime_YMDHMS& rhs) const
561 {
562 return !(*this <= rhs);
563 }
564
566 explicit operator std::string() const;
567};
568
571{
572 int32_t year{};
573 int32_t doy{};
574 long double sod{};
575
580 constexpr InsTime_YDoySod(int32_t year, int32_t doy, long double sod)
581 : year(year), doy(doy), sod(sod)
582 {
583 if (this->sod >= InsTimeUtil::SECONDS_PER_DAY)
584 {
585 this->doy += static_cast<int32_t>(this->sod / InsTimeUtil::SECONDS_PER_DAY);
586 this->sod = gcem::fmod(this->sod, InsTimeUtil::SECONDS_PER_DAY);
587 }
588 while (this->sod < 0)
589 {
590 this->sod += InsTimeUtil::SECONDS_PER_DAY;
591 this->doy--;
592 }
593
594 while (this->doy > InsTimeUtil::DAYS_PER_YEAR + static_cast<int32_t>(InsTimeUtil::isLeapYear(this->year)))
595 {
596 this->doy -= InsTimeUtil::DAYS_PER_YEAR + static_cast<int32_t>(InsTimeUtil::isLeapYear(this->year));
597 this->year++;
598 }
599 while (this->doy < 1)
600 {
601 this->doy += InsTimeUtil::DAYS_PER_YEAR + static_cast<int32_t>(InsTimeUtil::isLeapYear(this->year - 1));
602 this->year--;
603 }
604 }
605
609 constexpr bool operator==(const InsTime_YDoySod& rhs) const
610 {
611 if (year == rhs.year && doy == rhs.doy)
612 {
613 return gcem::abs(sod - rhs.sod) <= InsTimeUtil::EPSILON;
614 }
615 if (auto diffDays = year * InsTimeUtil::DAYS_PER_YEAR + doy - (rhs.year * InsTimeUtil::DAYS_PER_YEAR + rhs.doy);
616 gcem::abs(diffDays) == 1)
617 {
618 auto difference = gcem::abs(sod + diffDays * InsTimeUtil::SECONDS_PER_DAY - rhs.sod);
619 return difference <= InsTimeUtil::EPSILON;
620 }
621 return false;
622 }
626 constexpr bool operator!=(const InsTime_YDoySod& rhs) const
627 {
628 return !(*this == rhs);
629 }
633 constexpr bool operator<=(const InsTime_YDoySod& rhs) const
634 {
635 return *this < rhs || *this == rhs;
636 }
640 constexpr bool operator>=(const InsTime_YDoySod& rhs) const
641 {
642 return *this > rhs || *this == rhs;
643 }
647 constexpr bool operator<(const InsTime_YDoySod& rhs) const
648 {
649 return (year < rhs.year
650 || (year == rhs.year && doy < rhs.doy)
651 || (year == rhs.year && doy == rhs.doy && sod < rhs.sod))
652 && *this != rhs;
653 }
657 constexpr bool operator>(const InsTime_YDoySod& rhs) const
658 {
659 return !(*this <= rhs);
660 }
661
663 explicit operator std::string() const;
664};
665
668{
669 public:
670 /* ------------------------------ Constructors ------------------------------ */
671
673 constexpr InsTime() = default;
674
678 constexpr explicit InsTime(const InsTime_MJD& mjd, TimeSystem timesys = UTC)
679 : _mjd(mjd)
680 {
681 *this -= std::chrono::duration<long double>(differenceToUTC(timesys));
682 }
683
687 constexpr explicit InsTime(const InsTime_JD& jd, TimeSystem timesys = UTC)
688 : _mjd(jd.jd_day - InsTimeUtil::DIFF_MJD_TO_JD_DAYS, jd.jd_frac - InsTimeUtil::DIFF_MJD_TO_JD_FRAC)
689 {
690 *this -= std::chrono::duration<long double>(differenceToUTC(timesys));
691 }
692
696 constexpr explicit InsTime(const InsTime_GPSweekTow& gpsWeekTow, TimeSystem timesys = GPST)
697 {
698 auto mjd_day = static_cast<int32_t>((gpsWeekTow.gpsCycle * InsTimeUtil::WEEKS_PER_GPS_CYCLE + gpsWeekTow.gpsWeek) * InsTimeUtil::DAYS_PER_WEEK
699 + gcem::floor(gpsWeekTow.tow / InsTimeUtil::SECONDS_PER_DAY)
701 long double mjd_frac = gcem::fmod(gpsWeekTow.tow, InsTimeUtil::SECONDS_PER_DAY) / InsTimeUtil::SECONDS_PER_DAY;
702
703 _mjd = InsTime_MJD(mjd_day, mjd_frac);
704
705 *this -= std::chrono::duration<long double>(differenceToUTC(timesys));
706 }
707
711 constexpr explicit InsTime(const InsTime_YMDHMS& yearMonthDayHMS, TimeSystem timesys = UTC)
712 {
713 auto a = static_cast<int32_t>((14 - yearMonthDayHMS.month) / static_cast<double>(InsTimeUtil::MONTHS_PER_YEAR));
714 int32_t y = yearMonthDayHMS.year + 4800 - a;
715 int32_t m = yearMonthDayHMS.month + InsTimeUtil::MONTHS_PER_YEAR * a - 3;
716
717 auto jd_day = static_cast<int32_t>(yearMonthDayHMS.day
718 + gcem::floor((153.0 * static_cast<double>(m) + 2.0) / 5.0)
720 + gcem::floor(static_cast<double>(y) / 4.0)
721 - gcem::floor(static_cast<double>(y) / 100.0)
722 + gcem::floor(static_cast<double>(y) / 400.0)
723 - 32045);
724 auto jd_frac = (yearMonthDayHMS.sec
725 + static_cast<long double>(yearMonthDayHMS.min) * InsTimeUtil::SECONDS_PER_MINUTE
726 + static_cast<long double>(yearMonthDayHMS.hour - 12.0) * InsTimeUtil::SECONDS_PER_HOUR)
728
729 _mjd = InsTime(InsTime_JD(jd_day, jd_frac)).toMJD();
730
731 *this -= std::chrono::duration<long double>(differenceToUTC(timesys));
732 }
733
737 constexpr explicit InsTime(const InsTime_YDoySod& yearDoySod, TimeSystem timesys = UTC)
738 {
739 auto year = yearDoySod.year;
740 auto doy = yearDoySod.doy;
741 auto sod = yearDoySod.sod;
742
743 int32_t month = 1;
744 while (doy > InsTimeUtil::daysInMonth(month, year))
745 {
746 doy -= InsTimeUtil::daysInMonth(month, year);
747 month++;
748 }
749
750 _mjd = InsTime(InsTime_YMDHMS(year, month, doy, 0, 0, sod)).toMJD();
751
752 *this -= std::chrono::duration<long double>(differenceToUTC(timesys));
753 }
754
760 constexpr InsTime(int32_t gpsCycle, int32_t gpsWeek, long double tow, TimeSystem timesys = GPST)
761 : InsTime(InsTime_GPSweekTow(gpsCycle, gpsWeek, tow), timesys) {}
762
771 constexpr InsTime(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, long double sec, TimeSystem timesys = UTC)
772 : InsTime(InsTime_YMDHMS(year, month, day, hour, min, sec), timesys) {}
773
775 ~InsTime() = default;
777 constexpr InsTime(const InsTime&) = default;
779 constexpr InsTime(InsTime&&) = default;
781 constexpr InsTime& operator=(const InsTime&) = default;
783 constexpr InsTime& operator=(InsTime&&) = default;
784
785 /* ------------------------ Transformation functions ------------------------ */
786
790 [[nodiscard]] constexpr InsTime_MJD toMJD(TimeSystem timesys = UTC) const
791 {
792 long double mjdFrac = _mjd.mjd_frac + static_cast<long double>(differenceToUTC(timesys)) / static_cast<long double>(InsTimeUtil::SECONDS_PER_DAY);
793 return { _mjd.mjd_day, mjdFrac };
794 }
795
799 [[nodiscard]] constexpr InsTime_JD toJD(TimeSystem timesys = UTC) const
800 {
803
804 jd_frac += static_cast<long double>(differenceToUTC(timesys)) / static_cast<long double>(InsTimeUtil::SECONDS_PER_DAY);
805
806 return { jd_day, jd_frac };
807 }
808
812 [[nodiscard]] constexpr InsTime_GPSweekTow toGPSweekTow(TimeSystem timesys = GPST) const
813 {
814 InsTime_MJD mjd_leap = _mjd;
815 // Convert from UTC to intended time system
816 mjd_leap.mjd_frac += static_cast<long double>(differenceToUTC(timesys)) / static_cast<long double>(InsTimeUtil::SECONDS_PER_DAY);
817
818 // Put everything in the time of week, as it gets splitted in InsTime_GPSweekTow constructor
819 auto tow = static_cast<long double>((mjd_leap.mjd_day - InsTimeUtil::DIFF_TO_6_1_1980_MJD)) * InsTimeUtil::SECONDS_PER_DAY
821
822 return { 0, 0, tow };
823 }
824
829 [[nodiscard]] constexpr InsTime_YMDHMS toYMDHMS(TimeSystem timesys = UTC, int digits = -1) const
830 {
831 // transform MJD to JD
832 InsTime_JD jd = toJD();
833 jd.jd_frac = jd.jd_frac + 0.5L;
834 jd.jd_frac += static_cast<long double>(differenceToUTC(timesys)) / static_cast<long double>(InsTimeUtil::SECONDS_PER_DAY);
835 if (jd.jd_frac >= 1.0L)
836 {
837 jd.jd_day += static_cast<int32_t>(jd.jd_frac);
838 jd.jd_frac -= gcem::floor(jd.jd_frac);
839 }
840 // transform JD to YMDHMS
841 double a = 32044.0 + jd.jd_day;
842 double b = gcem::floor((4.0 * a + 3.0) / 146097.0);
843 double c = a - gcem::floor((b * 146097.0) / 4.0);
844
845 double d = gcem::floor((4.0 * c + 3.0) / 1461.0);
846 double e = c - gcem::floor((1461.0 * d) / 4.0);
847 double m = gcem::floor((5.0 * e + 2.0) / 153.0);
848
849 auto day = static_cast<uint16_t>(e - gcem::floor((153.0 * m + 2.0) / 5.0) + 1);
850 auto month = static_cast<uint16_t>(m + 3 - 12 * gcem::floor(m / 10.0));
851 auto year = static_cast<uint16_t>(b * 100 + d - 4800.0 + gcem::floor(m / 10.0));
852
853 long double sec = jd.jd_frac * InsTimeUtil::SECONDS_PER_DAY;
854
855 return { year, month, day, 0, 0, sec, digits };
856 }
857
861 [[nodiscard]] constexpr InsTime_YDoySod toYDoySod(TimeSystem timesys = UTC) const
862 {
863 InsTime_YMDHMS yearMonthDayHMS = toYMDHMS();
864
865 auto year = yearMonthDayHMS.year;
866 long double sod = static_cast<long double>(yearMonthDayHMS.hour * InsTimeUtil::SECONDS_PER_HOUR
867 + yearMonthDayHMS.min * InsTimeUtil::SECONDS_PER_MINUTE)
868 + yearMonthDayHMS.sec
869 + static_cast<long double>(differenceToUTC(timesys));
870
871 int32_t doy = 0;
872 for (int32_t i = 1; i < yearMonthDayHMS.month; i++)
873 {
874 doy += InsTimeUtil::daysInMonth(i, year);
875 }
876 doy += yearMonthDayHMS.day;
877
878 return { year, doy, sod };
879 }
880
883 [[nodiscard]] constexpr InsTime toFullDay() const
884 {
885 return InsTime(InsTime_MJD(_mjd.mjd_day, 0.0L));
886 }
887
890 [[nodiscard]] constexpr long double toUnixTime() const
891 {
894 }
895
896 /* ----------------------------- Leap functions ----------------------------- */
897
900 [[nodiscard]] constexpr uint16_t leapGps2UTC() const
901 {
902 return leapGps2UTC(_mjd);
903 }
904
908 static constexpr uint16_t leapGps2UTC(const InsTime& insTime)
909 {
910 return leapGps2UTC(insTime._mjd);
911 }
912
916 static constexpr uint16_t leapGps2UTC(const InsTime_GPSweekTow& gpsWeekTow)
917 {
918 return leapGps2UTC(InsTime(gpsWeekTow).toMJD());
919 }
920
924 static constexpr uint16_t leapGps2UTC(const InsTime_YDoySod& yearDoySod)
925 {
926 return leapGps2UTC(InsTime(yearDoySod).toMJD());
927 }
928
932 static constexpr uint16_t leapGps2UTC(const InsTime_YMDHMS& yearMonthDayHMS)
933 {
934 return leapGps2UTC(InsTime(yearMonthDayHMS).toMJD());
935 }
936
940 static constexpr uint16_t leapGps2UTC(const InsTime_JD& jd)
941 {
942 return leapGps2UTC(InsTime(jd).toMJD());
943 }
944
948 static constexpr uint16_t leapGps2UTC(const InsTime_MJD& mjd_in)
949 {
950 return static_cast<uint16_t>(std::ranges::upper_bound(InsTimeUtil::GPS_LEAP_SEC_MJD, mjd_in.mjd_day) - InsTimeUtil::GPS_LEAP_SEC_MJD.begin() - 1);
951 }
952
955 [[nodiscard]] constexpr bool isLeapYear() const
956 {
957 return InsTimeUtil::isLeapYear(toYMDHMS().year);
958 }
959
960 /* --------------------- Comparison operator overloading -------------------- */
961
965 constexpr bool operator==(const InsTime& rhs) const { return _mjd == rhs._mjd; }
969 constexpr bool operator!=(const InsTime& rhs) const { return !(*this == rhs); }
973 constexpr bool operator<=(const InsTime& rhs) const { return *this < rhs || *this == rhs; }
977 constexpr bool operator>=(const InsTime& rhs) const { return *this > rhs || *this == rhs; }
981 constexpr bool operator<(const InsTime& rhs) const { return _mjd < rhs._mjd; }
985 constexpr bool operator>(const InsTime& rhs) const { return !(*this <= rhs); }
986
987 /* --------------------- Arithmetic operator overloading -------------------- */
988
993 constexpr friend std::chrono::duration<long double> operator-(const InsTime& lhs, const InsTime& rhs)
994 {
995 auto diffDays = lhs._mjd.mjd_day - rhs._mjd.mjd_day;
996 auto diffFrac = lhs._mjd.mjd_frac - rhs._mjd.mjd_frac;
997 long double diffSec = (diffFrac + static_cast<long double>(diffDays)) * InsTimeUtil::SECONDS_PER_DAY;
998 return std::chrono::duration<long double>(diffSec);
999 }
1000
1004 constexpr InsTime& operator+=(const std::chrono::duration<long double>& duration)
1005 {
1006 auto duration_mjd_frac = std::chrono::duration<long double, std::ratio<InsTimeUtil::SECONDS_PER_DAY>>(duration).count();
1007 this->_mjd = InsTime_MJD(this->_mjd.mjd_day,
1008 this->_mjd.mjd_frac + duration_mjd_frac);
1009 return *this;
1010 }
1011
1015 constexpr InsTime& operator-=(const std::chrono::duration<long double>& duration)
1016 {
1017 auto duration_mjd_frac = std::chrono::duration<long double, std::ratio<InsTimeUtil::SECONDS_PER_DAY>>(duration).count();
1018 this->_mjd = InsTime_MJD(this->_mjd.mjd_day,
1019 this->_mjd.mjd_frac - duration_mjd_frac);
1020 return *this;
1021 }
1022
1027 constexpr friend InsTime operator+(const InsTime& time, const std::chrono::duration<long double>& duration)
1028 {
1029 return InsTime(time) += duration;
1030 }
1031
1036 constexpr friend InsTime operator-(const InsTime& time, const std::chrono::duration<long double>& duration)
1037 {
1038 return InsTime(time) -= duration;
1039 }
1040
1041 /* ---------------------------- Utility Functions --------------------------- */
1042
1044 explicit operator std::string() const;
1045
1047 [[nodiscard]] constexpr bool empty() const
1048 {
1049 return _mjd.mjd_day == 0 && _mjd.mjd_frac == 0.0L;
1050 }
1051
1053 void reset()
1054 {
1055 _mjd.mjd_day = 0;
1056 _mjd.mjd_frac = 0.0L;
1057 }
1058
1062 void MakeTimeFromGloOrbit(double UTC_sec)
1063 {
1064 auto ymdhms = toYMDHMS();
1065 // difference between toe (OBRIT-0 last element) and toc (ORBIT-0 first element) in seconds
1066 long double diff = gcem::fmod(static_cast<long double>(UTC_sec), InsTimeUtil::SECONDS_PER_DAY)
1067 - (ymdhms.hour * InsTimeUtil::SECONDS_PER_HOUR
1068 + ymdhms.min * InsTimeUtil::SECONDS_PER_MINUTE
1069 + ymdhms.sec);
1070 // std::cout << "orbit diff " << diff << "\n";
1071 *this += std::chrono::duration<long double>(diff);
1072 }
1073
1076 [[nodiscard]] constexpr int differenceToUTC(TimeSystem timesys) const
1077 {
1078 switch (TimeSystem_(timesys))
1079 {
1080 case GPST: // = GPS Time (UTC + leap_seconds)
1081 return this->leapGps2UTC();
1082 case GLNT: // = GLONASS Time (UTC+ 3h)
1084 case GST: // = GALILEO Time (~ GPS) (UTC = GST - 18) is synchronized with TAI with a nominal offset below 50 ns
1085 return this->leapGps2UTC();
1086 case QZSST:
1087 return this->leapGps2UTC(); // TODO citation for synchronization accuracy
1088 case IRNSST:
1089 return this->leapGps2UTC(); // TODO citation for synchronization accuracy
1090 case BDT: // = BeiDou Time (UTC) is synchronized with UTC within 100 ns<
1091 return this->leapGps2UTC() - 14;
1092 case UTC:
1093 case TimeSys_None:
1094 return 0;
1095 }
1096 return 0;
1097 }
1098
1099 private:
1102};
1103
1108std::ostream& operator<<(std::ostream& os, const InsTime_MJD& mjd);
1113std::ostream& operator<<(std::ostream& os, const InsTime_JD& jd);
1118std::ostream& operator<<(std::ostream& os, const InsTime_GPSweekTow& gpsWeekTow);
1123std::ostream& operator<<(std::ostream& os, const InsTime_YMDHMS& ymdhms);
1128std::ostream& operator<<(std::ostream& os, const InsTime_YDoySod& yDoySod);
1133std::ostream& operator<<(std::ostream& os, const InsTime& insTime);
1134
1138void to_json(json& j, const InsTime& insTime);
1142void from_json(const json& j, InsTime& insTime);
1143
1144} // namespace NAV
1145
1146namespace std
1147{
1149template<>
1150struct hash<NAV::InsTime>
1151{
1154 std::size_t operator()(const NAV::InsTime& t) const
1155 {
1156 auto hash1 = std::hash<int32_t>{}(t.toMJD().mjd_day);
1157 auto hash2 = std::hash<long double>{}(t.toMJD().mjd_frac);
1158
1159 return hash1 | (hash2 << 32);
1160 }
1161};
1162} // namespace std
1163
1164#ifndef DOXYGEN_IGNORE
1165
1167template<>
1168struct fmt::formatter<NAV::InsTime_MJD> : fmt::formatter<std::string>
1169{
1174 template<typename FormatContext>
1175 auto format(const NAV::InsTime_MJD& mjd, FormatContext& ctx) const
1176 {
1177 return fmt::format_to(ctx.out(), "day={}, frac={}", mjd.mjd_day, static_cast<double>(mjd.mjd_frac));
1178 }
1179};
1181template<>
1182struct fmt::formatter<NAV::InsTime_JD> : fmt::formatter<std::string>
1183{
1188 template<typename FormatContext>
1189 auto format(const NAV::InsTime_JD& jd, FormatContext& ctx) const
1190 {
1191 return fmt::format_to(ctx.out(), "day={}, frac={}", jd.jd_day, static_cast<double>(jd.jd_frac));
1192 }
1193};
1195template<>
1196struct fmt::formatter<NAV::InsTime_GPSweekTow> : fmt::formatter<std::string>
1197{
1202 template<typename FormatContext>
1203 auto format(const NAV::InsTime_GPSweekTow& gpsWeekTow, FormatContext& ctx) const
1204 {
1205 return fmt::format_to(ctx.out(), "cycle={}, week={}, tow={}",
1206 gpsWeekTow.gpsCycle, gpsWeekTow.gpsWeek, static_cast<double>(gpsWeekTow.tow));
1207 }
1208};
1210template<>
1211struct fmt::formatter<NAV::InsTime_YMDHMS> : fmt::formatter<std::string>
1212{
1217 template<typename FormatContext>
1218 auto format(const NAV::InsTime_YMDHMS& ymdhms, FormatContext& ctx) const
1219 {
1220 return fmt::format_to(ctx.out(), "{}-{}-{} {}:{}:{:.6g}",
1221 ymdhms.year, ymdhms.month, ymdhms.day,
1222 ymdhms.hour, ymdhms.min, static_cast<double>(ymdhms.sec));
1223 }
1224};
1226template<>
1227struct fmt::formatter<NAV::InsTime_YDoySod> : fmt::formatter<std::string>
1228{
1233 template<typename FormatContext>
1234 auto format(const NAV::InsTime_YDoySod& yDoySod, FormatContext& ctx) const
1235 {
1236 return fmt::format_to(ctx.out(), "year={}, doy={}, sod={:.6g}",
1237 yDoySod.year, yDoySod.doy, static_cast<double>(yDoySod.sod));
1238 }
1239};
1241template<>
1242struct fmt::formatter<NAV::InsTime> : fmt::formatter<std::string>
1243{
1248 template<typename FormatContext>
1249 auto format(const NAV::InsTime& insTime, FormatContext& ctx) const
1250 {
1251 return fmt::format_to(ctx.out(), "{} ({})", insTime.toYMDHMS(), insTime.toGPSweekTow());
1252 }
1253};
1254
1255#endif
std::ostream & operator<<(std::ostream &os, const NAV::CycleSlipDetector::Result &obj)
Stream insertion operator overload.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Simple Math functions.
Time System defintions.
TimeSystem_
List of all time systems.
Definition TimeSystem.hpp:27
@ IRNSST
Indian Regional Navigation Satellite System Time.
Definition TimeSystem.hpp:35
@ GST
Galileo System Time.
Definition TimeSystem.hpp:32
@ BDT
BeiDou Time.
Definition TimeSystem.hpp:33
@ GLNT
GLONASS Time (GLONASST)
Definition TimeSystem.hpp:31
@ TimeSys_None
No Time system.
Definition TimeSystem.hpp:28
@ QZSST
Quasi-Zenith Satellite System Time.
Definition TimeSystem.hpp:34
@ GPST
GPS Time.
Definition TimeSystem.hpp:30
@ UTC
Coordinated Universal Time.
Definition TimeSystem.hpp:29
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
constexpr InsTime(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, long double sec, TimeSystem timesys=UTC)
Constructor.
Definition InsTime.hpp:771
constexpr InsTime(const InsTime &)=default
Copy constructor.
constexpr InsTime()=default
Default Constructor.
constexpr InsTime_JD toJD(TimeSystem timesys=UTC) const
Converts this time object into a different format.
Definition InsTime.hpp:799
constexpr bool operator>=(const InsTime &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:977
constexpr InsTime & operator+=(const std::chrono::duration< long double > &duration)
Adds a duration to this time point.
Definition InsTime.hpp:1004
constexpr InsTime & operator=(InsTime &&)=default
Move assignment operator.
constexpr InsTime_YDoySod toYDoySod(TimeSystem timesys=UTC) const
Converts this time object into a different format.
Definition InsTime.hpp:861
InsTime_MJD _mjd
Modified Julien Date of this InsTime object.
Definition InsTime.hpp:1101
constexpr InsTime & operator=(const InsTime &)=default
Copy assignment operator.
constexpr InsTime(int32_t gpsCycle, int32_t gpsWeek, long double tow, TimeSystem timesys=GPST)
Constructor.
Definition InsTime.hpp:760
constexpr int differenceToUTC(TimeSystem timesys) const
Returns the time difference in [s] of a time system and UTC.
Definition InsTime.hpp:1076
constexpr InsTime_GPSweekTow toGPSweekTow(TimeSystem timesys=GPST) const
Converts this time object into a different format.
Definition InsTime.hpp:812
constexpr friend std::chrono::duration< long double > operator-(const InsTime &lhs, const InsTime &rhs)
Substracts 2 points in time.
Definition InsTime.hpp:993
constexpr InsTime(const InsTime_GPSweekTow &gpsWeekTow, TimeSystem timesys=GPST)
Constructor.
Definition InsTime.hpp:696
constexpr InsTime & operator-=(const std::chrono::duration< long double > &duration)
Substracts a duration to this time point.
Definition InsTime.hpp:1015
constexpr InsTime(const InsTime_YDoySod &yearDoySod, TimeSystem timesys=UTC)
Constructor.
Definition InsTime.hpp:737
constexpr friend InsTime operator-(const InsTime &time, const std::chrono::duration< long double > &duration)
Substracts a duration from a time point.
Definition InsTime.hpp:1036
constexpr bool operator<(const InsTime &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:981
static constexpr uint16_t leapGps2UTC(const InsTime_JD &jd)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime_JD object.
Definition InsTime.hpp:940
constexpr InsTime_YMDHMS toYMDHMS(TimeSystem timesys=UTC, int digits=-1) const
Converts this time object into a different format.
Definition InsTime.hpp:829
constexpr bool operator>(const InsTime &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:985
static constexpr uint16_t leapGps2UTC(const InsTime_GPSweekTow &gpsWeekTow)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime_GPSweekTow object.
Definition InsTime.hpp:916
~InsTime()=default
Destructor.
constexpr uint16_t leapGps2UTC() const
Returns the current number of leap seconds (offset GPST to UTC)
Definition InsTime.hpp:900
constexpr InsTime_MJD toMJD(TimeSystem timesys=UTC) const
Converts this time object into a different format.
Definition InsTime.hpp:790
constexpr InsTime(const InsTime_MJD &mjd, TimeSystem timesys=UTC)
Constructor.
Definition InsTime.hpp:678
constexpr bool empty() const
Checks if the Time object has a value.
Definition InsTime.hpp:1047
static constexpr uint16_t leapGps2UTC(const InsTime &insTime)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime object.
Definition InsTime.hpp:908
static constexpr uint16_t leapGps2UTC(const InsTime_YDoySod &yearDoySod)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime_YDoySod object.
Definition InsTime.hpp:924
constexpr InsTime(const InsTime_YMDHMS &yearMonthDayHMS, TimeSystem timesys=UTC)
Constructor.
Definition InsTime.hpp:711
constexpr bool operator!=(const InsTime &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:969
constexpr friend InsTime operator+(const InsTime &time, const std::chrono::duration< long double > &duration)
Adds a duration to a time point.
Definition InsTime.hpp:1027
void MakeTimeFromGloOrbit(double UTC_sec)
Adds the difference [seconds] between toe (OBRIT-0 last element) and toc (ORBIT-0 first element) to t...
Definition InsTime.hpp:1062
constexpr InsTime toFullDay() const
Returns the current time rounded/cutted to a full day (changes time to 0:0:0h UTC of current day)
Definition InsTime.hpp:883
constexpr long double toUnixTime() const
Converts this time object into a UNIX timestamp in [s].
Definition InsTime.hpp:890
constexpr bool operator<=(const InsTime &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:973
constexpr bool operator==(const InsTime &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:965
void reset()
Resets the InsTime object.
Definition InsTime.hpp:1053
constexpr bool isLeapYear() const
Checks if the current time is a leap year.
Definition InsTime.hpp:955
static constexpr uint16_t leapGps2UTC(const InsTime_MJD &mjd_in)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime_MJD object.
Definition InsTime.hpp:948
constexpr InsTime(const InsTime_JD &jd, TimeSystem timesys=UTC)
Constructor.
Definition InsTime.hpp:687
constexpr InsTime(InsTime &&)=default
Move constructor.
static constexpr uint16_t leapGps2UTC(const InsTime_YMDHMS &yearMonthDayHMS)
Returns the number of leap seconds (offset GPST to UTC) for the provided InsTime_YMDHMS object.
Definition InsTime.hpp:932
Time System defintions.
Definition TimeSystem.hpp:40
constexpr long double EPSILON
Definition InsTime.hpp:67
constexpr int32_t MINUTES_PER_HOUR
Minutes / Hour.
Definition InsTime.hpp:55
constexpr long double DIFF_MJD_TO_JD_FRAC
Difference of the fraction between MJD and JD.
Definition InsTime.hpp:48
constexpr int32_t MINUTES_PER_DAY
Minutes / Day.
Definition InsTime.hpp:56
constexpr int32_t SECONDS_PER_DAY
Seconds / Day.
Definition InsTime.hpp:60
constexpr int32_t daysInMonth(int32_t month, int32_t year)
Returns the number of days in the specified month of the year.
Definition InsTime.hpp:105
constexpr int32_t END_OF_THE_CENTURY_MJD
Modified Julian Date of the end of the century (15.01.2954)
Definition InsTime.hpp:41
constexpr int32_t SECONDS_PER_WEEK
Seconds / Week.
Definition InsTime.hpp:61
constexpr int32_t DIFF_TO_6_1_1980_MJD
06.01.1980 in Modified Julian Date
Definition InsTime.hpp:43
constexpr int32_t DAYS_PER_WEEK
Days / Week.
Definition InsTime.hpp:52
constexpr bool isLeapYear(int32_t year)
Returns true if the provided year is a leap year, false otherwise.
Definition InsTime.hpp:96
constexpr int32_t MONTHS_PER_YEAR
Months / Year.
Definition InsTime.hpp:50
constexpr int32_t DAYS_PER_YEAR
Days / Year.
Definition InsTime.hpp:51
constexpr int32_t DIFF_MJD_TO_JD_DAYS
Difference of the days between MJD and JD.
Definition InsTime.hpp:47
constexpr int32_t HOURS_PER_DAY
Hours / Day.
Definition InsTime.hpp:53
constexpr int32_t HOURS_PER_WEEK
Hours / Week.
Definition InsTime.hpp:54
constexpr int32_t MINUTES_PER_WEEK
Minutes / Week.
Definition InsTime.hpp:57
constexpr std::array< int32_t, 20 > GPS_LEAP_SEC_MJD
Maps GPS leap seconds to a time: array<mjd_day>, index + 1 is amount of leap seconds.
Definition InsTime.hpp:70
constexpr int32_t WEEKS_PER_GPS_CYCLE
Weeks per GPS cycle.
Definition InsTime.hpp:42
constexpr int32_t DIFF_BDT_WEEK_TO_GPST_WEEK
BeiDou starts zero at 1-Jan-2006 and GPS starts 6-Jan-1980.
Definition InsTime.hpp:45
constexpr int32_t SECONDS_PER_HOUR
Seconds / Hour.
Definition InsTime.hpp:59
constexpr int32_t SECONDS_PER_MINUTE
Seconds / Minute.
Definition InsTime.hpp:58
constexpr int32_t DIFF_TO_1_1_1970_MJD
01.01.1970 00:00:00 UTC in Modified Julian Date (UNIX epoch)
Definition InsTime.hpp:44
GPS week and time of week in GPS standard time [GPST].
Definition InsTime.hpp:327
constexpr bool operator>=(const InsTime_GPSweekTow &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:395
constexpr bool operator!=(const InsTime_GPSweekTow &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:381
int32_t gpsCycle
Contains GPS cycle in GPS standard time [GPST].
Definition InsTime.hpp:328
constexpr bool operator<=(const InsTime_GPSweekTow &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:388
int32_t gpsWeek
Contains GPS week in GPS standard time [GPST].
Definition InsTime.hpp:329
constexpr InsTime_GPSweekTow(int32_t gpsCycle, int32_t gpsWeek, long double tow)
Constructor.
Definition InsTime.hpp:336
constexpr bool operator<(const InsTime_GPSweekTow &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:402
constexpr bool operator>(const InsTime_GPSweekTow &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:412
constexpr bool operator==(const InsTime_GPSweekTow &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:365
long double tow
Contains GPS time of week in seconds in GPS standard time [GPST].
Definition InsTime.hpp:330
Julien Date [UTC].
Definition InsTime.hpp:244
int32_t jd_day
Full days since 1. January −4712 [UTC].
Definition InsTime.hpp:245
constexpr bool operator<(const InsTime_JD &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:308
constexpr InsTime_JD(int32_t jd_day, long double jd_frac)
Constructor.
Definition InsTime.hpp:251
constexpr bool operator>=(const InsTime_JD &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:301
constexpr bool operator>(const InsTime_JD &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:316
long double jd_frac
Decimal fractions of a day of the Julien Date [UTC].
Definition InsTime.hpp:246
constexpr bool operator<=(const InsTime_JD &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:294
constexpr bool operator!=(const InsTime_JD &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:287
constexpr bool operator==(const InsTime_JD &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:269
Modified Julien Date [UTC].
Definition InsTime.hpp:158
constexpr bool operator>=(const InsTime_MJD &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:218
constexpr bool operator!=(const InsTime_MJD &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:204
long double mjd_frac
Decimal fractions of a day of the Modified Julien Date [UTC].
Definition InsTime.hpp:160
constexpr bool operator>(const InsTime_MJD &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:233
constexpr InsTime_MJD(int32_t mjd_day, long double mjd_frac)
Constructor.
Definition InsTime.hpp:168
constexpr bool operator==(const InsTime_MJD &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:186
constexpr bool operator<=(const InsTime_MJD &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:211
constexpr bool operator<(const InsTime_MJD &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:225
constexpr InsTime_MJD()=default
Default constructor.
int32_t mjd_day
Full days since 17. November 1858 [UTC].
Definition InsTime.hpp:159
GPS year and day of year in GPS standard time [GPST].
Definition InsTime.hpp:571
long double sod
Contains second of day in GPS standard time [GPST].
Definition InsTime.hpp:574
constexpr bool operator<(const InsTime_YDoySod &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:647
int32_t year
Contains year in GPS standard time [GPST].
Definition InsTime.hpp:572
constexpr bool operator!=(const InsTime_YDoySod &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:626
constexpr bool operator>(const InsTime_YDoySod &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:657
constexpr bool operator==(const InsTime_YDoySod &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:609
int32_t doy
Contains day of year in GPS standard time [GPST].
Definition InsTime.hpp:573
constexpr bool operator<=(const InsTime_YDoySod &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:633
constexpr bool operator>=(const InsTime_YDoySod &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:640
constexpr InsTime_YDoySod(int32_t year, int32_t doy, long double sod)
Constructor.
Definition InsTime.hpp:580
Universal Time Coordinated [UTC].
Definition InsTime.hpp:423
int32_t min
Contains minute in Universal Time Coordinated [UTC].
Definition InsTime.hpp:428
constexpr bool operator>=(const InsTime_YMDHMS &rhs) const
Greater or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:540
int32_t year
Contains year in Universal Time Coordinated [UTC].
Definition InsTime.hpp:424
constexpr bool operator<(const InsTime_YMDHMS &rhs) const
Smaller comparison operator (takes double precision into account)
Definition InsTime.hpp:547
constexpr InsTime_YMDHMS(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, long double sec, int digits=-1)
Constructor.
Definition InsTime.hpp:439
constexpr bool operator==(const InsTime_YMDHMS &rhs) const
Equal comparison operator (takes double precision into account)
Definition InsTime.hpp:509
constexpr bool operator!=(const InsTime_YMDHMS &rhs) const
Inequal comparison operator (takes double precision into account)
Definition InsTime.hpp:526
long double sec
Contains second in Universal Time Coordinated [UTC].
Definition InsTime.hpp:429
int32_t month
Contains month in Universal Time Coordinated [UTC].
Definition InsTime.hpp:425
constexpr bool operator>(const InsTime_YMDHMS &rhs) const
Greater comparison operator (takes double precision into account)
Definition InsTime.hpp:560
int32_t hour
Contains hour in Universal Time Coordinated [UTC].
Definition InsTime.hpp:427
int32_t day
Contains day in Universal Time Coordinated [UTC].
Definition InsTime.hpp:426
constexpr bool operator<=(const InsTime_YMDHMS &rhs) const
Smaller or equal comparison operator (takes double precision into account)
Definition InsTime.hpp:533
std::size_t operator()(const NAV::InsTime &t) const
Hash function for InsTime.
Definition InsTime.hpp:1154