Mercator keeps shapes true but inflates area so steeply that Greenland looks continent-sized
Aliases: Mercator · Web Mercator
What it is
The Mercator projection (including Web Mercator, ubiquitous in web maps) is conformal: it preserves shape and direction (designed for navigation in the age of sail), at the cost of area inflating steeply with latitude—Greenland appears "about the size of" Africa on a Mercator map while its true area is roughly 1/14 of Africa's; Russia looks comparable to Africa though it is under 1.8 times. As a navigation tool this is a sound trade; as a data-visualization basemap it manufactures systematic visual inflation of high-latitude data.
Why it happens
The inflation mechanism is exponential stretching by latitude: Mercator maps longitude to x = λ and latitude to y = ln(tan(π/4 + φ/2)), with the y-direction scale factor sec(φ) growing unboundedly toward the poles. The visual consequence: the higher the latitude, the larger the region—not "some distortion" but order-of-magnitude amplification (roughly 4x at 60°, about 15x at 75°). The web-map industry's wholesale adoption of Web Mercator (shape-preserving zoom, simple tiling) made it the default "world map" the public sees, and its area bias entered popular spatial cognition: most people overestimate high-latitude countries' relative size. Consequences for data visualization: global point-density maps make high-latitude points look sparse (pushed apart); route lines stretch at high latitudes; choropleth visual weight balloons for high-latitude regions (extending into the same group's equal-area requirement). Detection and alternatives: whenever the data spans wide latitudes and the comparison involves area or density, avoid Mercator; alternatives include equal-area projections, the sinusoidal projection, or local projections cropped to the data's centroid.
Where it stops holding
Mercator is not always the wrong choice: distortion near the equator is small (Africa, Southeast Asia, and South America maps are fine in Mercator); for navigation and direction judgment its conformality is functional (rhumb lines are straight). Web Mercator's engineering advantages as an interactive basemap (tile systems, zoom invariance) are real—the problem arises when it hosts data layers whose encoding depends on area: basemap and data layer can be treated separately (keep Mercator for the basemap, convert the data layer to equal-area)—feasible but implementation-heavy. The public's familiarity with the "Greenland illusion" has also made Mercator a cultural symbol—the classic teaching artifact in discussions of projection bias.
Applying it
- Default global or cross-latitude data visualizations away from Mercator; switch to equal-area projections or a projection chosen by data extent.
- When a Web Mercator basemap is mandatory, convert the data layer to equal-area or annotate the area-distortion caveat explicitly.
- Add a "high-latitude area check" to product review: does the rendered ratio of Greenland/Russia/Canada to Africa approximate the true proportions?
- Verification: visually compare Greenland and Africa on the map; a clear departure from the true ratio (about 1:14) means Mercator bias is influencing readers.
Related
- Same group: U12.01.1 No planar projection can preserve area, angles, and distances simultaneously · U12.01.2 Area-type maps must use an equal-area projection · U12.01.4 Projection choice must change with the map's coverage · U12.01.5 The projection used should be stated in the caption
- Nearby: U12.01.2 Area-type maps must use an equal-area projection · U12.01.4 Projection choice must change with the map's coverage
- Search terms:
mercator·web mercator·greenland illusion
Cards in the same group
- U12.01.1Flattening a sphere onto a map always distorts something — area, angle, or distance has to give
- U12.01.2A map that encodes value in area only tells the truth if its projection actually preserves area
- U12.01.4Projection barely matters on a city map and decides everything on a map of the whole world
- U12.01.5Readers can rarely tell one projection from another by eye, so the caption has to say which