27#include <fmt/ostream.h>
30#include <nlohmann/json.hpp>
31using json = nlohmann::json;
67constexpr long double EPSILON = std::max(1e-17L, 10 * std::numeric_limits<long double>::epsilon());
98 return (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0));
171 if (this->mjd_frac >= 1.0L)
173 this->mjd_day +=
static_cast<int32_t
>(this->
mjd_frac);
174 this->mjd_frac -=
static_cast<int32_t
>(this->
mjd_frac);
176 while (this->mjd_frac < 0.0L)
178 this->mjd_frac += 1.0L;
194 gcem::abs(diffDays) == 1)
206 return !(*
this == rhs);
213 return *
this < rhs || *
this == rhs;
220 return *
this > rhs || *
this == rhs;
235 return !(*
this <= rhs);
239 explicit operator std::string()
const;
254 if (this->jd_frac >= 1.0L)
256 this->jd_day +=
static_cast<int32_t
>(this->
jd_frac);
257 this->jd_frac -=
static_cast<int32_t
>(this->
jd_frac);
259 while (this->jd_frac < 0.0L)
261 this->jd_frac += 1.0L;
277 gcem::abs(diffDays) == 1)
289 return !(*
this == rhs);
296 return *
this < rhs || *
this == rhs;
303 return *
this > rhs || *
this == rhs;
318 return !(*
this <= rhs);
322 explicit operator std::string()
const;
344 while (this->tow < 0.0L)
355 while (this->gpsWeek < 0)
372 gcem::abs(diffWeeks) == 1)
383 return !(*
this == rhs);
390 return *
this < rhs || *
this == rhs;
397 return *
this > rhs || *
this == rhs;
414 return !(*
this <= rhs);
418 explicit operator std::string()
const;
442 if (digits >= 0) { this->sec = math::round(this->sec,
static_cast<size_t>(digits)); }
448 while (this->sec < 0.0L)
453 if (digits >= 0) { this->sec = math::round(this->sec,
static_cast<size_t>(digits)); }
460 while (this->min < 0)
471 while (this->hour < 0)
488 while (this->day < 1)
499 while (this->month < 1)
528 return !(*
this == rhs);
535 return *
this < rhs || *
this == rhs;
542 return *
this > rhs || *
this == rhs;
562 return !(*
this <= rhs);
566 explicit operator std::string()
const;
588 while (this->sod < 0)
599 while (this->doy < 1)
616 gcem::abs(diffDays) == 1)
628 return !(*
this == rhs);
635 return *
this < rhs || *
this == rhs;
642 return *
this > rhs || *
this == rhs;
659 return !(*
this <= rhs);
663 explicit operator std::string()
const;
688 :
_mjd(jd.jd_day - InsTimeUtil::DIFF_MJD_TO_JD_DAYS, jd.jd_frac - InsTimeUtil::DIFF_MJD_TO_JD_FRAC)
714 int32_t y = yearMonthDayHMS.
year + 4800 - a;
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)
724 auto jd_frac = (yearMonthDayHMS.
sec
739 auto year = yearDoySod.
year;
740 auto doy = yearDoySod.
doy;
741 auto sod = yearDoySod.
sod;
760 constexpr InsTime(int32_t gpsCycle, int32_t gpsWeek,
long double tow,
TimeSystem timesys = GPST)
771 constexpr InsTime(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min,
long double sec,
TimeSystem timesys = UTC)
806 return { jd_day, jd_frac };
822 return { 0, 0, tow };
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);
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);
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));
855 return { year, month, day, 0, 0, sec, digits };
865 auto year = yearMonthDayHMS.
year;
868 + yearMonthDayHMS.
sec
872 for (int32_t i = 1; i < yearMonthDayHMS.
month; i++)
876 doy += yearMonthDayHMS.
day;
878 return { year, doy, sod };
998 return std::chrono::duration<long double>(diffSec);
1006 auto duration_mjd_frac = std::chrono::duration<long double, std::ratio<InsTimeUtil::SECONDS_PER_DAY>>(duration).count();
1008 this->_mjd.mjd_frac + duration_mjd_frac);
1017 auto duration_mjd_frac = std::chrono::duration<long double, std::ratio<InsTimeUtil::SECONDS_PER_DAY>>(duration).count();
1019 this->_mjd.mjd_frac - duration_mjd_frac);
1029 return InsTime(time) += duration;
1038 return InsTime(time) -= duration;
1044 explicit operator std::string()
const;
1047 [[nodiscard]]
constexpr bool empty()
const
1071 *
this += std::chrono::duration<long double>(diff);
1150struct hash<NAV::InsTime>
1156 auto hash1 = std::hash<int32_t>{}(t.
toMJD().mjd_day);
1157 auto hash2 = std::hash<long double>{}(t.
toMJD().mjd_frac);
1159 return hash1 | (hash2 << 32);
1164#ifndef DOXYGEN_IGNORE
1168struct fmt::formatter<NAV::InsTime_MJD> : fmt::formatter<std::string>
1174 template<
typename FormatContext>
1177 return fmt::format_to(ctx.out(),
"day={}, frac={}", mjd.
mjd_day,
static_cast<double>(mjd.
mjd_frac));
1182struct fmt::formatter<NAV::InsTime_JD> : fmt::formatter<std::string>
1188 template<
typename FormatContext>
1191 return fmt::format_to(ctx.out(),
"day={}, frac={}", jd.
jd_day,
static_cast<double>(jd.
jd_frac));
1196struct fmt::formatter<NAV::InsTime_GPSweekTow> : fmt::formatter<std::string>
1202 template<
typename FormatContext>
1205 return fmt::format_to(ctx.out(),
"cycle={}, week={}, tow={}",
1211struct fmt::formatter<NAV::InsTime_YMDHMS> : fmt::formatter<std::string>
1217 template<
typename FormatContext>
1220 return fmt::format_to(ctx.out(),
"{}-{}-{} {}:{}:{:.6g}",
1222 ymdhms.
hour, ymdhms.
min,
static_cast<double>(ymdhms.
sec));
1227struct fmt::formatter<NAV::InsTime_YDoySod> : fmt::formatter<std::string>
1233 template<
typename FormatContext>
1236 return fmt::format_to(ctx.out(),
"year={}, doy={}, sod={:.6g}",
1237 yDoySod.
year, yDoySod.
doy,
static_cast<double>(yDoySod.
sod));
1242struct fmt::formatter<NAV::InsTime> : fmt::formatter<std::string>
1248 template<
typename FormatContext>
1249 auto format(
const NAV::InsTime& insTime, FormatContext& ctx)
const
std::ostream & operator<<(std::ostream &os, const NAV::CycleSlipDetector::Result &obj)
Stream insertion operator overload.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
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