Web Mercator Distortion Explained: The Greenland Problem

The Web Mercator projection (EPSG:3857) is the standard mapping projection used by Google Maps, Bing Maps, OpenStreetMap, and almost all web-based mapping applications. While it is excellent for preserving local shapes (conformal) and drawing street maps, it introduces catastrophic scale distortion at high latitudes.

The NGA Warning: The National Geospatial-Intelligence Agency (NGA) explicitly advises against using Web Mercator for mission-critical, legal, or survey-grade applications.

The Greenland Illusion

The most famous example of Web Mercator distortion is Greenland. On a Web Mercator map, Greenland appears roughly the same size as the continent of Africa. In reality, Africa is about 14 times larger than Greenland.

Why does this happen? The Mercator projection stretches the globe into a rectangle. As you move away from the equator toward the poles, the map stretches east-west and north-south to keep the grid square. At the equator, the scale is 1:1. At 60 degrees latitude (e.g., Oslo, Norway), the visual scale is exaggerated by a factor of 2. By 80 degrees North, the distortion approaches infinity.

Why Professionals Must Care

If you use Web Mercator to measure a distance or calculate an area in a GIS application without applying a geodesic correction, your numbers will be wildly wrong.

Liability Example: A junior analyst measured the length of a proposed pipeline route in Alaska using an uncorrected Web Mercator GIS project. The measured length was over twice the actual ground distance. The materials estimate was vastly inflated, leading to a rejected bid and internal audit.

Distance Measurement Failures

Alternatives to Web Mercator

When working on engineering, surveying, or analytical projects, always project your data out of Web Mercator.

  1. For local distance/area (city to state level): Use UTM (Universal Transverse Mercator) or a State Plane Coordinate System (SPCS).
  2. For continental equal-area maps: Use Albers Equal Area Conic.
  3. For global data storage: Store raw data in unprojected WGS84 (EPSG:4326) and project on-the-fly for analysis.

Convert coordinates out of Web Mercator to accurate local grids:

→ Web Mercator to Lat/Long Converter

FAQ

Why do Google Maps and others use Web Mercator?

It preserves local shapes and angles (conformality). A 90-degree street intersection always looks like 90 degrees on the map, no matter the latitude. It also simplifies the math for rendering square map tiles across the internet.

Is EPSG:3857 the same as EPSG:4326?

No. EPSG:3857 is the Web Mercator projection (flat map in meters). EPSG:4326 is the WGS84 geographic coordinate system (globe in degrees of latitude/longitude). They are frequently confused but represent entirely different math.

Can I calculate acreage using Web Mercator?

No. Never calculate area using a Mercator projection unless your software explicitly applies geodesic (curved earth) formulas to override the rigid projection geometry.

See also: EPSG:4326 vs 3857 | Scale Factor | GIS Liability