GPS Coordinate Converter Online Free — DD to DMS & Map Utility
FreeGeoTagger's free online GPS Coordinate Converter provides instant, high-precision conversion between Decimal Degrees (DD), Degrees Minutes Seconds (DMS), Degrees Decimal Minutes (DDM), and Base32 Geohash. Inspect any global coordinate on an interactive Leaflet map, parse messy coordinate strings automatically, and transfer verified coordinates directly into our photo geotagging engine with zero server uploads.
Whether you are copying coordinates from Google Maps, cross-referencing aerial drone surveys, preparing listing assets for real estate portals, or writing EXIF geolocation tags to photography archives, our tool provides seamless format transformation with mathematical precision.
Supported GPS Coordinate Notations
- Decimal Degrees (DD): Standard notation for web mapping engines, GIS software (ArcGIS, QGIS), and software development (e.g.
37.774929, -122.419416). Positive numbers indicate North and East; negative numbers indicate South and West. - Degrees, Minutes, Seconds (DMS): The traditional astronomical sexagesimal standard (e.g.
37° 46' 29.74" N, 122° 25' 09.90" W). This is the exact rational format mandated by the international EXIF 2.32 standard for camera image headers. - Degrees Decimal Minutes (DDM): The official standard for aeronautical charts, nautical GPS navigation, and maritime charting (e.g.
37° 46.4957' N, 122° 25.1650' W). - Geohash: Interleaved hierarchical spatial index that encodes two-dimensional coordinates into a short alphanumeric string (e.g.
9q8yyk8y), ideal for spatial database caching.
Universal Smart Coordinate Parser
You do not need to clean or reformat coordinates before pasting them into FreeGeoTagger. Our universal parser auto-detects and extracts valid spatial coordinates from diverse inputs:
- Standard decimal coordinates:
37.774929, -122.419416or37.774929 -122.419416 - Google Maps URLs:
https://www.google.com/maps/@37.774929,-122.419416,17zorhttps://maps.google.com/?q=37.774929,-122.419416 - OpenStreetMap URLs:
https://www.openstreetmap.org/#map=16/37.774929/-122.419416 - Sexagesimal DMS strings with unicode symbols:
37° 46' 29.74" N, 122° 25' 09.90" W - Unsigned DMS with hemisphere prefixes:
N 37 46 29.74, W 122 25 09.90 - Nautical DDM formats:
37° 46.4957' N, 122° 25.1650' W - Base32 Geohash codes:
9q8yyk8y
Conversion Mathematics & Step-by-Step Formulas
The mathematical relationships governing WGS84 angular coordinate representations are straightforward:
Converting DMS to Decimal Degrees
DD = (Degrees + (Minutes / 60) + (Seconds / 3600)) * (Direction in ['S', 'W'] ? -1 : 1)
Example: Convert 40° 42' 46.02" N:
40 + (42 / 60) + (46.02 / 3600) = 40 + 0.7000 + 0.012783 = 40.712783°
Converting Decimal Degrees to DMS
- Take the absolute value of the decimal coordinate. If original was negative, direction is South (for latitude) or West (for longitude).
- The whole number component is the Degrees.
- Multiply the remaining fractional component by 60. The whole number component of this result is the Minutes.
- Multiply the remaining fractional minute by 60. This result is the Seconds.
Coordinate Precision & Ground Resolution Table
Because the circumference of the Earth along meridians is approximately 40,007 kilometers, each degree of latitude represents approximately 111.32 kilometers (69.17 miles). The table below outlines how decimal place counts translate to physical ground distance:
| Decimal Places | Degree Precision | Equatorial Ground Resolution | Common Use Case |
|---|---|---|---|
| 1 (0.1) | 0.1° | ~11.1 kilometers (6.9 miles) | Large metropolitan area |
| 2 (0.01) | 0.01° | ~1.11 kilometers (0.69 miles) | Town or village boundary |
| 3 (0.001) | 0.001° | ~111 meters (364 feet) | Agricultural field or large estate |
| 4 (0.0001) | 0.0001° | ~11.1 meters (36.4 feet) | Individual property parcel or street address |
| 5 (0.00001) | 0.00001° | ~1.11 meters (3.64 feet) | Smartphone GPS accuracy (Ideal for photo geotagging) |
| 6 (0.000001) | 0.000001° | ~11.1 centimeters (4.37 inches) | Surveying, drone photography, construction milestones |
| 7 (0.0000001) | 0.0000001° | ~1.11 centimeters (0.44 inches) | Geodetic surveying, structural drift monitoring |
How GPS Coordinates are Encoded in EXIF Photo Metadata
Under the EXIF 2.32 standard for digital still cameras (JEITA CP-3451D), GPS coordinates are not recorded as raw decimal numbers. Instead, they are stored inside the GPS IFD segment as rational arrays paired with hemisphere flags:
- Tag 0x0001 (GPSLatitudeRef): 'N' for Northern Hemisphere, 'S' for Southern Hemisphere.
- Tag 0x0002 (GPSLatitude): Three unsigned rational fractions representing degrees, minutes, and seconds:
[[deg, 1], [min, 1], [sec*100, 100]]. - Tag 0x0003 (GPSLongitudeRef): 'E' for Eastern Hemisphere, 'W' for Western Hemisphere.
- Tag 0x0004 (GPSLongitude): Three unsigned rational fractions representing degrees, minutes, and seconds:
[[deg, 1], [min, 1], [sec*100, 100]].
Related Free Geotagging Tools & Resources
- Add GPS to Photos: Use our primary Free Photo Geotagger to inject these converted coordinates directly into your JPG, PNG, WebP, or HEIC files.
- Inspect Stored Geotags: Check coordinates embedded in existing photos using our GPS Photo Finder.
- Inspect All Camera Settings: Analyze shutter speed, ISO, aperture, and lens metrics in our Online EXIF Viewer.
- Protect Your Privacy: Strip location tags before sharing images publicly with our Remove GPS from Photo tool.
- Batch Geotagging: Process multiple images with group coordinates or CSV sheets using our Batch Geotag Photos tool.
- In-Depth Technical Guide: Read our comprehensive tutorial on what EXIF GPS metadata is and how it works.
Frequently Asked Questions
What is the difference between Decimal Degrees (DD) and DMS?
Decimal Degrees (DD) express latitude and longitude as simple decimal numbers (e.g. 37.774929, -122.419416), where positive numbers indicate North/East and negative numbers indicate South/West. Degrees, Minutes, Seconds (DMS) breaks coordinates into angular units (e.g. 37° 46' 29.74" N, 122° 25' 09.90" W), where 1 degree equals 60 minutes, and 1 minute equals 60 seconds.
How many decimal places do I need for accurate GPS coordinates?
Four decimal places gives accuracy of approximately 11 meters (street or neighborhood level). Five decimal places achieves 1.1 meters (identifying a specific driveway or tree). Six decimal places reaches 11 centimeters (sub-meter pinpointing used by modern smartphones and cameras). Seven or eight decimal places represents millimeter accuracy, typically unnecessary for civilian photo geotagging.
How do I convert Google Maps coordinates into DMS?
Right-click any point in Google Maps and click on the coordinates at the top of the context menu to copy them (e.g. 40.7128, -74.0060). Paste them into our Smart Coordinate Parser box above, and the tool will instantly convert them into Degrees Minutes Seconds (DMS), Degrees Decimal Minutes (DDM), and Geohash.
How are GPS coordinates stored inside photo EXIF tags?
Digital cameras and smartphones store coordinates inside the EXIF GPS IFD block as three rational numbers (degrees/1, minutes/1, seconds/100) paired with reference tags: GPSLatitudeRef ('N' or 'S') and GPSLongitudeRef ('E' or 'W'). You can use our tool to convert any decimal coordinate into the exact DMS fractions required by EXIF standards.
Can I use these converted coordinates to geotag my photos?
Yes! Once you find or convert your desired coordinates, click the 'Geotag Photos with These Coordinates' button. This opens our free photo geotagging tool with your exact latitude and longitude pre-loaded, ready to embed into JPG, PNG, WebP, or HEIC photos.
Does converting coordinates send my location to any external servers?
No. All coordinate conversions (DD, DMS, DDM, Geohash, and distance calculations) execute 100% locally in your browser using client-side JavaScript. If you search for an address, the query is proxied through our privacy-safe server cache which never logs IP addresses, queries, or user identities.