Coordinate Converter
Convert GPS coordinates between DD, DMS, and UTM formats
Examples: 40.7128, -74.0060 (DD) · 40° 42' 46.08" N, 74° 0' 21.6" W (DMS) · 18T 583960 4507523 (UTM)
Format Quick Reference
| Format | Example | Best For |
|---|---|---|
| Decimal Degrees | 40.7128, -74.0060 | Google Maps, APIs, databases |
| DMS | 40° 42' 46" N, 74° 0' 22" W | Aviation, maritime, traditional maps |
| UTM | 18T 583960 4507523 | Surveying, military, topographic maps |
Understanding Coordinate Systems
Geographic coordinates are used to pinpoint any location on Earth. Whether you are navigating with a handheld GPS, placing a marker on a digital map, or filing a land survey, you will encounter coordinates expressed in different formats. This tool converts between the three most common systems: Decimal Degrees (DD), Degrees Minutes Seconds (DMS), and the Universal Transverse Mercator (UTM) grid.
Decimal Degrees (DD)
Decimal Degrees represent latitude and longitude as simple decimal numbers. Latitude ranges from -90 (South Pole) to +90 (North Pole), and longitude ranges from -180 (west of the Prime Meridian) to +180 (east). For example, New York City sits at approximately 40.7128° N, 74.0060° W, written in DD as 40.7128, -74.0060.
DD is the most widely used format in modern technology. Google Maps, Apple Maps, OpenStreetMap, and virtually every mapping API accept and return coordinates in Decimal Degrees. It is also the standard for storing geospatial data in databases because decimal numbers are easy to sort, index, and compute with. If you are building a web application, embedding a map widget, or querying a geocoding service, DD is almost certainly the format you need.
Degrees Minutes Seconds (DMS)
DMS breaks each coordinate into three components — degrees (°), minutes ('), and seconds (") — followed by a cardinal direction (N, S, E, or W). One degree equals 60 minutes, and one minute equals 60 seconds. The same New York City location in DMS is 40° 42' 46.08" N, 74° 0' 21.6" W.
DMS has a long history in navigation and cartography. It is the standard format on nautical charts, aviation sectional charts, and many topographic maps. When pilots communicate positions over radio, they use DMS because the degree-minute-second structure is unambiguous when spoken aloud. Surveyors and land records often record property boundaries in DMS as well. If you are working with traditional maps, filing a flight plan, or reading coordinates from an older GPS receiver, you will likely encounter DMS format.
To convert from DMS to DD, use the formula: DD = Degrees + (Minutes / 60) + (Seconds / 3600). Apply a negative sign for South latitudes or West longitudes. Conversely, to go from DD to DMS: take the integer part as degrees, multiply the fractional part by 60 to get minutes, then multiply the fractional part of minutes by 60 to get seconds.
Universal Transverse Mercator (UTM)
UTM is a map projection system that divides the Earth into 60 longitudinal zones, each 6 degrees wide, numbered 1 through 60 starting from 180° W. Within each zone, positions are given as an easting (distance in meters east of a false origin) and a northing (distance in meters north of the equator, or from a false origin of 10,000,000 m for southern hemisphere points). A letter designator (C through X, excluding I and O) indicates the latitude band.
The key advantage of UTM is that it uses meters as its unit, making distance and area calculations straightforward. You can simply subtract two easting values to find horizontal distance, something that is far more complex with angular DD or DMS coordinates. This is why UTM is the coordinate system of choice for military grid reference systems (MGRS), topographic surveys, construction site planning, and environmental field work.
UTM coordinates are valid between 84° N and 80° S. The polar regions use the Universal Polar Stereographic (UPS) system instead. Special zone rules apply in Norway and Svalbard to minimize distortion. When working with UTM, always ensure you include the zone number and hemisphere letter, as the same easting/northing pair can refer to entirely different locations in different zones.
When to Use Each Format
Web mapping, APIs, databases, geocoding services, any modern digital application. The universal default.
Aviation, maritime navigation, traditional cartography, land surveys, legal property descriptions.
Surveying, military operations, topographic maps, construction, any work requiring metric distance calculations.
Precision and Accuracy
The number of decimal places in DD directly affects spatial precision. One decimal place (0.1°) is accurate to about 11.1 km. Two decimal places give you roughly 1.1 km accuracy. Four decimal places narrow it to 11 meters, and six decimal places reach 0.11 meters — more than enough for most applications. This converter uses six decimal places by default, providing sub-meter precision for all conversions.
Remember that coordinate conversion itself is mathematically exact. No precision is lost when converting between DD, DMS, and UTM — the only limitation is the number of significant digits you choose to display. Our converter preserves high precision across all formats.
Related tools: Get your current GPS coordinates directly from your device. Find your location on a map, or look up any IP address location.
Frequently Asked Questions
What is the difference between DD, DMS, and UTM coordinates?
How do I convert DMS to decimal degrees?
What is UTM and when should I use it?
How accurate is this coordinate converter?
Can I convert coordinates from Google Maps?
More Tools