Markdown

CRS

CRS is the Acronym for Coordinate Reference System

A mathematical framework for precisely defining locations on Earth’s surface. Because the Earth is an irregular, three-dimensional shape (an ellipsoid) and maps are two-dimensional planes, a CRS provides the instructions for flattening the world so that data aligns correctly.

Without a defined CRS, your spatial data is just a collection of numbers without context. Applying the wrong CRS can lead to significant errors, such as a city appearing in the middle of the ocean or distance measurements being off by hundreds of miles.

The Three Pillars of a CRS

A complete Coordinate Reference System is built upon three primary components:

1. The Datum

The datum defines the starting point and the orientation of the coordinate axes. It provides the frame for the Earth’s shape.

  • WGS84 (World Geodetic System 1984): The global standard used by GPS.
  • NAD83 (North American Datum 1983): Optimized for accuracy specifically in North America.

2. The Ellipsoid

The Earth is not a perfect sphere; it bulges at the equator. An ellipsoid (or spheroid) is a simplified mathematical model that approximates this shape for calculations.

3. The Projection

This is the mathematical transformation that converts the Earth’s 3D coordinates into a 2D map. Every projection involves some degree of distortion in Shape, Area, Distance, or Direction.

Geographic vs. Projected Systems

It is vital to distinguish between these two types of systems when performing spatial analysis.

FeatureGeographic Coordinate System (GCS)Projected Coordinate System (PCS)
UnitsDecimal Degrees (Latitude/Longitude)Linear units (Meters, Feet)
Surface3D Spherical/Ellipsoidal2D Flat Plane
Primary UseGlobal data storage and GPSLocal mapping and distance/area analysis
ExampleWGS84 (EPSG: 4326)Web Mercator (EPSG: 3857)

Why Projections Matter: The “Orange Peel” Analogy

Imagine drawing a map on an orange. To lay that map flat on a table, you would have to tear the peel or stretch it. This is exactly what happens with map projections.

Mercator Projection

Mercator Projection

Preserves shape and direction (great for navigation) but massively exaggerates the size of landmasses near the poles (making Greenland look as large as Africa)

Gall-Peters Projection

Galls-Peter Projection

Preserves area (showing the true relative sizes of continents) but distorts their shapes.

Common Industry Standards

To make it easier for computers to communicate, the EPSG (European Petroleum Survey Group) assigned unique codes to every known CRS:

  • EPSG:4326: The standard code for WGS84 (used by Google Earth and GPS).
  • EPSG:3857: The “Web Mercator” used by almost all web maps (Google Maps, OpenStreetMap).
  • UTM (Universal Transverse Mercator): A system that divides the world into 60 narrow zones to provide high accuracy for local engineering and surveying.

Note: On-the-fly projection is a feature in most GIS software that allows you to view layers with different CRSs together, but for accurate spatial analysis (like calculating area), you should always ensure your layers are projected into the same local PCS.