.. index:: pair: struct; P1::ImageSdk::GpsDateTimeComponents .. _doxid-struct_p1_1_1_image_sdk_1_1_gps_date_time_components: struct P1::ImageSdk::GpsDateTimeComponents ========================================== .. toctree:: :hidden: Overview ~~~~~~~~ A Date & Time representation used by the GPS to provide sub-millisecond precision. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct GpsDateTimeComponents { // fields bool :target:`hasDate`; uint32_t :target:`year`; uint32_t :target:`month`; uint32_t :target:`day`; int :target:`hours`; int :target:`minutes`; double :target:`seconds`; bool :target:`isGpsTime`; // methods std::string :target:`ToString`() const; }; .. _details-struct_p1_1_1_image_sdk_1_1_gps_date_time_components: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ A Date & Time representation used by the GPS to provide sub-millisecond precision. Note that the *date* part might not be present. (The presence depends on the GPS module used) See :ref:`hasDate ` to check you date fields contains something meaningful. The *timezone* is always GMT/UTC. However, the clock used (or time scale) might not be UTC. GPS uses its own timescale (or clock) called *GPS Time*. It branched out from UTC in 1980, and has since lept ahead of UTC. The reason is that *GPS Time* does not account for the leap seconds added to UTC (since 1980). The field :ref:`isGpsTime ` tells you if the timestamp is in *GPS Time* and not *UTC*. By January 1st, 2017, the differnce between GPS Time and UTC is: GPS - UTC = +18 seconds.