I'm getting CMDeviceMotion objects from CMMotionManager. One of the properties of the CMDeviceMotion is timestamp, which is expressed as a NSTimeInterval (double). This allows for "sub millisecond" timestamp precision, according to documentation.

[motionManager startDeviceMotionUpdatesToQueue:motionQueue withHandler:^(CMDeviceMotion *motion, NSError *error) { 
  NSLog(@"Sample: %d Timestamp: %f ",counter,  motion.timestamp);
}

Unfortunately, NSTimeInterval is calculated since last device boot, posing significant challenges to using it in its raw form.

Does anyone have a working code to convert this NSTimeInterval into a Unix like timestamp (UTC timezone)?

Thank you!

link|improve this question

NSTimeInterval is usually relative to the reference date. Where do you get that this one is relative from the last device boot? – Dave DeLong Sep 27 '11 at 22:25
feedback

2 Answers

up vote 3 down vote accepted

I had a similar problem when comparing magnetometer values with CoreMotion events. If you want to transform these NSTimeIntervals you just need to calculate the offset once:

// during initialisation

// Get NSTimeInterval of uptime i.e. the delta: now - bootTime
NSTimeInterval uptime = [NSProcessInfo processInfo].systemUptime;

// Now since 1970
NSTimeInterval nowTimeIntervalSince1970 = [[NSDate date] timeIntervalSince1970];

// Voila our offset
self.offset = nowTimeIntervalSince1970 - uptime;
link|improve this answer
feedback

I imagine it is supposed to be used as a relative measure to allow you to sequence motion events correctly, so they went for as lightweight an implementation as possible.

I can't think why you'd need the actual date and time of a motion event as they are all dealt with pretty much straight away. But if you really wanted to, you'd have to get the timestamp of one event, use that with the current date to work out the base date, and then use your base date to derive the actual time of subsequent events.

link|improve this answer
I was afraid as such. I was hoping to plot the motion events later, allowing the users to compare motion events (Actigraphy app). This means a lot more math on my part :( – Alex Stone Sep 28 '11 at 1:03
Not too much. NSDate's dateByAddingTimeInterval will do most of it for you. – jrturton Sep 28 '11 at 5:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.