mrgeorge / BusTripper

Identify bus trips from GPS locations
3 stars 1 forks source link

group training and test data into segments #7

Closed mrgeorge closed 10 years ago

mrgeorge commented 10 years ago

Try connecting sequences of t,x,y for each device_id in the training and test sets and record a single trip_id for the whole sequence. The nominal time span might be a minute or a few (GPS locations are recorded every 5 seconds). This could be used for basic KNN, and also perhaps for KNN with DTW for measuring distance between sequences (though DTW doesn't satisfy the triangle inequality).

mrgeorge commented 10 years ago

closing this issue now that getSequences works (cb0881750)