How to Calculate Crosswind Component Step by Step
Updated: May 28, 2026
Before You Start
You need two pieces of information:
- Wind: direction in degrees and speed (from ATIS, METAR, or tower)
- Runway heading: runway number × 10 (runway 27 = 270°)
Step 1 — Get the Wind Report
From ATIS or a METAR, wind is reported as: direction/speed in knots.
Example METAR wind: 27015G22KT → wind FROM 270°, steady 15 knots, gusting 22.
If the report says VRB (variable), no crosswind calculation is reliable — treat it as worst-case (full-crosswind from any direction).
Step 2 — Find the Angle Off Runway
Subtract runway heading from wind direction. Normalize to 0°–360°:
Angle = (Wind Direction − Runway Heading + 360) mod 360
Example: wind 330°, runway 27 (270°)
Angle = (330 − 270 + 360) mod 360 = 60°
If the angle is greater than 180°, it means the wind is from the other side of the runway — the math handles this automatically.
Step 3 — Apply the Crosswind Formula
Crosswind = Wind Speed × sin(Angle)
Headwind = Wind Speed × cos(Angle)
Example continued (20 kts at 60°):
Crosswind = 20 × sin(60°) = 20 × 0.866 = 17.3 kts ← from right
Headwind = 20 × cos(60°) = 20 × 0.500 = 10.0 kts
Step 4 — Check Gust Component
If the wind is gusting, repeat Step 3 with the gust speed:
Gust crosswind = 22 × sin(60°) = 22 × 0.866 = 19.1 kts
Compare the gust crosswind — not the steady crosswind — against your aircraft’s demonstrated limit.
Step 5 — Check Aircraft Limits
Look up the demonstrated crosswind component in your POH/AFM. Compare:
- Steady crosswind 17.3 kts, gust crosswind 19.1 kts
- Cessna 172 limit: 15 kts
- Decision: gust exceeds limit → consider alternate runway or divert
Step 6 — Consider the Opposite Runway
The opposite runway (180° away) often has a more favorable crosswind angle. Check both:
- Runway 27 (270°): 17.3 kts crosswind
- Runway 09 (090°): angle = (330 − 90 + 360) % 360 = 240° → crosswind = 20 × sin(240°) = −17.3 kts
Same crosswind magnitude, opposite side. In this case the runway choice doesn’t reduce crosswind — the wind is at 60° off both headings. But often one direction is significantly better.
Using the Calculator for Rapid Pre-Flight Checks
Enter the values once — the calculator computes steady components, gust components, opposite runway, and limit status instantly. Use it while copying down the ATIS or before calling for taxi.