Angle Unit Converter
Convert angles between degrees, radians, gradians, arcminutes, arcseconds, and turns for motor, antenna, and RF applications.
Formula
1° = π/180 rad = 10/9 grad
How It Works
Worked Example
A quarter-turn servo rotation of 90°: 90° = π/2 rad ≈ 1.5708 rad = 100 grad = 5400 arcminutes = 324,000 arcseconds = 0.25 turns. A small beam steering angle of 0.1°: 0.1° = 0.001745 rad = 0.111 grad = 6 arcminutes = 360 arcseconds.
Practical Tips
- ✓In embedded firmware, convert once at input/output boundaries: store and compute in radians internally, display in degrees for users.
- ✓Antenna beamwidth is quoted in degrees (e.g., 3 dB beamwidth of 12°); servo and stepper positions are often in encoder counts that map to degrees.
- ✓Arcminutes and arcseconds matter for precision optics and GPS — 1 arcsecond of latitude ≈ 30.8 m on Earth's surface.
Common Mistakes
- ✗Using degrees instead of radians in trigonometric calculations in code — most math libraries (sin, cos, atan2) expect radians.
- ✗Confusing gradians with degrees — 100 grad = 90°, not 100°. Gradians are only common in European surveying equipment.
- ✗Accumulating floating-point errors in angle calculations; after many additions, wrap the angle modulo 360° (or 2π) to prevent drift.
Frequently Asked Questions
Related Calculators
Motor
Encoder Resolution
Calculate encoder counts per revolution, angular resolution, and maximum frequency for quadrature and single-channel encoders.
Motor
Gear Ratio
Calculate gear ratio, output speed, torque multiplication, and power transmission efficiency for gear trains.
Antenna
Beamwidth
Calculate antenna 3dB beamwidth from gain, aperture efficiency, and frequency for aperture antennas
Convert
Frequency ↔ Wavelength
Convert frequency to wavelength in any medium. Calculates full, half, and quarter wavelengths for antenna design, transmission line, and RF system planning.
Convert
dBm ↔ Watts
Convert RF power between dBm, Watts, milliwatts, dBW, dBμV, and RMS volts into 50Ω. Essential for link budgets, amplifier analysis, and RF system design.
Convert
Temperature Converter
Convert temperature between Celsius, Fahrenheit, Kelvin, Rankine, and Réaumur scales. Useful for thermal analysis, datasheet comparison, and engineering calculations.