Finding a New GPS Coordinate Between Two Lines on a Sphere

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
frostfat
Messages
2
Reaction score
0
Hi, I have an interesting problem.

I have three GPS coordinates, creating two lines across the surface of a sphere (assuming the Earth is spherical). I want to be able to create a new line (across the surface of a sphere) with a gradient that is in between the gradient of the two existing lines, and intersects with one of the coordinates.

On this new line, I want to find a new coordinate, which I can use to represent the new curve. The result should be the new coordinate, not the equation of the new curve.

https://docs.google.com/drawings/d/1p9P3dzvI_shRHTEI0rxvundkW5Mvij1CRsbIlx2uGAU/edit?usp=sharing, not representing the curved nature of the sphere. All lines are to be crossing the surface of the globe, and maintaining the GPS structure.

Thanks in advance for any help! :)
 
Physics news on Phys.org
I am curious: three GPS coodinates will create three lines, not two - one for each pair of points.
Of the three, what makes the upper right point special?I'm going to label your points, clockwise from upper right.
x0y0, x1y1, x2y2.

To bisect lines x0y0, - x2y2 and x1y1 - x0y0,
simply create a point x3y3 midway between x1y1 and x2y2.
Now draw your new line from x0y0 - x3y3
 
Last edited:
  • Like
Likes   Reactions: jim mcnamara and frostfat
This is exactly what I was looking for, thanks for such a simple but effective answer.