What is the baseline date for the Google default time format?

AI Thread Summary
The discussion centers on interpreting a 10-digit number in an XML file, which is identified as Unix time, representing the number of seconds since January 1, 1970, at 00:00 UTC. This format allows for date and time calculations, with the specific number indicating dates between October 2, 2019, and October 13, 2019. Participants note that while converting between Unix time and standard date formats can be complex due to varying month lengths, there are established conversion functions and online tools available to facilitate this process. The conversation emphasizes the importance of understanding Unix time for accurate date handling in programming and data management.
WWGD
Science Advisor
Homework Helper
Messages
7,691
Reaction score
12,622
TL;DR Summary
How to decode Google time into Human.
Hi,
Just opened some .xml file in which time is given as a 10 digit number starting with 1570. I assume it represents the number of seconds from some baseline date. Anyone know if this is it and if so, the baseline date?
Thanks.
 
Computer science news on Phys.org
Last edited:
WWGD said:
Thank you. Just looked it up , it is the number of seconds from/since January 1 00:00 . I will start using it ;).
Yes, Unix time is the number of seconds since 00:00 on 1 January 1970. Note that leap seconds are ignored i.e. each day in Unix time is exactly 86,400 seconds.
 
  • Like
Likes WWGD
pbuk said:
Yes, Unix time is the number of seconds since 00:00 on 1 January 1970. Note that leap seconds are ignored i.e. each day in Unix time is exactly 86,400 seconds.
Yes, thanks, my bad, I just edited. it seems kind of a pain to go back and forth between the dating systems. I guess we divide by 31557600 and add the quotient to 1970, then we kind of run into issues with the remainder since months have unequal number of days. Not impossible but doesn't seem straightforward. Sure someone has come up with a nice enough translator. Edit: Will look one up and post it if I find one when I get more time.
 
There's actually a cunning formula which I can't lay my hands on at the moment, but conversion functions exist for most languages, or you can use any of many online converters (search 'unix converter' or 'epoch converter').

Edit: or use this one:
 
Last edited:
  • Like
Likes WWGD
Back
Top