Convert GPS coordinates between DMS, decimal degrees and decimal minutes, paste straight into Google Maps, all in your browser
- Runs locally
- Category Format Converter
- Best for Turning pasted content or local files into a handoff-friendly format.
DMS, decimal degrees and decimal minutes are three ways of writing the same point. Everything runs in your browser; nothing is uploaded.
What this tool does
A free GPS coordinate converter that turns degrees-minutes-seconds (DMS, e.g. 40°26′46″N) into decimal degrees (DD, e.g. 40.4461) and back, and also handles degrees-decimal-minutes (DDM, e.g. 40°26.767′N). Enter latitude and longitude separately so the N/S and E/W hemisphere letters set the correct sign for you: South latitude and West longitude come out negative, exactly the way Google Maps, Leaflet and most GIS tools expect. Paste a mixed format, a colon-separated string or a bare decimal and the tool reads it, validates the range (latitude within ±90, longitude within ±180) and gives you all three notations at once, plus a ready-to-paste Google Maps pair. Every output has a one-click copy button, and the shareable URL reopens the same point. Everything runs client-side with no map tile, no geocoder and no upload, so it is fast and works offline.
Tool details
- Input
- Numbers
- The page exposes text boxes, numeric controls, file pickers, or structured inputs depending on the tool.
- Output
- Live result + Copy
- The result area focuses on usable output, with copy, download, or preview actions when supported.
- Privacy
- Browser-side processing
- The main tool logic does not call an external API, so inputs normally stay in the current tab.
- Save / share
- Shareable URL state
- Key settings are encoded in the URL so another person can reopen the same setup.
- Performance budget
- Initial JS <= 9 KB
- No WASM budget is declared, keeping the tool quick to open on mobile.
- Best fit
- Format Converter · Developer
- Category and role tags drive related tools, internal links, and quick fit checks.
How to use
-
1. Input
Paste or drop your content into the tool panel.
-
2. Process
Click the button. All processing is local in your browser.
-
3. Copy / Download
Copy the result or download to disk in one click.
How Coordinate Converter fits into your work
Use it when the main problem is getting content from one practical format into another.
Conversion jobs
- Turning pasted content or local files into a handoff-friendly format.
- Previewing a conversion before you use it in a larger workflow.
- Cleaning small format mismatches without opening a full editor.
Conversion checks
- Try a small sample first when the source format is messy.
- Check character encoding, separators, and line endings after conversion.
- Keep the source until the converted output has been reviewed.
Good next steps
These links move the current task into a more complete workflow.
- 1 Unit Converter Convert between length, weight, temperature, area, volume, speed, time — instant, browser-only Open
- 2 Timezone Converter Convert any time between any two timezones — DST-aware, IANA database — browser-only Open
- 3 Scientific Notation Converter Plain ⇄ scientific (a×10ⁿ) ⇄ engineering ⇄ E-notation — with significant figures, exact big/small numbers — browser-only Open
Real-world use cases
Drop a pin from a coordinate written in DMS
You copied 40°26′46″N 79°58′56″W out of a Wikipedia infobox or an old field notebook, but Google Maps and your mapping library only take decimal degrees. Paste each half into the latitude and longitude boxes, read 40.446111, -79.982222, copy the Google Maps row and drop the pin. The hemisphere letters set the minus signs so you do not have to remember that West is negative.
Clean up a GPS export for a GeoJSON or CSV import
A device or spreadsheet handed you coordinates in degrees-decimal- minutes like 40°26.767′N, but your import pipeline expects plain decimal degrees. Convert each point to DD, copy the decimal value, and feed your GeoJSON or database the number it actually parses instead of choking on the degree symbol.
Plot a marine or aviation waypoint
Charts and flight plans quote waypoints in DMS or decimal minutes, while your plotting app wants decimal degrees. Convert the waypoint, double-check it lands inside the ±90 / ±180 range, and copy it into your route. The range check catches a transposed digit before it sends you to the wrong hemisphere.
Share a precise location in a message or ticket
You found the exact spot for a survey marker, a geocache or a meeting point and want to send it to a colleague. Convert it, then share the URL: the link reopens the converter with the same latitude and longitude filled in, so the recipient sees every format and can copy whichever their tool needs.
Teach or check the DMS-to-decimal formula
Working through a GIS class or a navigation exam, you need to verify that 40 + 26/60 + 46/3600 really is 40.4461. Type the DMS, read the decimal, and flip it back to confirm the round trip. Seeing all three notations side by side makes the relationship between degrees, minutes and seconds obvious.
Common pitfalls
Forgetting the hemisphere sign. A coordinate without N/S/E/W or a minus sign is ambiguous, since 79.982 and −79.982 sit on opposite sides of the prime meridian. West longitude and South latitude must be negative in decimal degrees, or your pin lands in the wrong hemisphere.
Swapping latitude and longitude. Latitude (±90) always comes first, longitude (±180) second. Pasting 40.45, −79.98 as longitude, latitude sends you to an impossible spot. If a value above 90 shows up in the latitude box, the two are almost certainly reversed.
Confusing decimal minutes with decimal degrees. 40°26.767′ is degrees-decimal-minutes; the .767 is minutes, not degrees. Reading it as 40.767° puts you about 35 km off. Match the format before you convert, and let the tool split the minutes for you.
Privacy
Every conversion runs as plain JavaScript inside your browser tab. The coordinates you type never leave the page: there is no map tile request, no geocoding call and no logging of where you looked. The one caveat is the share feature, which encodes the latitude and longitude into the URL query string, so a link you paste into chat will record that location in the recipient server's access log. For a sensitive site, use the copy buttons and paste the text rather than sharing the URL.
FAQ
Tool combos
Folks in your role tend to reach for these alongside this tool.
- Add Line Numbers Number every line of pasted text — set start, step and separator, zero-pad to align, skip blanks, or strip numbers back off — browser-only
- AES Text Encryptor Encrypt & decrypt text with a password — AES-256-GCM + PBKDF2 via WebCrypto — 100% in your browser, nothing uploaded
- Affine Cipher Encoder & Decoder Encrypt and decrypt the ax+b affine cipher with live modular-inverse check, browser-only
- Age Difference Calculator The exact gap between two birthdays — years/months/days, percentage, and the date one person is twice the other's age — browser-only