Skip to content

Angle Converter

Free Angle Converter - calculate instantly with our online tool. No signup required. Accurate unit converters calculations with real-time results.

Loading calculator

Preparing Angle Converter...

Reviewed & Methodology

Every calculator is built using industry-standard formulas, validated against authoritative sources, and reviewed by a credentialed financial professional. All calculations run privately in your browser - no data is stored or shared.

Last reviewed:

Reviewed by:

Written by:

How to Use the Angle Converter

  1. 1. Enter a value in the "From" field to begin your conversion.
  2. 2. Select your units - choose the source and target units from the dropdown menus.
  3. 3. View instant results - the conversion updates automatically as you type.
  4. 4. Swap direction - click the swap button to reverse the conversion.
  5. 5. Share your results - copy the link to save or share your conversion.

Angle Converter

Angles show up in navigation, construction, astronomy, programming, and physics — but each field uses different units. Surveyors and GPS systems often work in degrees, minutes, and seconds. Mathematicians and software engineers use radians. European surveyors frequently use gradians. Astronomers measure separations between stars in arcseconds. This converter handles degrees, radians, gradians, arcminutes, arcseconds, and turns in one place, so you can move between systems without doing the arithmetic by hand.

How Angle Conversion Works

All conversions pass through degrees as the base unit. The formula is: Result = Input x (source factor in degrees) / (target factor in degrees). Key conversion factors: 1 radian = 180/pi degrees (approximately 57.2958 degrees); 1 gradian = 0.9 degrees (so 100 gradians = 1 right angle = 90 degrees); 1 arcminute = 1/60 degree = 0.016667 degrees; 1 arcsecond = 1/3600 degree = 0.0002778 degrees; 1 turn = 360 degrees. The radian is the SI-derived unit and the natural unit for calculus — arc length equals radius times angle in radians, a relationship that does not hold for any other angular unit.

Worked Examples

A programmer writes a JavaScript function to rotate a canvas element by 45 degrees. JavaScript’s Math.cos() and Math.sin() expect radians, so she converts first: 45 x (pi/180) = 45 x 0.017453 = 0.7854 radians. Using 45 directly without converting would produce Math.cos(45) = 0.526 instead of the correct Math.cos(0.7854) = 0.7071, giving a subtly wrong rotation.

A land surveyor reads a property boundary bearing of 47 degrees 23 minutes 15 seconds from a deed. To enter this into CAD software that accepts decimal degrees, he converts the minutes and seconds: 23 minutes = 23/60 = 0.3833 degrees; 15 seconds = 15/3600 = 0.004167 degrees. Total: 47 + 0.3833 + 0.004167 = 47.3875 decimal degrees. Entering this precisely matters — at a distance of 500 feet, a 0.1-degree error shifts the boundary marker by about 0.87 feet.

An astronomer checks whether a telescope can resolve two stars separated by 2.5 arcseconds. Converting to degrees: 2.5 / 3600 = 0.000694 degrees, or in radians: 0.000694 x (pi/180) = 0.0000121 radians. This tells her the angular separation is 12.1 microradians — useful for comparing against the telescope’s diffraction limit, which is often expressed in radians or microradians.

Expanded Reference Table

FromValueToResult
Degrees360Radians6.28318
Degrees90Radians1.5708
Degrees45Radians0.7854
Degrees180Gradians200
Degrees90Gradians100
Radians1.0Degrees57.2958
Degrees1Arcminutes60
Degrees1Arcseconds3,600
Turns1.0Degrees360
Arcminutes90Degrees1.5

When to Use This Converter

  • Programming and math — convert degrees to radians before calling Math.sin(), Math.cos(), or Math.atan() in any language that uses SI units internally
  • Surveying and mapping — translate degrees-minutes-seconds (DMS) to decimal degrees for GIS software, or convert to gradians when working with European survey instruments
  • Navigation — convert compass bearings between degrees and radians for autopilot systems or robotics heading controllers
  • Astronomy and optics — convert arcseconds to radians to compare telescope resolution with diffraction limits or to calculate angular diameter of celestial objects
  • Construction and carpentry — convert radian values from engineering software back to degrees for setting angle finders, protractors, and miter saws

