πŸ¦‰ UnitOwl

Angles Converter

By KAMP Inc. / UnitOwl · Last reviewed:

Angle measurement underlies geometry, trigonometry, navigation, engineering, and astronomy. Three main systems are in use: degrees (the most familiar), radians (the mathematical standard), and gradians (used in some surveying applications). Converting accurately between them is essential for programming, signal processing, GPS calculations, and understanding how rotation relates to circular motion.

Result
0.0174533 rad
1 Β° = 0.0174533 rad

Popular Angles Conversions

Degrees, Radians, and Gradians: Three Ways to Measure Rotation

Degrees divide a full circle into 360 parts β€” a convention inherited from ancient Babylonian astronomy, which used a base-60 number system. Each degree can be subdivided into 60 arcminutes ('), and each arcminute into 60 arcseconds ("). Radians define angle by arc length: one radian is the angle subtended at the center of a circle when the arc length equals the radius. A full circle contains 2Ο€ radians (approximately 6.2832). Radians are the natural unit for calculus and physics because trigonometric derivatives are cleanest in radians. Gradians (also called gon or grad) divide a full circle into 400 equal parts β€” a right angle is exactly 100 gradians. This makes gradians convenient for surveying because quarter-circle calculations involve round numbers.

Angle Equivalent
1 full circle 360Β° = 2Ο€ rad = 400 grad
1 right angle 90Β° = Ο€/2 rad = 100 grad
1 radian β‰ˆ 57.296Β°
1 degree β‰ˆ 0.01745 rad
1 gradian 0.9Β° = Ο€/200 rad
180Β° Ο€ radians

Radians in Mathematics and Programming

Every major programming language and mathematical library uses radians internally for trigonometric functions. When you call Math.sin(x) in JavaScript, Python's math.sin(x), or C's sin(x), x must be in radians. A common bug for beginners is passing degrees directly to these functions β€” Math.sin(90) does not return 1 (sin(90Β°) = 1); it returns sin(90 radians) β‰ˆ 0.894. To convert degrees to radians in code: radians = degrees Γ— Ο€ / 180. To go the other way: degrees = radians Γ— 180 / Ο€. Many game engines and physics simulators work internally in radians while exposing interfaces in degrees for human convenience. Understanding this layer helps avoid subtle orientation bugs.

Practical Angle Applications: Navigation and Astronomy

In GPS and geographic coordinate systems, angles describe positions on the Earth's surface. Latitude and longitude are measured in degrees, arcminutes, and arcseconds (DMS format) or decimal degrees (DD format). One arcsecond of latitude equals approximately 31 meters on the Earth's surface; one arcminute equals about 1.85 km (which is also why a nautical mile is defined as one arcminute of latitude). In astronomy, angular separation between celestial objects is measured in degrees, arcminutes, and arcseconds. The full moon subtends about 0.5Β° (30 arcminutes) of arc. The finest detail visible to the naked eye is about 1 arcminute; a telescope with arcsecond resolution can distinguish features 1,800 times finer than what the unaided eye can see.

Sources & References