Angle Converter — Free Online Tool

This online Angle converter lets you convert between degrees, radians, and gradians in seconds. Enter a value, pick the units, and get an instant result alongside a visual comparison of common units.

Inputs

Results

Converted Value
1.570796

Visual Comparison

Angle Conversion: Converting Between Angular Measurement Units

Angle conversion transforms measurements of rotation from one unit to another. Common units include degrees (°), radians (rad), gradians (gon), and turns. Degrees are familiar from everyday use, radians are essential in mathematics and physics, and gradians are used in surveying. Understanding angle conversions is crucial for trigonometry, navigation, engineering, and any application involving rotation, direction, or circular motion. Whether you're calculating in a math class, programming graphics, or surveying land, mastering angle conversions helps you work across different standards and applications.

Examples

Angle Conversion Example

Let's explore angle conversions with practical examples. A physics problem gives an angle in radians: π/3 rad. Converting to degrees: (π/3) × (180/π) = 60°. In gradians: 60° × (10/9) = 66.67 grad.

GPS coordinates are often in degrees-minutes-seconds: 40°26'46" N. Converting to decimal: 40 + 26/60 + 46/3600 = 40.446°. This decimal format is easier for calculations and many mapping APIs.

A surveyor measures a slope of 45 gradians. In degrees: 45 × (9/10) = 40.5°. In radians: 40.5 × π/180 = 0.707 rad. Gradians make percentage grades easy: 45 grad = 45% slope (rise/run).

Programming graphics? Most functions use radians. To rotate 45°: angle_rad = 45 × π/180 = 0.785 rad. Then use rotate(0.785) in your graphics library.

Key conversions: 180° = π rad = 200 grad = 0.5 turns. 90° = π/2 rad = 100 grad. Remember to check your calculator mode—most trigonometric errors come from degree/radian confusion!

Key properties

Degrees: The Familiar Unit

Degrees divide a full circle into 360 parts. This ancient Babylonian system is intuitive for everyday use. A right angle is 90°, a straight angle is 180°, a full rotation is 360°. Understanding degrees is essential for navigation, construction, and general use.

Radians: The Natural Unit

Radians measure angles by arc length divided by radius. A full circle is 2π radians (≈6.283 rad). Radians simplify calculus—derivatives of sin(x) and cos(x) only work cleanly in radians. Understanding radians is essential for mathematics and physics.

Gradians: The Surveying Unit

Gradians (also called gons or grades) divide a full circle into 400 parts. A right angle is 100 grad, making percentage calculations easier. Surveying and some European countries use gradians. Understanding gradians helps with surveying applications.

Turns: The Intuitive Unit

A turn (also called revolution or cycle) is one complete rotation. 1 turn = 360° = 2π rad = 400 grad. It's intuitive for thinking about rotations—half a turn is 180°. Understanding turns helps with rotational motion problems.

Minutes and Seconds: Subdivisions

Degrees subdivide into minutes (′) and seconds (″): 1° = 60′ = 3600″. This DMS (degrees-minutes-seconds) format is used in navigation and surveying for precision. Understanding DMS helps with GPS coordinates and land surveys.

Trigonometric Context

Calculator modes affect trigonometry—ensure you're using the right angle unit (DEG, RAD, or GRAD). Many errors come from mode mismatches. Programming languages typically use radians by default. Understanding this prevents calculation errors.

Formulas

Degrees to Radians

rad = deg × π / 180

Multiply degrees by π/180 (≈0.01745) to get radians. For example, 90° = 90 × π/180 = π/2 ≈ 1.571 rad.

Radians to Degrees

deg = rad × 180 / π

Multiply radians by 180/π (≈57.296) to get degrees. For example, π rad = 180°.

Degrees to Gradians

grad = deg × 400 / 360 = deg × 10/9

Multiply degrees by 10/9 to get gradians. For example, 90° = 100 grad.

DMS to Decimal Degrees

DD = D + M/60 + S/3600

Convert degrees-minutes-seconds to decimal. 45°30'36" = 45 + 30/60 + 36/3600 = 45.51°.

Angle Conversions in Math and Navigation

Angle conversions are essential in many fields: mathematics uses radians for calculus and trigonometry, navigation uses degrees and DMS for coordinates and bearings, surveying uses gradians or DMS for land measurement, programming and graphics use radians for rotation calculations, and physics uses radians for angular velocity and acceleration. Understanding angle conversions helps students, engineers, navigators, and programmers work accurately with angular measurements.

Frequently asked questions

Which angle units are included?

Degrees, radians, gradians (gons), turns, minutes, seconds, and milliradians.

How do I convert degrees to radians?

Multiply by π/180 (≈0.01745). 180° = π rad, 90° = π/2 rad, 45° = π/4 rad.

Why are radians used in math?

Radians make calculus work cleanly. d/dx sin(x) = cos(x) only when x is in radians.

What are gradians used for?

Surveying and some European applications. A right angle = 100 grad makes slope calculations easier.

How do I convert DMS to decimal degrees?

D + M/60 + S/3600 = decimal degrees. Enter DMS and we convert instantly.

How do I convert decimal degrees to DMS?

We extract degrees, multiply remainder by 60 for minutes, multiply that remainder by 60 for seconds.

What's a milliradian?

1 mrad = 0.001 rad ≈ 0.057°. Used in military and some optical applications for angular measurements.

How many radians in a circle?

2π radians ≈ 6.283 rad. This comes from circumference = 2πr, so arc length = radius when θ = 1 rad.

What's a turn/revolution?

1 turn = 1 complete rotation = 360° = 2π rad = 400 grad. Useful for thinking about rotations.

How do I avoid calculator mode errors?

Check DEG/RAD/GRAD mode before trigonometry. We show results in all units to help verify.

What angle unit do programming languages use?

Most use radians. Math.sin() in JavaScript/Python expects radians. Convert degrees first.

How do I convert bearings?

Bearings are usually in degrees from north. Enter bearing and we convert to other formats.

What about negative angles?

Negative angles go clockwise. -90° = 270° = -π/2 rad. We handle both positive and negative.

Can I normalize angles to 0-360°?

Yes—we reduce angles to standard range (0-360° or 0-2π or ±180°) as needed.

Can I export conversion tables?

Download reference tables showing common angle conversions and trigonometric values.