Wind Direction & Compass Reference

All 32 compass points with their degrees, plus a bearing-to-heading converter.

Reference for all 32 points of the compass rose with abbreviations and centre azimuths, plus a converter that maps any bearing from 0 to 360 degrees to its nearest 32-point wind direction. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

How many points are on a compass rose?

A full mariner's compass rose has 32 points spaced 11.25 degrees apart. They build up from 4 cardinal points (N, E, S, W), then 4 intercardinal (NE, SE, SW, NW), then 8 secondary intercardinal, and finally 16 by-points such as North by east.

The full 32-point compass rose

This reference lists all 32 points of the traditional compass rose, each with its abbreviation, full name and centre bearing in degrees. It is useful for sailing, aviation, surveying, meteorology and any work that translates between numeric bearings and named directions. A built-in converter maps any bearing to its nearest heading.

How it works

The compass divides a full circle of 360 degrees into 32 equal sectors. Each sector spans 360 / 32 = 11.25 degrees, and the centre of point number i (starting at North = 0) sits at i * 11.25 degrees. To convert a bearing to a heading:

index = round(bearing / 11.25) mod 32
heading = points[index]

Bearings are normalised into the 0 to 360 range first, so 370 degrees folds back to 10 degrees and a negative bearing wraps around. Rounding to the nearest sector centre chooses the closest named direction.

The four tiers of the compass rose

The 32 points build up from a simple four-layer hierarchy:

TierCountExamplesSpacing
Cardinal4N, E, S, W90° apart
Intercardinal (ordinal)4NE, SE, SW, NW45° apart
Secondary intercardinal8NNE, ENE, ESE, SSE, SSW, WSW, WNW, NNW22.5° apart
By-points16NbE, NEbN, NEbE, EbN…11.25° apart

By-points are named “North by east”, “Northeast by north”, and so on — each sitting exactly one point (11.25°) clockwise or anticlockwise of a named cardinal or intercardinal.

Quick reference: key bearings

Bearing (°)PointAbbreviation
0 / 360NorthN
11.25North by eastNbE
22.5North-northeastNNE
45NortheastNE
90EastE
135SoutheastSE
180SouthS
225SouthwestSW
247.5West-southwestWSW
270WestW
315NorthwestNW
337.5North-northwestNNW

Wind direction convention

In meteorology, wind direction is reported as where the wind comes from, not where it is going. A “westerly” (W, 270°) comes from the west and blows toward the east. A “northeasterly” (NE, 45°) blows from the northeast toward the southwest. This is the opposite convention from currents and course headings, which describe direction of movement — a source of confusion when switching between weather forecasts and navigation charts.

Worked conversion examples

  • 247.5° — divide by 11.25 = 22 exactly → WSW (West-southwest)
  • 10° — divide by 11.25 = 0.89, rounds to 1 → NbE (North by east)
  • 355° — divide by 11.25 = 31.56, rounds to 32 mod 32 = 0 → N (North)

The modulo wraps values near 360° back to North, ensuring the converter handles any full-circle bearing without error.