I have two gps coordinates which link together to make a line. I also have a gps point which is near to, but never exactly on, the line. My question is how do I find the nearest point along the line to the given point?
Many thanks
|
feedback
|
|
A quick Google search brought up the following link: Minimum Distance between a Point and a Line It shows the explanation with a diagram and the mathematical explanation, along with source code in a few languages, including Java. | |||||
feedback
|
|
http://archive.gamedev.net/community/forums/topic.asp?topic_id=444154&whichpage=1 It is in C++ but it should be easy to port over. | |||||||||||||||
feedback
|
|
Use projection. | |||||||||||||||||
feedback
|
|
Try this:
The formular is derived after we find the distant from point x0,y0 to line (x1,y1 -> x2,y3). See here I've test this code here (this particular one I gave you above) but I've used it similar method years ago and it work so you may try. | |||
feedback
|