Finding The Intersection Of Two Arcs That Lie On A Sphere

Article by:
Date Published:
Last Modified:

Finding The Intersection Of Two Arcs That Lie On A Sphere

This is a common problem which usually arises because you want to find if two great circles (or segments of two great circles) on the earth’s surface intersect (obviously with are approximating the earth as a sphere).

Let’s Start With Our Inputs To The Problem

We will choose to define each of the two arcs with two points on the surface of the sphere/earth. We could use either the geocentric (also called ECEF, coordinates are provided in terms of x, y, z) or geodetic (latitude/longitude) coordinate system to define these points. Let’s use geodetic for now:

Points for arc 1 (\( a1 \)):

$$\begin{align} \b{P_{a11}} &= \left[ {\begin{array}{c} \lambda_{11} \\ \phi_{11} \end{array} } \right] \\ \b{P_{a12}} &= \left[ {\begin{array}{c} \lambda_{12} \\ \phi_{12} \end{array} } \right] \\ \end{align}$$

Points for arc 2 (\( a2 \)):

$$\begin{align} \b{P_{a21}} &= \left[ {\begin{array}{c} \lambda_{21} \\ \phi_{21} \end{array} } \right] \\ \b{P_{a22}} &= \left[ {\begin{array}{c} \lambda_{22} \\ \phi_{22} \end{array} } \right] \\ \end{align}$$

where:
\( \lambda \) = latitude, in degrees
\( \phi \) = longitude, in degrees

We will then convert these into spherical coordinates with the following equations:

$$\begin{align} x = \cos(\lambda) \, \sin(\phi) \\ y = \cos(\lambda) \, \cos(\phi) \\ z = \sin(\lambda) \\ \end{align}$$ $$\begin{align} \b{P_{a11}} &= \left[ {\begin{array}{c} x_{11} \\ y_{11} \\ z_{11} \end{array} } \right] \\ \b{P_{a12}} &= \left[ {\begin{array}{c} x_{12} \\ y_{12} \\ z_{12} \end{array} } \right] \\ \b{P_{a21}} &= \left[ {\begin{array}{c} x_{21} \\ y_{21} \\ z_{21} \end{array} } \right] \\ \b{P_{a22}} &= \left[ {\begin{array}{c} x_{22} \\ y_{22} \\ z_{22} \end{array} } \right] \\ \end{align}$$

Calculate Cross-Products

We then need to calculate a cross-product for each arc, using the two vectors which define the arc as the inputs to the cross-product:

$$\begin{align} \b{N_1} = \b{P_{a11}} \times \b{P_{a12}} \\ \b{N_2} = \b{P_{a21}} \times \b{P_{a22}} \\ \end{align}$$

Note how we switched from using “point” to “vector” terminology here. Before we were talking about two “points” that lie on the sphere and define the arc. This is the easiest way to intuitively understand how two points can fully define an arc on the surface of a sphere. But now we can describe them as vectors. When we talk about them as vectors, we are referring to the vector which starts at \( [0, 0, 0] \) and passes through this point.

These cross-products will be perpendicular to the plane that the arc lies in. Hence these cross-products are called plane normals.

Calculate The Cross-Product of the Cross-Product

Yup, you read that correctly. We now calculate the cross-product of the two cross-products we calculated above. Because the two arc cross-products define two plane normals, the cross-product of two plane normals gives us a vector that is in the same direction as the intersecting line.

$$ \b{L} = \b{N_1} \times \b{N_2} $$

Because the line must pass through \([0, 0, 0]^T\), this vector is also the line itself!

Find The Intersecting Points

Now that we have the line of intersection, we can now find the two points of intersection between the arc planes by normalizing L (remember, we are using a unit sphere, so normalizing the line reduces it to a vector to one of the intersecting points):

$$ \b{I_1} = \frac{\b{L}}{||\b{L}||} \\ \b{I_2} = -\b{I_1} $$

To get the other point of intersection, just take the negative of the first one.

Check If These Intersecting Points Are Within The Original Arc Segments

So we now have the two points of intersection between the arcs. If these arcs were complete great circles, then job done, you are guaranteed that the two above points lie within your great circles. But what if you had great-circle arc segments? These intersection points may not be within both arc segments.

We can determine if these intersection points lies within arc segments by doing a angle test, using the dot product:

