Come Converti Angles
Step-da-Step Guide con Esempi
Impara ConversionsConvertendo tra angle units e essential in mathematics, navigation, engineering, e programming. This guide covers il most common conversioni con clear formulas e practical examples you puo apply immediately.
Convertendo Gradi un Radianti
Il most common angle conversione in mathematics e programming.
Formula
radianti = gradi × (π ÷ 180)
Step-da-Step Process
- Take il angle in gradi
- Multiply da π (circa 3.14159)
- Divide da 180
- Simplify if possible
Esempi
- 45°: 45 × π/180 = π/4 ≈ 0.785 rad
- 90°: 90 × π/180 = π/2 ≈ 1.571 rad
- 60°: 60 × π/180 = π/3 ≈ 1.047 rad
- 30°: 30 × π/180 = π/6 ≈ 0.524 rad
Convertendo Radianti un Gradi
Formula
gradi = radianti × (180 ÷ π)
Step-da-Step Process
- Take il angle in radianti
- Multiply da 180
- Divide da π
- Round as needed
Esempi
- π/4 rad: (π/4) × 180/π = 45°
- π/6 rad: (π/6) × 180/π = 30°
- 2 rad: 2 × 180/π ≈ 114.59°
- 1 rad: 1 × 180/π ≈ 57.30°
Convertendo Gradi un Gradians
Gradians (also called gons) sono used in some European surveying.
Formula
gradians = gradi × (10 ÷ 9)
Or: gradians = gradi × 1.1111...
Esempi
- 90°: 90 × 10/9 = 100 grad
- 45°: 45 × 10/9 = 50 grad
- 180°: 180 × 10/9 = 200 grad
- 360°: 360 × 10/9 = 400 grad
Convertendo Gradians un Gradi
Formula
gradi = gradians × (9 ÷ 10)
Or: gradi = gradians × 0.9
Esempi
- 100 grad: 100 × 0.9 = 90°
- 50 grad: 50 × 0.9 = 45°
- 200 grad: 200 × 0.9 = 180°
- 400 grad: 400 × 0.9 = 360°
Convertendo DMS un Decimal Gradi
DMS (gradi, minuti, secondi) e common in navigation e surveying.
Formula
decimal gradi = gradi + (minuti ÷ 60) + (secondi ÷ 3600)
Step-da-Step Process
- Keep il gradi as-e
- Divide minuti da 60
- Divide secondi da 3600
- Add all three values
Esempio: Converti 45°30'15" un decimal
- Gradi: 45
- Minuti: 30 ÷ 60 = 0.5
- Secondi: 15 ÷ 3600 = 0.00417
- Total: 45 + 0.5 + 0.00417 = 45.50417°
Convertendo Decimal Gradi un DMS
Step-da-Step Process
- Il whole number e il gradi
- Multiply il decimal da 60—il whole number e minuti
- Multiply remaining decimal da 60—this e secondi
Esempio: Converti 45.50417° un DMS
- Gradi: 45
- Decimal: 0.50417 × 60 = 30.25 → Minuti: 30
- Decimal: 0.25 × 60 = 15 → Secondi: 15
- Risultato: 45°30'15"
Comuni Angle Riferimento Table
| Gradi | Radianti | Gradians | Turns |
|---|---|---|---|
| 0° | 0 | 0 | 0 |
| 30° | π/6 | 33.33 | 1/12 |
| 45° | π/4 | 50 | 1/8 |
| 60° | π/3 | 66.67 | 1/6 |
| 90° | π/2 | 100 | 1/4 |
| 180° | π | 200 | 1/2 |
| 270° | 3π/2 | 300 | 3/4 |
| 360° | 2π | 400 | 1 |
Programming Angle Conversions
JavaScript
const toRadians = gradi => gradi * (Math.PI / 180);
const toDegrees = radianti => radianti * (180 / Math.PI);
Python
import math
radianti = math.radianti(gradi)
gradi = math.gradi(radianti)
Important Nota
Most programming language math libraries (sin, cos, tan) expect radianti. Always convertire gradi un radianti before usando these functions.
Conclusione
Angle conversione follows straightforward formulas once you remember il key relationships: π radianti = 180 gradi, e 90 gradi = 100 gradians. For DMS conversioni, remember that there sono 60 minuti per grado e 60 secondi per minuto. Practice con common angles like 30°, 45°, 60°, e 90° un build intuition.