Lat Long Converter & Tools
Convert coordinates between DD, DMS, DDM, UTM, and Geohash. Preview any location on a map. Calculate distance and bearing between two points.
Enter decimal degrees. Use negative for South latitude or West longitude.
Degrees Minutes Seconds — used in traditional navigation, GPS, and topographic maps.
Degrees Decimal Minutes — used in aviation (ICAO), marine charts, and many handheld GPS units.
Map data © OpenStreetMap contributors.
What This Tool Does
Everything you need to work with geographic coordinates — convert, visualize, and measure.
How to Use This Tool
Logic Behind the Tool
How the math works for each conversion and distance formula.
DD = D + M/60 + S/3600, then negate for S or W.a = sin²(Δlat/2) + cos(lat1)·cos(lat2)·sin²(Δlng/2); d = 2R·atan2(√a, √(1−a)). Using Earth's mean radius of 6,371.0088 km, this is accurate to within ~0.5% for any distance.Frequently Asked Questions
DD (Decimal Degrees) is a single number like 40.7128. DMS (Degrees Minutes Seconds) breaks it into 40° 42' 46" N — the traditional navigation format. DDM (Degrees Decimal Minutes) is 40° 42.768' N, common in aviation and marine GPS. All three represent the same location. DD is preferred in web/software contexts. DMS is on paper maps and older GPS units. DDM is on ICAO aviation charts and marine chartplotters.
In Google Maps: right-click any point on the map and the coordinates appear at the top of the context menu in decimal degrees. On your phone: open Maps, tap and hold a location to drop a pin, then tap the pin — coordinates show at the bottom. On iPhone, the Compass app shows your current coordinates. For precise work, a dedicated GPS device or surveying app gives better accuracy than phone GPS.
The Haversine formula assumes Earth is a perfect sphere with a mean radius of 6,371 km. Earth is actually slightly flattened at the poles (an oblate spheroid), so Haversine has an error of up to about 0.5% for very long distances. For most applications — navigation, location-based searches, general GIS work — this is plenty accurate. For geodetic surveying that needs millimeter precision, use the Vincenty formula on the WGS84 ellipsoid.
Bearing is the direction you would travel from Point A to reach Point B, measured clockwise from true North. 0° = North, 90° = East, 180° = South, 270° = West. The tool also shows the compass direction abbreviation (N, NNE, NE, ENE, etc.) by dividing the circle into 16 equal sectors of 22.5°. This is the initial bearing — for long distances on a curved Earth, the bearing changes along the route.
No — this tool works with raw coordinates only. Address-to-coordinate conversion (geocoding) requires an external geocoding API such as Google Maps Geocoding API, OpenStreetMap Nominatim, or HERE Maps. These services look up an address string and return a lat/long pair. This tool takes lat/long as input and converts between coordinate formats — it does not query external APIs or perform address resolution.