So I have multiple paths stored, each path would consist of data points x1,y1 | x2, y2 | x3, y3 ... etc
I would like to compare these paths with one another to work out if any similarities are present.
I could run through each point and see if it matched any of the points in the first path, then look to see if the next point matches the next point.
I think this would work if there were no anomalies, but could skip over if the next point did not match.
I would like to build in some level of tolerance eg 10, 10 may match 12, 12 or 8, 8
Is this a good way to compare the data, or is there a better approach?
As a second step I may want to consider time as a value too, so each point would have a time value associated with it.