Tutorial Series · Part 9 of 27
How GPS/GNSS Positioning Works Without Equations First
An intuitive explanation of satellite ranging, pseudoranges, trilateration, and clock bias in GNSS.
Navigation from First Principles
This article is part of an ordered course. Use the previous and next links to stay in sequence.
GNSS positioning starts with a surprisingly simple idea: measure how long a satellite signal took to arrive, multiply by the speed of light, and use that as an apparent distance. ESA Navipedia explains this apparent distance as a pseudorange because clock errors and other effects mean it is not the exact geometric range.1
Why this matters
A receiver does not ask satellites where it is. Satellites broadcast signals. The receiver listens, estimates signal travel time, and solves for its own position and clock offset. A GPS receiver determines position, velocity, and time by processing satellite signals and extracting propagation time.2
The basic model
For a transmitter at known position and receiver at , the ideal range is:
With a clock bias term , the pseudorange is:
In 2D with no clock bias, one range gives a circle of possible receiver locations. Two ranges produce two intersections. Three usually give one useful solution. In real 3D GNSS with receiver clock error, at least four satellites are needed to solve three position coordinates plus clock offset.1
Interactive demo
The demo below implements that geometry in 2D. Each transmitter defines a pseudorange circle, and the estimate comes from a live least-squares solve over receiver position and, optionally, receiver clock bias.
GNSS Trilateration Playground
Start by dragging the true receiver, then compare a position-only solve against a solve that also estimates receiver clock bias. The range circles are pseudorange measurements, so extra bias pushes every circle outward together.
What to watch
- With one transmitter, the receiver could be anywhere on a circle.
- With two, the geometry narrows but still leaves ambiguity.
- With three transmitters and no clock bias, the estimate is well constrained.
- When clock bias is enabled, you need enough measurements to solve the extra unknown robustly.
Try it
Set clock bias to zero and use three transmitters. Then add a clock bias. The circles no longer intersect at the true point. Enable bias solving and add a fourth transmitter to recover a good estimate.
Limits of this picture
Real GNSS uses satellite ephemerides, relativistic corrections, ionospheric and tropospheric effects, receiver noise, multipath and Earth rotation corrections. Those are intentionally postponed. The purpose here is to make pseudorange geometry feel intuitive before introducing real measurement models.