What Are Map Projections? A Simple Guide

For Beginners: The Orange Peel Problem

Imagine trying to peel an orange and flatten the skin onto a table. It will tear, stretch, and squish. This is the fundamental problem of map making: The Earth is round, but maps are flat.

  • The Solution: A "Map Projection" is a mathematical formula used to flatten the Earth.
  • The Catch: Every single map in the world is distorted. You have to choose what to distort (size, shape, or distance) based on what you need the map for.
PROJECTION 3D Earth (Reality) 2D Map (Distorted)

Visual: Projecting a 3D sphere onto a 2D plane always introduces distortion.

Convert 3D Coordinates to 2D Maps

Every map lies to you. Greenland is not the size of Africa. Antarctica is not an infinitely long wall of ice. These are simply side-effects of flattening a sphere.

The Three Main Types of Projections

To flatten the Earth, cartographers imagine wrapping a shape around the globe, projecting the Earth's surface onto that shape, and then unrolling it. There are three primary shapes used:

1. Cylindrical

Wraps a cylinder around the equator. Good for global maps and navigation (e.g., Mercator). Severely distorts the poles.

2. Conic

Places a cone like a hat over a pole. Highly accurate for mid-latitude regions like the USA (e.g., Lambert Conformal Conic).

3. Azimuthal (Planar)

Places a flat piece of paper touching one point. Great for mapping the poles or routing airplane flights over the Arctic.

Why Do We Have So Many Projections?

Because you cannot preserve everything at once. A map can only be perfectly accurate in a maximum of two of these four properties:

  • Area (Equal-Area): Countries maintain their true relative sizes. (e.g., Gall-Peters). Good for demographics.
  • Shape (Conformal): Local shapes and angles are preserved. (e.g., Mercator). Essential for navigation and UTM coordinate systems.
  • Distance (Equidistant): Preserves distance from one specific point to all other points. Good for airline routing.
  • Direction (Azimuthal): Directions from a central point are accurate.

Web Mercator: The Map on Your Phone

If you use Google Maps, Apple Maps, or OpenStreetMap, you are looking at the Web Mercator projection (EPSG:3857). It is a variation of the cylindrical Mercator projection.

Why Web Mercator?

It preserves shapes perfectly at the local level. When you zoom into a city block, the roads intersect at perfectly right angles, exactly as they do in real life. If Google used an "Equal-Area" projection, your city streets would look stretched and warped.

Connecting Projections to Coordinates

A projection is just the mathematical math. To actually use it, you need a Coordinate Reference System (CRS).

For example, Latitude and Longitude describe locations on the 3D globe (this is an unprojected, geographic coordinate system). When you want to calculate the exact distance in meters between two points, you must project those coordinates onto a flat grid using a system like UTM or a State Plane Coordinate System.

Related Geospatial Topics