Matt Greenfield

Results 55 comments of Matt Greenfield

Sorry for the slow reply. My inbox has gone insane this week! Hundreds of emails about Arc App and Moves data import 😳 I'm already working on Moves data import...

Just wanted to mention that I've made a [Patreon page](https://www.patreon.com/sobri909) for supporting Arc App and LocoKit development. Both Arc App and LocoKit are free to use, and the time I...

> Have you given consideration to the stationary activities that are a big part of moves and it's dataset? I'm saving them for a second later import. Arc App doesn't...

> If I delete the "Gulf of Oman" point, it will probably mess up surrounding "Transport" routes. Does the visit's location on the map match up with anywhere that you...

Hi @avinashamanjha251! The first thing I'd check is whether samples are being classified at recording time. The `item.activityType` getter relies on either cached `classifierResults` or on the `classifiedType` of each...

Ah, without a classifier, samples and items won't have a activity types. That'll be the problem 😉

Hm. Actually it might make more sense to do something like this: ```swift // segments groups by matching activityType and recordingState let segmentsByType = item.segments(groupedBy: [\.activityType, \.recordingState]) ``` Otherwise I'll...

I've done the stopgap solution for v6.0, so will bump this cooler, more complex solution to the v6.1 milestone.

Hm. Interesting! I'll have a poke around in the GPX code soon. I also want to get it out of Arc App and open sourced into LocoKit soon (#18). Which...

I finally found the cause of this! 1. https://github.com/sobri909/LocoKit/blob/develop/LocoKit/Base/Timelines/Items/ItemSegment.swift#L130-L132 2. https://github.com/sobri909/LocoKit/blob/develop/LocoKit/Base/LocomotionSample.swift#L157-L160 If the first sample in the segment doesn’t have a confirmed type, and the classifier hasn’t been re-run on...