Convert between Decimal Degrees (DD), Degrees Minutes Seconds (DMS), and Degrees Decimal Minutes (DDM) according to ISO 6709. Interactive map based on WGS84 datum.
The Global Positioning System relies on the World Geodetic System 1984 (WGS84) ellipsoid. Converting between Decimal Degrees (DD), Degrees Minutes Seconds (DMS), and Degrees Decimal Minutes (DDM) is essential for interoperability across mapping platforms, GIS software, and handheld GPS units. This tool implements authoritative conversion formulas and validates bounds according to ISO 6709:2008 standards.
? Conversion formulas (ISO 19111 / EPSG Guidance Note 7-2)
DD → DMS: degrees = floor(|dd|); minutes = floor((|dd|-deg)*60); seconds = ((|dd|-deg)*60 - minutes)*60; direction applied.
DMS → DD: dd = (degrees + minutes/60 + seconds/3600) * direction_sign (N/E positive, S/W negative).
DDM: decimal_minutes = minutes + seconds/60, displayed as degrees and decimal minutes.
A geodetic surveyor uses DMS notation from legacy charts: 56° 34' 12" N, 004° 22' 08" W. After converting to DD (56.570000°, -4.368889°), the data is integrated into real‑time DGPS systems for pipeline installation. Our converter ensures consistent transformation, eliminating human arithmetic errors. The interactive map confirms the location in the North Sea against the WGS84 datum.
This tool follows guidelines from ISO 6709:2008 (Standard representation of geographic point location by coordinates), the Open Geospatial Consortium (OGC) best practices, and the National Geospatial-Intelligence Agency (NGA) technical reports on geodetic conversions. Formulas are derived from "Geometric Geodesy" by R. Rapp and verified against USGS coordinate transformation utilities.
Quality Commitment: Our conversion algorithms strictly adhere to ISO 6709:2008 and OGC standards. All computations are performed locally in your browser, with no data uploaded, ensuring privacy and real-time performance.
Data & Datum: This tool uses and enforces the WGS84 (EPSG:4326) geodetic datum as the default. This is the standard for global positioning systems and most online map services. For coordinates using other datums (e.g., GCJ-02, BD-09), please convert them to WGS84 first.