$$ \b{a} \cdot \b{b} = ||\b{a}|| ||\b{b}|| cos (\theta) $$

We will re-arrange for \(\theta\):

$$ \theta = \arccos \left( \frac{\b{a} \cdot \b{b}}{||\b{a}|| ||\b{b}|| } \right) $$

The angle from the start of arc 1 to intersecting point 1, and the angle from the end of arc 1 to intersecting point 1, and compare it against the angle between the start and end of arc 1.

The intersecting point is within arc 1 if:

$$ \theta_{a11,i1} + \theta_{a12,i1} = \theta_{a11,a12} $$

Take note that if calculating this result using any data type that can lose precision (e.g. floats, doubles), you will have to check it is close to equal rather than exactly equal. This can be done by adding some epsilon. Usually \(1^{-10}\) is sufficient.

This test has to be repeated between potential intersecting point 1 and arc 2. If both arcs intersect this potential intersecting point, then with have just confirmed that both arcs do intersect at this point!

The same process has to be applied to potential intersecting point 2 (remember, normalizing the line of intersection between the two planes gives us TWO potential points of intersection).

EXAMPLE

Let’s define two arcs \(a1\) and \(a2\) using two points each in geodetic (lat/lon) form (latitude and longitude are in degrees):

$$\begin{align} P_{a11} = \left[ {\begin{array}{c} 10 \\ 20 \end{array} } \right] P_{a12} = \left[ {\begin{array}{c} 60 \\ 90 \end{array} } \right] \\ P_{a21} = \left[ {\begin{array}{c} 50 \\ 10 \end{array} } \right] P_{a22} = \left[ {\begin{array}{c} 5 \\ 80 \end{array} } \right] \end{align}$$

Then convert them to spherical coordinates:

$$\begin{align} \newcommand{\pAOneStart}{\left[ {\begin{array}{c} 0.9254 \\ 0.3368 \\ 0.1736 \end{array} } \right]} \b{a_{11}} &= \left[ {\begin{array}{c} x_{11} \\ y_{11} \\ z_{11} \end{array} } \right] \\ &= \left[ {\begin{array}{c} \cos(\theta) \cos(\phi) \\ \cos(\theta) \sin(\phi) \\ \sin(\theta) \end{array} } \right] \\ &= \left[ {\begin{array}{c} \cos(10) \cos(20) \\ \cos(10) \sin(20) \\ \sin(10) \end{array} } \right] \\ &= \pAOneStart \\ \end{align}$$
NOTE

For simplicity, we are working on a unit sphere. If we were not (e.g. working on the Earth’s surface, when converting to spherical coordinates we’d have to multiply each x, y and z component by the radius). This of course pretending the Earth is a sphere, which isn’t perfect – but better than thinking it’s flat. The other option is to keep working on the unit sphere and scale the intersection point at the end.

And do the same for the other three points:

$$\begin{align} \newcommand{\pAOneEnd}{\left[ {\begin{array}{c} 3.0616e{-}17 \\ 5.0000e{-}01 \\ 8.6603e{-}01 \end{array} } \right]} \b{a_{12}} = \pAOneEnd \b{a_{21}} = \left[ {\begin{array}{c} 0.633 \\ 0.1116 \\ 0.766 \end{array} } \right] \b{a_{22}} = \left[ {\begin{array}{c} 0.173 \\ 0.9811 \\ 0.0872 \end{array} } \right] \end{align}$$

Now calculate the normal vectors for arc 1 and 2 by taking the cross-product:

$$\begin{align} \b{N_1} &= \b{a_{11}} \times \b{a_{12}} \\ &= \pAOneStart \times \pAOneEnd \\ &= \left[ {\begin{array}{c} 0.2049 \\ -0.8014 \\ 0.4627 \end{array} } \right] \\ \b{N_2} &= \b{a_{21}} \times \b{a_{22}} \\ &= \left[ {\begin{array}{c} 0.633 \\ 0.1116 \\ 0.766 \end{array} } \right] \times \left[ {\begin{array}{c} 0.173 \\ 0.9811 \\ 0.0872 \end{array} } \right] \\ &= \left[ {\begin{array}{c} -0.7418 \\ 0.0773 \\ 0.6017 \end{array} } \right] \end{align}$$

Now calculate the “normal of the normals”:

