From this site, I learned about the "secret" file that stores my gps info.
I tried to open the file, and I got this SQLite DB.
How can I interpret the timestamp info?

feedback
|
|
iOS (and Mac OS X) use the NSDate epoch, which means that time is recorded as the number of seconds since the first instant of 1-Jan-2001 UTC. The more common Unix epoch is based on 1970 instead. The difference between the two is The Unix Epoch Converter mentioned by Shark lists different ways of converting the epoch-seconds to a human-readable date at the bottom of the page. For example, using JavaScript, you convert the seconds to milliseconds and create a Date object. You can see this in a browser by typing the following in the location field:
which converts the Date to the local time zone and format, and displays it with an | |||
|
feedback
|
|
run the following query
Also you could head to epochconverter to search manually | ||||
|
feedback
|