A coordinate converter translates a single point on Earth between the notations used by maps, surveys, and GPS devices. Decimal degrees are easy for computers, degrees-minutes-seconds (DMS) appear on nautical charts, and UTM grids and Geohashes are handy for engineering and databases. This free tool shows all of them at once, using standard WGS84 formulas entirely in your browser.
How it works
Decimal degrees ↔ DMS/DDM. A signed decimal degree is split into whole degrees, whole minutes, and seconds. The sign becomes a hemisphere letter: N/S for latitude, E/W for longitude. DDM keeps minutes as a decimal instead of breaking out seconds.
UTM. The globe is divided into 60 zones, each 6° of longitude wide. Latitude and longitude are projected onto a transverse Mercator using a truncated series expansion of the WGS84 ellipsoid, producing an easting (metres from the zone’s false origin) and a northing (metres from the equator, with a 10,000,000 m offset south of the equator). The result is reported as zone hemisphere easting northing.
Geohash. The tool interleaves bits from a binary search of the latitude range (−90…90) and longitude range (−180…180), then base-32 encodes five bits per character. Longer strings carry more bits and therefore more precision.
Example and tips
The point 40.17719, 44.51453 (near Yerevan) converts to roughly:
DMS: 40°10'37.9"N 44°30'52.3"E
UTM: 38T 458930 4447190
Geohash: szx7s...
- Always confirm your source data is WGS84 before trusting metre-level results.
- Geohash length controls precision — trim characters for coarser areas, add them for pinpoint locations.
- UTM eastings are kept inside a single zone; a point near a zone edge will still convert but neighbouring features may sit in a different zone.