$$\begin{align} \b{L} &= \b{N_1} \times \b{N_2} \\ &= \left[ {\begin{array}{c} 0.2049 \\ -0.8014 \\ 0.4627 \end{array} } \right] \times \left[ {\begin{array}{c} -0.7418 \\ 0.0773 \\ 0.6017 \end{array} } \right] \\ &= \left[ {\begin{array}{c} -0.518 \\ -0.4665 \\ -0.5787 \end{array} } \right] \end{align}$$

Now find the two points of intersection of the arc planes:

$$\begin{align} \newcommand{\iOne}{\left[ {\begin{array}{c} -0.5718 \\ -0.5149 \\ -0.6387 \end{array} } \right]} \b{I_1} &= \frac{ \b{L} }{ || \b{L}|| } \\ &= \left[ {\begin{array}{c} -8.535e+14 \\ -7.686e+14 \\ -9.533e+14 \end{array} } \right] \cdot \frac{1}{ 1.493e15 } \\ &= \iOne \\ \b{I_2} &= -\b{I_1} \\ \newcommand{\iTwo}{\left[ {\begin{array}{c} 0.5718 \\ 0.5149 \\ 0.6387 \end{array} } \right]} &= \iTwo \\ \end{align}$$

Check if these intersecting points are within the original arc segments. Let’s first check if \( \b{I_1} \) intersects with the arc \( \b{a_1} \) defined by the points \( \b{P_{a1\_start}}\quad \) and \( \b{P_{a1\_end}}\quad \).

$$\begin{align} \theta_{a1\_start,i1} + \theta_{a1\_end,i1} = \theta_{a1\_start,a1\_end} \end{align}$$

We need to calculate \( \theta_{a1\_start,i1}\), \( \theta_{a1\_end,i1}\), and \( \theta_{a1\_start,a1\_end} \). Lets find \( \theta_{a1\_start,i1} \) first:

$$\begin{align} \theta_{a1\_start,i1} &= \arccos \left( \frac{\b{P_{a1\_start}} \cdot \b{P_{i1}}}{||\b{P_{a1\_start}}|| ||\b{P_{i1}}|| } \right) \\ &= \arccos \left( \frac{ \pAOneStart \cdot \iOne }{|| \pAOneStart || || \iOne || } \right) \\ &= 144.4 \end{align}$$

We can use the same equation to find \( \theta_{a1\_end,i1}\quad \), and \( \theta_{a1\_start,a1\_end}\quad \):

$$\begin{align} \theta_{a1\_end,i1} &= 144.2 \\ \theta_{a1\_start,a2\_start} &= 71.4 \\ \end{align}$$

Now we can check the equality:

$$\begin{align} \theta_{a1\_start,i1} + \theta_{a1\_end,i1} &= \theta_{a1\_start,a1\_end} \\ 144.4 + 144.2 &= 71.4 \\ 288.6 &= 71.4 \\ \end{align}$$

Obviously, this equality does not hold true! Therefore, potential intersection point \( \b{I_1} \) does not lie on the arc \( \b{a_1} \) and we can rule it out as an intersection point (we do not need to test whether the potential intersection points lies on arc \( \b{a_2} \), as if either of the equalities is false, we can immediately rule it out).

Now we test if potential intersection point \( \b{I_2} \) lies on both \( a_{1} \) and \( a_{2} \).

$$\begin{align} \theta_{a1\_start,i2} + \theta_{a1\_end,i2} &= \theta_{a1\_start,a1\_end} \\ 35.6 + 35.8 &= 71.4 \\ 71.4 &= 71.4 \\ \end{align}$$

The equality holds true, \( \b{I_2} \) lies on the first arc! Lets see if it lies on the second arc:

$$\begin{align} \theta_{a2\_start,i2} + \theta_{a2\_end,i2} &= \theta_{a2\_start,a2\_end} \\ 24.7 + 48.7 &= 73.4 \\ 73.4 &= 73.4 \\ \end{align}$$

This equality also holds true, \( \b{I_2} \) also lies on the second arc! Therefore we know that the point \( \b{I_2} = \iTwo \) is a valid intersection point between the two arcs. Problem solved!

External Resources

https://stackoverflow.com/questions/2954337/great-circle-rhumb-line-intersection is a great page showing how to calculate the intersection between a arc and a Rhumb line (similar to above).


Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus