Coordinate Converter

Single & batch conversion between DD, DMS, DDM, UTM. Interactive map with click‑to‑convert.

? Eiffel Tower ? Statue of Liberty ? Taj Mahal ? Stonehenge ? UTM (31N)
Decimal Degrees (DD)
48.8584° N, 2.2945° E
DMS
48° 51' 30.24" N, 2° 17' 40.20" E
DDM
48° 51.504' N, 2° 17.670' E
UTM (WGS84)
31N 448251 5411933

Click on map to update coordinates

Paste up to 100 coordinates (one per line, format: lat lon in decimal degrees). Then click Convert.

# Latitude Longitude DMS DDM UTM

UTM conversion is approximate (zone + easting/northing simplified).

Understanding Coordinate Systems – In Depth

Coordinate systems are frameworks used to uniquely determine the position of a point on Earth. They fall into two main categories: geographic (angular) and projected (planar).

1. Geographic Coordinate Systems

Use a three‑dimensional spherical surface to define locations. The most common is latitude and longitude, referenced to a datum (e.g., WGS84). Latitude measures north‑south (0° at equator, 90° at poles), longitude measures east‑west (0° at Greenwich).

2. Projected Coordinate Systems

Project the curved Earth onto a flat surface. Examples: UTM, State Plane, Mercator. They use linear units (meters, feet) and are used for large‑scale mapping and engineering.

3. Datums and Reference Ellipsoids

A datum defines the size and shape of the Earth model and the origin of the coordinate system. WGS84 is the global standard for GPS. Other local datums (NAD83, ETRS89) are optimised for specific regions. Converting between datums requires transformations (shift, rotation, scale).

4. Common Coordinate Formats
  • Decimal Degrees (DD): e.g., 48.8584°, -2.2945° – simple and used by web APIs.
  • Degrees Minutes Seconds (DMS): e.g., 48°51'30.24"N – traditional, used on nautical charts.
  • Degrees Decimal Minutes (DDM): e.g., 48°51.504'N – used by many GPS receivers.
  • UTM: e.g., 31N 448251 5411933 – zone + easting + northing, ideal for distance calculations.
  • MGRS: Military Grid Reference System – based on UTM, used by NATO.
5. Map Projection Distortions

All projections distort area, shape, distance, or direction. UTM (transverse Mercator) preserves angles locally but distorts area and distance away from the central meridian. Choosing the right projection depends on your application (navigation, area measurement, etc.).

Conversion Fundamentals

Converting between formats involves simple arithmetic:

  • DMS → DD: DD = Degrees + Minutes/60 + Seconds/3600
  • DD → DMS: Degrees = floor(DD); Minutes = floor((DD - Degrees) * 60); Seconds = (DD - Degrees - Minutes/60) * 3600
  • DDM: Degrees as integer, decimal minutes = (DD - Degrees) * 60
  • UTM: More complex formulas involving ellipsoid parameters; our tool provides an approximation for demonstration.
System Example Typical Use
DD 48.8584, 2.2945 Web mapping, GPS exchange
DMS 48°51'30.24"N 2°17'40.20"E Paper maps, aviation
DDM 48°51.504'N 2°17.670'E Handheld GPS units
UTM 31N 448251 5411933 Surveying, forestry, GIS analysis

Why Datum Matters

Coordinates are meaningless without a datum. WGS84 and NAD83 are almost identical in the continental US (within 1–2 meters), but differences can reach hundreds of meters in other parts of the world. Always verify the datum of your source data.

How to Use the Batch Processor

1
Switch to the Batch Processing tab and paste your coordinates (one pair per line).
2
Click Convert Batch to generate a table with all formats.
3
Use Export CSV to download the results for use in spreadsheets or GIS.

Frequently Asked Questions

Geographic systems use angles (lat/lon) on a sphere/ellipsoid. Projected systems use linear units (meters) on a flat surface, enabling distance and area calculations.

Our UTM conversion uses a simplified algorithm (zone + approximate easting/northing). For precise surveying, use dedicated GIS software.

This tool assumes WGS84 input. For datum conversions, specialized geodetic software (like PROJ) is required.