mapbench

What3Words Converter

what3words is a proprietary system, so MapForge never hides a key inside the page: paste your own what3words API key (used only from your browser) to decode three-word addresses, or use the built-in open alternative — Plus Codes — which need no key at all.

FreeWorldwide
Loading tool…
Advertisement

Quick answer: What3Words Converter is a free coordinates tool for convert what3words addresses to coordinates using your own api key — with the free plus code alternative built in.Coverage: Worldwide. No account is required, and results can be shared by URL.

Three-word addresses, handled honestly

what3words has carved a niche in delivery and emergency workflows by giving every 3-metre square a memorable three-word name — and it is also a proprietary system whose API requires a licensed key. MapForge refuses to hide a shared key in the page, so this tool works the respectful way: paste your own what3words API key (it stays in your browser tab) and the official service converts your three-word address to coordinates, or skip the key entirely and use the built-in open alternative.

That alternative is Plus Codes — Open Location Codes — which give any spot on Earth a short, shareable code computed by pure open math: no database, no licence, no expiry. The page encodes and decodes them on the spot, so even without a w3w key you leave with a working short-code for your location. The framing matters as much as the function: proprietary grids and open grids coexist in the real world, and a good tool tells you which is which, what each costs, and where the exits are. Coordinates from either path copy cleanly into every other tool on the platform.

Worked examples

  • 40.7128, −74.006 (Lower Manhattan)is 40° 42' 46.08" N, 74° 0' 21.60" W in chart notation and 18N 583959 4507351 on the UTM grid — three dialects, one physical corner of City Hall Park.
  • MGRS at 10 digitsreads 18?WK8395907350 for the same point: precision follows your digit count, 10 digits ≈ 1 m.
  • One decimal placeis ≈ 11 km of latitude; five decimals ≈ 1.1 m. Consumer GPS earns five; quoting seven implies a survey you didn't run.

The many languages of a single point

One physical spot on Earth can be written a dozen ways: decimal degrees for software, degrees-minutes-seconds for charts and handhelds, UTM eastings and northings for field work, MGRS lettered squares for military prose, Plus Codes for places without addresses. None is more 'true' — they are notations over the same WGS84 datum, the reference frame GPS itself speaks. Conversion between them is exact math, which is why it can run entirely in your browser with no service and no error creeping in.

The traps are human, not mathematical. Swapping latitude and longitude is the classic — GeoJSON stores [lng, lat] while most APIs expect (lat, lng), and an offshore point is usually that typo. Hemisphere letters and minus signs must never coexist. And precision has a physical meaning: each added decimal degree is roughly a tenfold shrink, so five decimals is about a metre, six is beyond what consumer GPS can claim. Choosing rounding deliberately is choosing honesty.

Datums are the deep end: coordinates are angles against a model of Earth's shape, and older local datums (NAD27 and friends) shift the same physical point by tens of metres relative to WGS84. A consistent, unexplained offset between an old survey and your GPS is usually that story. For everyday web mapping the datum is WGS84 end to end, and keeping everything in it — as these tools do — makes round trips exact.

Tips & common mistakes

Adopt one storage format — decimal degrees, WGS84, five or six decimals — for every dataset you own, and convert at the edges for display. Mixed notations in one column are the root of nearly every coordinate bug.

Sanity-check every pasted pair by eye on a map before using it: latitude/longitude swaps land you in the ocean so reliably that 'the Null Island bug' has a name. A two-second visual check costs nothing and catches most transcription errors.

Match precision to source: consumer GPS earns about five decimals; quoting six or seven implies a survey you didn't do. Rounding deliberately is honesty, not loss.

Coordinate hygiene for people who reuse data

Coordinates are the one geographic asset that can be perfectly lossless — if you keep discipline. One datum (WGS84), one notation in storage (decimal degrees), one precision policy (five or six decimals), and conversions only at the display edge. Every deviation from that recipe taxes you later: mixed DMS strings in a column, NAD27 relics in an old shapefile, seven-decimal theatre in a CSV. The converters exist to absorb that variety at the border so your interior stays clean.

The second discipline is visual verification. A coordinate pair is two numbers; a pin on a map is a fact. Swapped axes, wrong hemispheres, degree/minute confusion — every classic error is instantly visible as a pin in the wrong ocean or the wrong hemisphere, and instantly invisible in a table. Professionals therefore make the map check a ritual: paste, look, then trust. At five decimals you are resolving metres; at that scale the eye, not the arithmetic, is the quality gate.

How professionals use this

  • Store decimal degrees, WGS84, signed; convert to DMS/UTM/MGRS only for the reader who needs them.
  • Validate ranges on ingest (|lat| ≤ 90, |lng| ≤ 180) and reject, don't clip, out-of-range rows.
  • Make the map-pin sanity check mandatory for any coordinate you didn't generate yourself.
  • When receiving UTM or MGRS strings, record the original alongside the conversion — provenance prevents arguments.

Step-by-step masterclass

  1. 1. Standardise storage firstDecimal degrees, WGS84, five or six decimals in every column you own; convert at the display edge and the interior stays clean forever.
  2. 2. Validate on ingestReject out-of-range values (|lat| > 90) instead of clipping; a rejected row is a fixable row, a clipped one is silent corruption.
  3. 3. Make the pin check a ritualPaste, look at the map, then trust — swapped axes and wrong hemispheres are instantly visible on a globe and invisible in a table.
  4. 4. Match precision to sourceConsumer GPS earns ~5 decimals; quoting more implies a survey you didn't run. Rounding deliberately is honesty.
  5. 5. Preserve provenanceWhen converting UTM/MGRS strings, keep the original beside the decimal pair; provenance prevents every later argument about what was meant.

Notation culture splits by profession more than by country — mariners and aviators favour DMS and nautical frames, soldiers MGRS, developers decimals, hikers UTM — which is why a converter that shows all dialects simultaneously is more useful than any single 'correct' format.

Related questions people ask

Which format should I store?

Decimal degrees on WGS84, five or six decimals; convert at the edges for display.

Why did my point land in the ocean?

Almost always a lat/lng swap — the two-second map check exists precisely to catch it.

Do Plus Codes work offline?

Yes — encoding/decoding is pure math; no database, which is why they suit field work and disaster response.

Why do old surveys disagree with my GPS?

Usually a datum shift (NAD27 etc.): the same ground, different reference frame, tens of metres apart.

Is MGRS usable at the poles?

Polar work switches to UPS; this tool covers the UTM domain where virtually all field grids live.

Why do some APIs want [lng, lat]?

GeoJSON follows the axis order of the OGC standard; remembering which world you're in prevents the ocean bug.

Quick glossary

Datum
The reference shape model (WGS84 for GPS) that coordinates are angles against.
DMS
Degrees-minutes-seconds notation; 1° = 60′ = 3600″.
UTM
Metre-based zone/easting/northing grid on the WGS84 ellipsoid.
Plus Code
Open Location Code: keyless short codes for any spot, by open math.
Null Island
0,0 — where swapped/zeroed coordinates wash up; the classic bug's nickname.
Hemisphere letter
The N/S/E/W suffix carrying sign in DMS and MGRS notations.

Coordinates in the wild: where notation meets consequence

It is worth closing with two stories that explain why all this notation discipline matters. In the first, a search-and-rescue volunteer copies a grid reference from a radio call into a decimal-only field, drops a digit pair, and the rescue tasking points a valley away — the error invisible in the table, instantly obvious on a map. In the second, a research team merges three decades of ecological plots and discovers one legacy file was NAD27: every point shifted by the same quiet thirty metres, enough to move a forest edge. Both failures were preventable with the same two habits this toolset makes default — convert at the edge, verify with the pin — and neither required expertise, only ritual. Coordinates reward exactly that attitude: they are the one geographic asset that can be perfectly lossless, provided the humans touching them keep their agreements about datum, notation and precision.

  • Radio/voice workflows: read MGRS or DMS back in grouped digits; transcription errors cluster at the group boundary.
  • Merged historical datasets: assume a datum split until proven otherwise; plot both frames and look for a rigid offset.
  • Public forms: accept every notation, store one; the converter's 'recognised as' label is your audit trail.

Honest limits & when to escalate

Coordinates are lossless in principle and lossy in practice, and every loss is human: swapped axes, wrong hemispheres, datum relics, precision theatre. The converters eliminate the notation problem completely — DMS, UTM, MGRS and Plus Codes are exact translations on WGS84 — but they cannot eliminate the provenance problem: a number without its datum and its source is a rumour. Old NAD27-era documents, hand-typed sheets and seven-decimal CSVs each carry their own failure signature, and the honest tool answers with validation errors and visible pins rather than silent corrections.

The practical boundary is therefore organisational, not mathematical: teams that standardise storage (decimal, WGS84, sane precision) and ritualise the map check enjoy a lossless system; teams that don't accumulate expensive folklore. For work beyond consumer frames — control points, machine guidance, legal description — the escalation is geodetic: licensed surveyors, published transformations and national datums. Everything between a pasted waypoint and that door is exactly where this toolset lives.

  • Datum-critical legacy data → published grid transformations (NTv2/HTDP).
  • Control points and machine guidance → licensed geodetic survey.
  • Aviation/marine charts → the chart's own datum and notation, verbatim.
  • Massive pipelines → scripted validation with rejection, not clipping.

Data & methodology note

All conversions (DMS, UTM with Norway/Svalbard exceptions, MGRS, Plus Codes) run locally on WGS84 with standard geodetic series; round-trips are exact at display precision.

Category context: CoordinatesFind, convert and validate GPS coordinates in every common format. This page is one of the coordinates tools on MapForge; the related-tools links below and the header's Tools menu connect every sibling instrument.

How to use

  1. 1Paste a three-word address.
  2. 2Optionally add your own w3w key and convert.
  3. 3Or use the Plus Code encoder/decoder on the right — no key needed.

Frequently asked questions

Why do I need my own key?

what3words licenses its API; bundling a shared key would violate its terms. Your key stays in your browser tab.

What's the open alternative?

Open Location Codes (Plus Codes) — short codes for any spot, computed by open math, free forever.

Which format should I copy for Google Maps?

Decimal degrees ('40.7128, -74.0060') paste directly into Google Maps search; DMS works too. Copy buttons give both.

Is my pasted coordinate stored anywhere?

No. Conversions are pure math in your browser; nothing is uploaded, logged or kept after you close the tab.

Why does my point land in the ocean?

Almost always a swapped lat/lng pair or a missing minus sign. The map preview exists precisely to catch that in two seconds.