Common Mistakes to Avoid

  1. Passing degrees to trig functions expecting radians. Math.sin(90) in JavaScript returns 0.894, not 1.0, because 90 here is interpreted as 90 radians. Always convert to radians first: Math.sin(90 x Math.PI / 180) = 1.0.
  2. Rounding pi too aggressively. Using pi = 3.14 introduces a 0.05% error. For a 360-degree circle, that rounds to 359.8 degrees instead of 360.0. Use at least 3.14159 for engineering work and the full precision constant in code.
  3. Mixing up arcminutes and minutes of time. A minute of arc (1/60 of a degree) and a minute of time (1/60 of an hour) have no relationship. In celestial coordinates, right ascension is measured in hours-minutes-seconds of time, not arc — the two are easy to confuse when reading star catalog data.
  4. Forgetting that gradians use a 400-unit circle, not 100. Gradians divide the full circle into 400 parts, not 100. A right angle is 100 gradians; a full circle is 400. Entering 100 gradians as if it were a full revolution is a 4x error.

Quick Reference Benchmarks

  • A full circle: 360 degrees = 2pi radians = 400 gradians = 1 turn
  • A right angle: 90 degrees = pi/2 radians = 100 gradians
  • 1 radian: approximately 57.3 degrees
  • 1 degree: 60 arcminutes = 3,600 arcseconds
  • A 45-degree miter cut: pi/4 radians = 50 gradians
  • The Moon’s angular diameter as seen from Earth: approximately 0.5 degrees = 30 arcminutes

Tips

  1. The fastest mental conversion from degrees to radians: multiply by 0.01745 (= pi/180) — for common angles like 30, 45, 60, 90, just memorize pi/6, pi/4, pi/3, pi/2
  2. In Excel and Google Sheets, the RADIANS() and DEGREES() functions handle the conversion automatically — use them instead of typing the constant to avoid rounding errors
  3. For surveying DMS to decimal degrees: decimal degrees = degrees + (minutes/60) + (seconds/3600) — run this conversion once and store the result before entering into any GIS or CAD tool
  4. The gradian’s main advantage is that a right angle is exactly 100 gradians, making percentage-of-turn calculations straightforward — useful when thinking about road gradients or slope percentages
  5. Astronomers express small angles in arcseconds: the Hubble Space Telescope resolves objects as small as 0.05 arcseconds, which equals 0.0000139 degrees or 0.000000242 radians
  6. For robotics and embedded systems, radians per second is the standard unit for angular velocity — always keep angles in radians throughout your calculations to avoid repeated conversions in control loops

Frequently Asked Questions

How do I convert degrees to radians?
Multiply the degree value by pi/180 (approximately 0.01745). For example, 90 degrees = 90 x pi/180 = pi/2 radians (about 1.5708). Common values to memorize: 30 degrees = pi/6, 45 degrees = pi/4, 60 degrees = pi/3, 90 degrees = pi/2, 180 degrees = pi, and 360 degrees = 2*pi. To convert radians back to degrees, multiply by 180/pi.
What are gradians and when are they used?
Gradians (also called gons or grads) divide a right angle into 100 parts instead of 90 degrees, making a full circle 400 gradians. They were developed in France during the metric system's creation and are primarily used in European surveying, geodesy, and some engineering applications. The key advantage is easier mental arithmetic since percentages of a right angle are whole numbers.
How are angles used in navigation and compass bearings?
Navigation uses degrees measured clockwise from true north: 0/360 degrees is north, 90 degrees is east, 180 degrees is south, and 270 degrees is west. Compass bearings are expressed as three-digit numbers (e.g., 045 degrees for northeast). Aviation uses this same system, and nautical charts are divided into arcminutes and arcseconds for precise positioning.
What angle units are used in construction and carpentry?
Construction primarily uses degrees for roof pitch, stair angles, and wall alignment. Common construction angles include 90 degrees (right angles for walls), 45 degrees (miter cuts), 22.5 degrees (octagonal joints), and various roof pitches expressed as rise-over-run ratios. A standard staircase rises at about 30-35 degrees, and a 4/12 roof pitch equals about 18.4 degrees.
Why do programming languages use radians for trigonometric functions?
Most programming languages (JavaScript, Python, C, Java) use radians in their Math.sin(), Math.cos(), and Math.tan() functions because radians are the natural unit in calculus and mathematical analysis. When writing code, always convert degrees to radians before calling trig functions: radians = degrees x Math.PI / 180. Forgetting this conversion is one of the most common math bugs in programming.

Explore More Unit Converters Tools

Temperature Converter: Try our free temperature converter for instant results.

Length Converter: Try our free length converter for instant results.

Weight Converter: Try our free weight converter for instant results.

Volume Converter: Try our free volume converter for instant results.

Area Converter: Try our free area converter for instant results.

Speed Converter: Try our free speed converter for instant results.

Calculators