Nautical Bearing Converter Formula
Understand the math behind the nautical bearing converter. Each variable explained with a worked example.
Formulas Used
Quadrant
nautical_quadrant = value <= 90 ? 1 : (value <= 180 ? 2 : (value <= 270 ? 3 : 4))Reciprocal Bearing
reciprocal = value < 180 ? value + 180 : value - 180Magnetic (West US, -14° decl.)
magnetic_approx = value + 14 > 360 ? value + 14 - 360 : value + 14Variables
| Variable | Description | Default |
|---|---|---|
value | Bearing from North (°)(°) | 225 |
How It Works
Nautical Bearings
Three-Figure Bearing
Bearings are always given as three digits measured clockwise from north: 000° to 360°.
Quadrants
Reciprocal Bearing
The opposite direction: add 180° (or subtract if over 180°). Used to find the return course.
Worked Example
Analyze bearing 225°.
value = 225
- 01Quadrant 3 (180°-270°): Southwest
- 02Reciprocal = 225 - 180 = 045° (Northeast)
- 03Approximate magnetic (-14° West US) = 239°
Frequently Asked Questions
What is a reciprocal bearing?
The bearing in the exact opposite direction. If you are heading 225° (SW), the reciprocal is 045° (NE). Used to navigate back the way you came.
What is magnetic declination?
The difference between true north and magnetic north at your location. In the western US it is about 10-15° east (add to true bearing for magnetic). In the eastern US it is 10-20° west (subtract).
Ready to run the numbers?
Open Nautical Bearing Converter