Convience methods to convert rospy.Time to datetime.datetime
I couldn't find any convenience methods to convert rospy.Time to datetime.datetime. Timezones and other issues make this less trivial than it appears, especially for novice users.
Am I missing something obvious, or is this a textbook case of "nope, not done yet, please submit a patch?"
Thanks!
I would say this is indeed something that just hasn't been done yet. Shouldn't be too difficult though:
rospy.Time
is a Unix stamp, so conversions should be againstUTC
, correct?