十进制度转度分秒转换器 — 公式
## Decimal Degrees to DMS
### Conversion Steps
1. **Degrees** = floor of the decimal degree value
2. **Minutes** = floor of (fractional part x 60)
3. **Seconds** = remaining fraction x 60
### Example
40.7128° = 40° 42' 46.08"
DMS format is commonly used on maps, in navigation, and for GPS coordinates.
### Conversion Steps
1. **Degrees** = floor of the decimal degree value
2. **Minutes** = floor of (fractional part x 60)
3. **Seconds** = remaining fraction x 60
### Example
40.7128° = 40° 42' 46.08"
DMS format is commonly used on maps, in navigation, and for GPS coordinates.
计算示例
Convert 40.7128° (New York City latitude) to DMS.
- Degrees = 40
- Fractional = 0.7128 x 60 = 42.768 minutes
- Minutes = 42
- Seconds = 0.768 x 60 = 46.08 seconds
- Result: 40° 42' 46.08"