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

link|improve this question
feedback

4 Answers

up vote 5 down vote accepted

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.

link|improve this answer
Thanks, this should allow me to get what I wanted. – user177082 Sep 22 '09 at 11:05
Glad I could help :) – coobird Sep 22 '09 at 11:47
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.

link|improve this answer
aww - link is 404'ed – CarlG May 5 '11 at 16:32
1  
archive.gamedev.net/community/forums/… Yeay for gamedev archiving content. – mlk May 5 '11 at 16:42
just saw that - thanks! – CarlG May 5 '11 at 17:10
1  
That algorithm worked correctly for me - here it is ported to Java: pastebin.com/n9rUuGRh – CarlG May 5 '11 at 17:42
@mk: Link fixed. – Michal Sznajder Jul 8 '11 at 6:29
feedback

Use projection.

link|improve this answer
Do you have any examples? That wiki page is not particularly usable to someone who hasn't used projection before. Thanks – user177082 Sep 22 '09 at 10:56
1  
Since your question sounds like homework, I think you should solve the problem yourself. – lutz Sep 22 '09 at 10:57
Christ sake, I have a simple question (and no it's not homework) and all you do is tag it as homework... very helpful. Thanks to those who posted useful answers. – user177082 Sep 22 '09 at 10:59
1  
You could at least have posted some code to show you tried to solve the problem. Since you didn't, your question smells like homework. – lutz Sep 22 '09 at 11:01
1  
You don’t have to prove that you’re not a student, you just have to prove that you’re willing (and capable) to do the work yourself after you’ve been given a couple of pointers. That’s what programming is. – Bombe Sep 22 '09 at 11:24
show 2 more comments
feedback

Try this:

ratio = (((x1-x0)^2+(y1-y0)^2)*((x2-x1)^2 + (y2-y1)^2) - ((x2-x1)(y1-y0) - (x1-x0)(y2-y1))^2)^0.5
        -----------------------------------------------------------------------------------------
                                            ((x2-x1)^2 + (y2-y1)^2)

xc = x1 + (x2-x1)*ratio;
yc = y1 + (y2-y1)*ratio;

Where:
    x1,y1 = point#1 on the line
    x2,y2 = point#2 on the line
    x0,y0 = Another point near the line
    xc,yx = The nearest point of x0,y0 on the line
    ratio = is the ratio of distance of x1,y1 to xc,yc and distance of x1,y1 to x2,y2
    ^2    = square
    ^0.5  = square root

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.

link|improve this answer
This only seems to work for points on the line segment, not the entire line that passes through the two points – CarlG May 5 '11 at 17:43
feedback

Your Answer

 
or
required, but never shown