I have a set of coordinates that form a path, then I need to match another line that follows roughly the same path, which may or may not have the same amount of points, this has to be matched within a tolerance.
I have coded this and have a working prototype, I am using the radius to check where if my point is within the radius, then I use vector math to check if a point is between two points, or if it has intersected the next point.
Although I am pretty happy with what I have achieved I am not sure I have done this in the best way / followed the correct methodologies.
I would like to google this problem further but I do not know what I should be searching for, what is the type of study I need to research, are there any resources out there that could help me.