ClearSKY FaviconClearSKY Polygon Tools
Back to Glossary

Reprojection (coordinate transformation)

Converting coordinates from one CRS to another (e.g., EPSG:4326 lon/lat → EPSG:3857 meters).

Category: CRS & Coordinates · Also known as: reproject, coordinate transformation, ST_Transform, transform CRS

Definition (expanded)

Reprojection changes the coordinate numbers to match a different coordinate reference system. It’s essential when combining datasets from different CRSs or when you need meters for distance/area operations. Always confirm axis order and the source CRS before transforming.

Examples

PostGIS reprojection (4326 → 3857)

SQL

SELECT ST_AsText(ST_Transform(ST_SetSRID(ST_GeomFromText('POINT(12 55)'), 4326), 3857));

Common mistakes