CRS
Coordinate Reference System. A framework that defines how the two-dimensional projected map relates to real locations on Earth. Common systems include WGS 84 (used by GPS), UTM zones, and various national coordinate systems. Correct CRS handling is essential for accurate spatial analysis.
Overview
A Coordinate Reference System (CRS) is a framework that defines how coordinates (numbers) relate to actual positions on the Earth's surface. Without a CRS, a pair of numbers like (51.5, -0.12) is meaningless — the CRS is what tells software that these values represent London in WGS 84, not a position in some arbitrary grid. Every piece of geospatial data must be associated with a CRS for it to be correctly positioned, overlaid with other datasets, or used for measurement.
CRSs come in two fundamental types: geographic (using latitude and longitude on a curved surface) and projected (using x/y coordinates on a flat surface). Geographic CRSs like WGS 84 (EPSG:4326) describe positions on the Earth's ellipsoid and are ideal for global data storage and exchange. Projected CRSs like UTM apply a mathematical projection to flatten a portion of the curved Earth onto a 2D plane, enabling accurate distance and area measurements within a limited region. Every projection introduces some distortion — the choice of CRS depends on what property (shape, area, distance, direction) matters most for the application.
How It Works
A CRS is defined by several components working together. The geodetic datum specifies the reference ellipsoid (a mathematical model of the Earth's shape) and how it is aligned to the real Earth — WGS 84, GRS 80, and Bessel 1841 are examples. The coordinate system defines the axes and units — degrees for geographic CRSs, meters for projected ones. For projected CRSs, a map projection (Transverse Mercator, Lambert Conformal Conic, etc.) defines the mathematical transformation from curved to flat coordinates.
The EPSG registry, maintained by the International Association of Oil & Gas Producers (IOGP), assigns numeric codes to standardized CRS definitions. EPSG:4326 is WGS 84 geographic coordinates (used by GPS and most web services). EPSG:3857 is Web Mercator (used by Google Maps, OpenStreetMap). EPSG:326xx codes identify UTM zones in the Northern Hemisphere. These codes enable unambiguous CRS identification across software systems.
CRS transformation — converting data from one CRS to another — is a daily operation in geospatial work. Simple transformations between CRSs sharing the same datum (e.g., WGS 84 geographic to UTM Zone 34N) involve only the projection math. Transformations between different datums (e.g., ED50 to WGS 84) require additional parameters because the datums position the ellipsoid differently, and can introduce positional shifts of meters to hundreds of meters if done incorrectly.
Key Facts
- EPSG:4326 (WGS 84) is the most widely used geographic CRS — it is the GPS reference system and the default for GeoJSON.
- EPSG:3857 (Web Mercator) is used by virtually all web map tile services but severely distorts area at high latitudes.
- Projected CRSs enable accurate metric measurements but are only valid within a limited geographic extent.
- The EPSG registry contains over 6,000 CRS definitions covering global, regional, and national systems.
- Using the wrong CRS can shift features by meters to kilometers — one of the most common errors in GIS work.
- PROJ is the open-source library used by GDAL, QGIS, PostGIS, and most geospatial tools for CRS transformations.
Applications
Data Integration and Overlay
All layers in a GIS analysis must share the same CRS or be transformed to one. Mismatched CRSs cause features to appear in wrong positions, making overlay analysis impossible.
Accurate Measurement
Measuring distances and areas requires a projected CRS appropriate for the region. Geographic coordinates (degrees) cannot be used directly for metric measurements because degree length varies with latitude.
Web Mapping
Web map tiles use EPSG:3857 (Web Mercator) for display, while underlying data is typically stored in EPSG:4326 (WGS 84). Understanding this distinction prevents positioning errors in web applications.
Satellite Data Processing
Sentinel-2 tiles are delivered in UTM zone projections. Landsat uses UTM. Combining data from overlapping UTM zones or with other datasets requires CRS transformation.
Limitations & Considerations
No single CRS is ideal for all purposes. Geographic CRSs preserve global consistency but cannot be used for accurate area or distance measurement. Projected CRSs enable precise measurements but only within their valid extent — using a UTM zone far from its central meridian introduces significant distortion. CRS metadata can be missing or incorrect in data files, especially older datasets, leading to silent positioning errors. Datum transformations between legacy local datums and WGS 84 sometimes lack precise transformation parameters, introducing uncertainty of 1–5 meters. The proliferation of thousands of CRS definitions creates interoperability challenges, particularly when working with data from multiple countries using different national systems.
History & Background
Coordinate reference systems evolved from the navigation and surveying traditions of the 17th–19th centuries. National geodetic datums were established independently by countries, each fitting an ellipsoid to their local terrain — resulting in hundreds of incompatible systems. The push for a global standard began with satellite geodesy in the 1960s. The U.S. Department of Defense developed WGS 84 in 1984 as a unified global reference for GPS. The EPSG registry (originally maintained by the European Petroleum Survey Group, now IOGP) began cataloging CRS definitions in the 1980s, creating the numeric code system (EPSG:4326, etc.) that is now universal. ISO 19111 formalized CRS concepts as an international standard. Today, open-source tools like PROJ and GDAL handle CRS transformations transparently, but understanding CRS fundamentals remains essential for avoiding subtle but consequential spatial errors.
Analyze CRS data with LYRASENSE
Use our agentic notebook environment to work with satellite data and compute indices like CRS — no setup required.