Coordinate Converter - DD to DMS & UTM
Convert geographic coordinates between Decimal Degrees, Degrees Minutes Seconds, and UTM formats. Supports WGS84 datum for GPS and mapping applications.
Formula
DD = Deg + Min/60 + Sec/3600
To convert DMS to Decimal Degrees: Add degrees, minutes divided by 60, and seconds divided by 3600. Apply negative sign for South or West directions.
Worked Examples
Example 1: DMS to DD: Lower Manhattan
Problem:A survey note gives 40ยฐ 42' 46" N, 74ยฐ 0' 21" W. Convert both to decimal degrees for a GeoJSON file.
Solution:Latitude: 40 + 46/3600 + 42/60 = 40 + 0.700000 + 0.012778 = 40.712778. Longitude: 74 + 0/60 + 21/3600 = 74.005833, then negate because the direction is West.
Result:40.712778, -74.005833
Example 2: DD to DMS: Sydney Opera House
Problem:Google Maps reports -33.8688, 151.2093. Convert to degrees, minutes and seconds for an aviation chart.
Solution:Latitude: whole degrees 33; 0.8688 x 60 = 52.128, so 52 minutes; 0.128 x 60 = 7.68 seconds; sign is negative so direction is S. Longitude: whole degrees 151; 0.2093 x 60 = 12.558, so 12 minutes; 0.558 x 60 = 33.48 seconds; sign is positive so direction is E.
Result:33ยฐ 52' 7.68" S, 151ยฐ 12' 33.48" E
Frequently Asked Questions
What is DD vs DMS?
DD (Decimal Degrees) expresses coordinates as single decimal numbers (e.g., 40.7128). DMS (Degrees Minutes Seconds) breaks them down into base-60 units (e.g., 40ยฐ 42' 46" N).
How accurate are GPS coordinates?
5 decimal places (e.g., 40.12345) gives accuracy to about 1.1 meters. 6 decimal places is accurate to ~11cm. 4 decimal places is accurate to ~11 meters (street level).
How to find coordinates on Google Maps?
On desktop, right-click any point and select the numbers at the top of the menu. On mobile, long-press a location to drop a pin and see coordinates in the search bar.
Can coordinates locate a specific house?
Yes. With 5-6 decimal places of precision, coordinates can pinpoint a specific front door or even a chair in a room.