March 9, 2026
Azimuth

Bearing To Azimuth Calculator

When working with maps, navigation, surveying, or GIS, you will often encounter two related ways of expressing direction bearings and azimuths. A bearing expresses direction as a combination of north or south and an angle toward the east or west (for example, N 30° E), while an azimuth expresses direction as a single angle measured clockwise from north (for example, 030°). A bearing to azimuth calculator is a simple but powerful tool that converts between these two formats so you can use the right representation for your task. Understanding the logic behind the conversion is useful whether you use an online calculator, a spreadsheet, or write a small script yourself.

What Is a Bearing and What Is an Azimuth?

Abearingis a compass direction expressed using the cardinal points North (N) or South (S) first, followed by an angle up to 90°, and then East (E) or West (W). ExamplesN 45° E,S 30° W. Bearings are common in traditional land surveying and some navigation practices because they emphasize the principal cardinal direction.

Anazimuthis a single compass angle measured clockwise from true or magnetic north, ranging from 0° to 360°. Azimuths are widely used in navigation, astronomy, GIS, and modern surveying because they provide an unambiguous numeric direction 0° (or 360°) = North, 90° = East, 180° = South, 270° = West.

Why Convert Between Bearing and Azimuth?

Different systems and professions use either bearings or azimuths. A surveyor’s field notes might record bearings, while a GIS analyst needs azimuths to compute bearings in software. Converting back and forth lets teams communicate, import/export data between systems, and perform calculations like distance and coordinate changes that require numeric direction values.

Basic Conversion Rules

The conversion from a bearing (N/S + angle + E/W) to an azimuth follows straightforward rules. Below are the four cases to handle based on the quadrant indicated by the cardinal letters.

  • Case 1 – N θ EAzimuth = θ (i.e., angle measured clockwise from North)
  • Case 2 – S θ EAzimuth = 180° − θ
  • Case 3 – S θ WAzimuth = 180° + θ
  • Case 4 – N θ WAzimuth = 360° − θ

Where θ is the bearing angle between 0° and 90°. These simple formulas cover all four quadrants (NE, SE, SW, NW).

Examples

  • N 30° E→ Azimuth = 30°
  • S 15° E→ Azimuth = 180° − 15° = 165°
  • S 45° W→ Azimuth = 180° + 45° = 225°
  • N 10° W→ Azimuth = 360° − 10° = 350°

Converting Azimuth Back to Bearing

To convert an azimuth A (0°-360°) back to a bearing (N/S θ E/W), find which quadrant the azimuth lies in and use the following rules

  • If 0° ≤ A< 90°Bearing = N A° E
  • If 90° ≤ A< 180°Bearing = S (180° − A)° E
  • If 180° ≤ A< 270°Bearing = S (A − 180°)° W
  • If 270° ≤ A< 360°Bearing = N (360° − A)° W

Examples

  • Azimuth 030° → N 30° E
  • Azimuth 165° → S 15° E
  • Azimuth 225° → S 45° W
  • Azimuth 350° → N 10° W

Step-by-Step How a Bearing to Azimuth Calculator Works

Most calculators follow these steps internally

  1. Parse the bearing input into three parts primary cardinal (N or S), angle θ, and secondary cardinal (E or W).
  2. Validate θ is between 0° and 90°.
  3. Apply one of the four conversion formulas listed earlier.
  4. Normalize the resulting azimuth to the range 0°-360° (if needed).
  5. Return the numeric azimuth, usually rounded to a chosen precision (e.g., 0.1° or 1′).

This same logic can be implemented in spreadsheets, calculators, or small scripts. Error checking is important to catch invalid inputs likeN 120° E, which is not a valid bearing.

Practical Use Cases

A bearing to azimuth calculator is handy in many real-world situations

  • SurveyingField crews record bearings; office software needs azimuths to compute coordinates and area.
  • Marine navigationMariners may receive bearings from lighthouses or radio beacons and convert them to azimuths for plotting on charts and autopilot systems.
  • AviationPilots and dispatchers use azimuths for radar headings and track calculations.
  • GIS and mappingAzimuths are required for spatial operations such as generating offset points or bearing-based buffers.

Tips and Edge Cases

  • Bearings of exactly 0° or 90° are valid N 0° E = 0° azimuth, N 90° E = 90° azimuth. But typically θ is expressed between 0° and 90° inclusive, and cardinal letters must be present.
  • When θ = 0°, both N 0° E and N 0° W simply mean North (0° azimuth).
  • Floating point precision calculators should allow rounding to the nearest degree, minute, or decimal degree depending on accuracy needed.
  • Watch out for magnetic vs true north azimuths can be relative to magnetic north; if your dataset mixes magnetic and true, apply magnetic declination corrections first.

Using a Spreadsheet or Simple Script

You can implement a bearing to azimuth conversion with a short formula in a spreadsheet. For example, if column A has the primary direction (N/S), column B the angle θ, and column C the secondary direction (E/W), a spreadsheet formula can apply the four cases using nested IF statements.

Similarly, a few lines of pseudocode illustrate the logic

if primary == 'N' and secondary == 'E' azimuth = theta elif primary == 'S' and secondary == 'E' azimuth = 180 - theta elif primary == 'S' and secondary == 'W' azimuth = 180 + theta elif primary == 'N' and secondary == 'W' azimuth = 360 - theta

Normalize and round the result as required. This makes conversion automated for large datasets.

A bearing to azimuth calculator serves as an essential utility for anyone working with directions across surveying, navigation, and GIS. The conversion relies on simple quadrant rules that convert the two-letter bearing format into a single clockwise angle from north. By understanding these rules and the underlying logic, you can confidently convert directions by hand, create spreadsheet formulas, or build small programs to automate conversions. Remember to account for magnetic declination, rounding precision, and input validation to ensure accurate and consistent results. With these concepts in hand, the next time you see a bearing like N 37° W, you’ll immediately know how to express it as azimuth 323° and use it in modern mapping and navigation workflows.