time_conversion.hpp
Go to the documentation of this file.
1 // Copyright (C) 2019 Matthew Pitropov, Joshua Whitley
2 // All rights reserved.
3 //
4 // Software License Agreement (BSD License 2.0)
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions
8 // are met:
9 //
10 // * Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer.
12 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following
14 // disclaimer in the documentation and/or other materials provided
15 // with the distribution.
16 // * Neither the name of {copyright_holder} nor the names of its
17 // contributors may be used to endorse or promote products derived
18 // from this software without specific prior written permission.
19 //
20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 // POSSIBILITY OF SUCH DAMAGE.
32 
33 #ifndef VELODYNE_DRIVER_TIME_CONVERSION_HPP
34 #define VELODYNE_DRIVER_TIME_CONVERSION_HPP
35 
36 #include <pcap.h>
37 
38 #include <ros/ros.h>
39 #include <ros/time.h>
40 
51 ros::Time resolveHourAmbiguity(const ros::Time &stamp, const ros::Time &nominal_stamp) {
52  const int HALFHOUR_TO_SEC = 1800;
53  ros::Time retval = stamp;
54  if (nominal_stamp.sec > stamp.sec) {
55  if (nominal_stamp.sec - stamp.sec > HALFHOUR_TO_SEC) {
56  retval.sec = retval.sec + 2*HALFHOUR_TO_SEC;
57  }
58  } else if (stamp.sec - nominal_stamp.sec > HALFHOUR_TO_SEC) {
59  retval.sec = retval.sec - 2*HALFHOUR_TO_SEC;
60  }
61  return retval;
62 }
63 
64 ros::Time rosTimeFromGpsTimestamp(const uint8_t * const data, const struct pcap_pkthdr *header = NULL) {
65  const int HOUR_TO_SEC = 3600;
66  // time for each packet is a 4 byte uint
67  // It is the number of microseconds from the top of the hour
68  uint32_t usecs = (uint32_t) ( ((uint32_t) data[3]) << 24 |
69  ((uint32_t) data[2] ) << 16 |
70  ((uint32_t) data[1] ) << 8 |
71  ((uint32_t) data[0] ));
72  ros::Time time_nom = ros::Time();
73  // if header is NULL, assume real time operation
74  if (!header) {
75  time_nom = ros::Time::now(); // use this to recover the hour
76  } else {
77  time_nom = ros::Time(header->ts.tv_sec, header->ts.tv_usec * 1000);
78  }
79  uint32_t cur_hour = time_nom.sec / HOUR_TO_SEC;
80  ros::Time stamp = ros::Time((cur_hour * HOUR_TO_SEC) + (usecs / 1000000),
81  (usecs % 1000000) * 1000);
82  stamp = resolveHourAmbiguity(stamp, time_nom);
83  return stamp;
84 }
85 
86 #endif //VELODYNE_DRIVER_TIME_CONVERSION_HPP
ros.h
time.h
resolveHourAmbiguity
ros::Time resolveHourAmbiguity(const ros::Time &stamp, const ros::Time &nominal_stamp)
Function used to check that hour assigned to timestamp in conversion is correct. Velodyne only return...
Definition: time_conversion.hpp:51
data
data
rosTimeFromGpsTimestamp
ros::Time rosTimeFromGpsTimestamp(const uint8_t *const data, const struct pcap_pkthdr *header=NULL)
Definition: time_conversion.hpp:64
TimeBase< Time, Duration >::sec
uint32_t sec
ros::Time
header
const std::string header
ros::Time::now
static Time now()


velodyne_driver
Author(s): Jack O'Quin, Patrick Beeson, Michael Quinlan, Yaxin Liu
autogenerated on Tue May 2 2023 02:28:00