Given two GPS lat/lon/altitude coordinates of two aircraft, how do I compute the slant range (line of sight distance) between them?
2026-05-11 08:51:52.1778489512
Calculate slant range between two GPS coordinates, including altitude
3.2k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GEODESIC
- Length of geodesic line equals distance between two points?
- What's the relation between the Darboux Frame and the Frenet-Serret on a oriented surface?
- Projection from an ellipsoid onto a sphere that preserves geodesy?
- Vector field on a geodesic
- Geodesic lines of the form f(at+b)
- How to actually find a minimizing path on a manifold?
- Calculating the round metric on $S^n$
- Geodesic equation on a codimension 1 submanifold of $\mathbb{R^{n+1}}$
- How can you numerically approximate the geodesic midpoint of 2 points on an ellipsoids?
- Compute geodesic circles on a Surface
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
geometry
circles
algebraic-number-theory
functions
real-analysis
elementary-set-theory
proof-verification
proof-writing
number-theory
elementary-number-theory
puzzle
game-theory
calculus
multivariable-calculus
partial-derivative
complex-analysis
logic
set-theory
second-order-logic
homotopy-theory
winding-number
ordinary-differential-equations
numerical-methods
derivatives
integration
definite-integrals
probability
limits
sequences-and-series
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Convert the latitude, longitude, and altitude to x,y,z coordinates:
https://gssc.esa.int/navipedia/index.php/Ellipsoidal_and_Cartesian_Coordinates_Conversion
However, there is the issue of ellipsoid height versus orthometric height:
https://www.researchgate.net/figure/Relationship-between-orthometric-height-ellipsoid-height-and-geoid-height_fig1_273133676
Next, convert the x,y,z coordinates to u,v,w:
http://hydrometronics.com/downloads/Ellipsoidal%20Orthographic%20Projection.pdf
However, the pole point of the first point must be held for additional points in the same field. For instance, as the orthographic projection instead of one vector between two points.
Then distance = Square Root of (u'^2 + v'^2 + w'^2) with u' = u2 - u1, v' = v2 - v1, and w' = w2 - w1 .
Or here is an approximate method using degrees and meters:
y = (Lat2 - Lat1) * 60 * 1852
x = (Lon2 - Lon1) * Cos(Lat) * 60 * 1852
z = Altitude2 - Altitude1
Then distance = Square Root of (x^2 + y^2 + z^2) .
Also, the x and y of each point can be calculated separately. Just first net a constant with the longitudes so that they straddle zero longitude.
Instead of using 1852 meters for 1 minute of latitude try Tan(1/60) * (6366707 + altitude-in-meters). Also, use a more accurate radius-of-earth if known at the particular latitude.