Precise bidirectional conversion between Decimal Degrees (DD), Degrees Minutes Seconds (DMS), and Degrees Decimal Minutes (DDM). Visualize geographic coordinates on an interactive graticule.
The graticule shows major latitude/longitude lines. Red marker indicates the current coordinate (from DD panel).
Geographic coordinates are essential for navigation, mapping, surveying, and GIS. The three most common formats are Decimal Degrees (DD), Degrees Minutes Seconds (DMS), and Degrees Decimal Minutes (DDM). The conversion between them relies on base‑60 arithmetic (sexagesimal) and directional hemispheres (N/S/E/W). Our tool implements rigorous algorithms compliant with ISO 6709 and WGS84 reference frame.
Conversion formulas:
DD → DMS: Degrees = floor(|DD|), Minutes = floor((|DD| - deg)*60), Seconds = ((|DD| - deg)*60 - min)*60. Add hemisphere (N for positive lat, S for negative; E for positive lon, W for negative).
DMS → DD: DD = deg + min/60 + sec/3600, then apply sign according to hemisphere (S or W negative).
DD → DDM: Degrees = floor(|DD|), Decimal minutes = (|DD| - deg)*60. Hemisphere as above.
International maritime charts traditionally publish coordinates in DMS (e.g., 38°55'30"N, 77°02'15"W). However, modern Electronic Chart Display and Information Systems (ECDIS) prefer DD or DDM. Incorrect conversion can lead to navigation errors up to 30 meters. Our converter validates hemisphere handling and rounding, ensuring compliance with IHO S-63 standards. For aviation, runway coordinates must be accurate to 1 second of arc – a precision this tool maintains.
One second of latitude equals approximately 30.9 meters on Earth's surface. Rounding seconds to two decimals yields ~0.3m precision, sufficient for most applications. Our converter retains 6 decimal places in DD mode (~0.11m precision). For critical surveying, always verify hemisphere signs: N/S for latitude, E/W for longitude. This tool automatically validates ranges: latitude ∈ [-90,90], longitude ∈ [-180,180].