Representing Earth's curved surface on flat maps or in digital systems requires two concepts: a geographic coordinate system (GCS) that defines locations on the 3D ellipsoid using latitude and longitude, and a map projection that transforms those 3D coordinates onto a 2D plane. Every projection distorts reality -- it is mathematically impossible to flatten a sphere without distorting area, shape, distance, or direction. Conformal projections (like UTM/Transverse Mercator) preserve local shapes and angles at the cost of area distortion; equal-area projections preserve area at the cost of shape. Choosing the right coordinate system and projection for a given analysis is essential because using the wrong one introduces systematic spatial errors.
Every point on Earth's surface needs an address that digital systems can use. Geographic coordinate systems provide this using latitude (angle north or south of the equator) and longitude (angle east or west of the prime meridian), referenced to a mathematical model of Earth's shape called a datum. The datum specifies the reference ellipsoid -- a slightly flattened sphere that approximates Earth's shape -- and how it aligns with the real surface. Different datums (WGS 84, NAD 83, ED50) have slightly different ellipsoid parameters and positions, so the same physical location has slightly different latitude/longitude values in different datums.
Map projections transform these 3D angular coordinates into 2D planar coordinates suitable for mapping and analysis. The fundamental constraint is Gauss's Theorema Egregium: a curved surface cannot be flattened without distortion. Every projection is a compromise. Mercator projections preserve angles and shapes locally (conformal) but grossly distort area at high latitudes -- Greenland appears the size of Africa when it is actually 14 times smaller. Equal-area projections like Albers preserve area but distort shapes. Equidistant projections preserve distances along certain lines.
For most GIS work, the Universal Transverse Mercator (UTM) system provides a practical solution. It divides Earth into 60 zones, each using a Transverse Mercator projection centered on that zone's central meridian. Within each 6-degree zone, distortion is minimal and coordinates are in meters -- suitable for distance, area, and direction calculations. For analyses spanning multiple zones or entire continents, equal-area projections are preferred for area calculations, while conformal projections are preferred for navigation and shape-preserving mapping.
Understanding coordinate systems prevents a common class of GIS errors: misaligned data, incorrect area calculations, shifted features, and incompatible overlays. When data layers appear offset from each other, the first thing to check is whether they share the same coordinate reference system -- and if not, whether a proper transformation (not just reprojection but datum transformation) has been applied.