Unit Conversion
Length Unit Conversion

Converts between different units of length.
Supported units: meters (m), inches (in), feet (ft), yards (yd), miles (mi), nautical miles (nm), fathoms (ftm)
Example: 1 meter → 39.37 inches
- Input [Type]: Input unit length [Number]
- Output [Type]: Output unit length [Number]
Pressure Unit Conversion

Converts between different units of pressure.
Supported units: meters H2O (mH2O), Torr, technical atmospheres (at), atmospheres (atm), Pascals (Pa), bars (bar)
Example: 1 atmosphere → 101,325 Pascals
- Input [Type]: Input unit pressure [Number]
- Output [Type]: Output unit pressure [Number]
Energy Unit Conversion

Converts between different units of energy.
Supported units: Joules (J), calories (C), watt-hours (Wh)
Example: 1 calorie → 4.184 Joules
- Input [Type]: Input unit energy [Number]
- Output [Type]: Output unit energy [Number]
Speed Unit Conversion

Converts between different units of speed.
Supported units: m/s, km/h, knots (kn), mi/h
Example: 100 km/h → 27.78 m/s
- Input [Type]: Input unit speed [Number]
- Output [Type]: Output unit speed [Number]
Temperature Unit Conversion

Converts between different temperature scales.
Supported units: Kelvin (K), Celsius (℃), Fahrenheit (F), Rømer (°Rø), Rankine (°R)
Example: 20℃ → 68°F
- Input [Type]: Input unit temperature [Number]
- Output [Type]: Output unit temperature [Number]
Astronomical Distance Unit Conversion

Converts between astronomical distance units.
Supported units: meters (m), astronomical units (AU), parsecs (pc), light-years (ly)
Example: 1 light-year → 9.461 × 10¹⁵ meters
- Input [Type]: Input unit astronomical distance [Number]
- Output [Type]: Output unit astronomical distance [Number]
Angle Unit Conversion

Converts angles between radians (rad) and degrees (°).
• Degrees (°) → Radians (rad): Multiply angle by π/180
• Radians (rad) → Degrees (°): Multiply angle by 180/π
Example: 90° → 1.571 radians
- Input [Type]: Input unit angle [Number]
- Output [Type]: Output unit angle [Number]
Convert Coordinate DMS to Decimal Degrees

Converts coordinates in degrees, minutes, and seconds to decimal degree format.
Example: 37° 33′ 51.17″ → 37.564214°
- Input [Type]: Degrees [Number], Minutes [Number], Seconds [Number]
- Output [Type]: Degrees [Number]
Convert Decimal Degrees to DMS

Converts decimal degrees to degrees, minutes, and seconds format and returns them as a list.
Example: 37.564214° → 37° 33′ 51.17″ → List [37, 33, 51.17]
- Input [Type]: Degrees [Number]
- Output [Type]: Degrees, minutes, seconds [List]
Convert Angle to Compass Direction

Converts the input angle to compass direction text.
Compass directions: N (North), NE (Northeast), E (East), SE (Southeast), S (South), SW (Southwest), W (West), NW (Northwest)
Example: 45° → “NE”, 180° → “S”
- Input [Type]: Angle [Number]
- Output [Type]: Compass direction [Text]