3.1 Geographic (GCS) vs. Projected (PCS) Coordinate Systems & Angles
Key Takeaways
- A Geographic Coordinate System (GCS) represents locations on a curved 3D ellipsoidal surface using angular units (latitude and longitude).
- A Projected Coordinate System (PCS) projects 3D angular coordinates onto a flat 2D Cartesian plane using linear units (meters or feet).
- One degree of latitude is roughly constant (~111 km), whereas one degree of longitude varies strictly with the cosine of latitude: 111.32 km × cos(latitude).
- False Easting and False Northing are large arbitrary constants added to coordinate origins to prevent negative coordinates within a study region.
- Convergence angle is the angular difference between True North (direction to the rotational North Pole) and Grid North (parallel to the projection's central meridian).
In geospatial science, every feature must be pinned to a coordinate space. The fundamental distinction that every GIS professional must master is the difference between measuring positions upon the three-dimensional, curved surface of the Earth—a Geographic Coordinate System (GCS)—and measuring positions projected onto a two-dimensional flat plane—a Projected Coordinate System (PCS). Conflating these two concepts results in catastrophic analytical failures, such as attempting to calculate area or buffer distances directly upon unprojected angular degree coordinates.
Geographic Coordinate Systems (GCS)
A Geographic Coordinate System (GCS) defines locations on the surface of a three-dimensional reference ellipsoid or sphere using angular measurements from the Earth's center:
- Latitude ($\phi$): The angle north or south of the Equator ($0^\circ$). Lines of latitude are parallel to each other, often termed parallels, ranging from $0^\circ$ at the Equator to $+90^\circ$ ($90^\circ\text{ N}$) at the North Pole and $-90^\circ$ ($90^\circ\text{ S}$) at the South Pole.
- Longitude ($\lambda$): The angle east or west of the designated Prime Meridian ($0^\circ$, universally standardized as the Greenwich Meridian). Lines of longitude run from pole to pole, converging at the poles, and are termed meridians. Longitude values range from $0^\circ$ to $+180^\circ\text{ E}$ and $-180^\circ\text{ W}$.
- The Graticule: The network of intersecting lines of latitude and longitude on the globe.
Angular Units: DMS vs. Decimal Degrees
Angular coordinates are expressed in two standard formats:
- Degrees, Minutes, Seconds (DMS): Base-60 sexagesimal notation (e.g., $35^\circ;45';30''\text{ N}$). One degree contains 60 minutes of arc ($60'$); one minute contains 60 seconds of arc ($60''$).
- Decimal Degrees (DD): Base-10 decimal format preferred in computer databases and GIS software.
The mathematical conversion from DMS to Decimal Degrees is: For southern latitudes and western longitudes, the decimal value must be expressed as a negative number.
The Non-Constant Length of a Degree of Longitude
A critical geographic fact tested repeatedly on the GISP exam is that degrees are angular, not linear units of distance:
- Latitude: Because lines of latitude are parallel, one degree of latitude represents a nearly constant distance anywhere on Earth, varying only slightly due to polar flattening: approximately 110.57 km at the Equator to 111.69 km at the poles (averaging ~111 km or ~69 miles per degree).
- Longitude: Because meridians converge at the poles, the ground distance of one degree of longitude shrinks systematically as you travel toward the poles. The linear distance for $1^\circ$ of longitude at any latitude $\phi$ is computed as:
| Latitude ($\phi$) | Location Context | $\cos(\phi)$ | Linear Distance of $1^\circ$ Longitude |
|---|---|---|---|
| $0^\circ$ | Equator (Quito, Ecuador) | $1.0000$ | $111.32\text{ km}$ (~69.17 miles) |
| $30^\circ\text{ N/S}$ | New Orleans, Cairo | $0.8660$ | $96.40\text{ km}$ (~59.90 miles) |
| $45^\circ\text{ N/S}$ | Minneapolis, Bordeaux | $0.7071$ | $78.71\text{ km}$ (~48.91 miles) |
| $60^\circ\text{ N/S}$ | Anchorage, Helsinki | $0.5000$ | $55.66\text{ km}$ (~34.59 miles) |
| $80^\circ\text{ N/S}$ | Northern Greenland | $0.1736$ | $19.33\text{ km}$ (~12.01 miles) |
| $90^\circ$ | North / South Pole | $0.0000$ | $0.00\text{ km}$ (Meridians converge to a point) |
Exam Trap: If an analyst computes the area of a polygon or buffers a point using decimal degree coordinates, a buffer set to "1 degree" will generate an elongated oval on the ground whose east-west diameter is half its north-south diameter at $60^\circ$ latitude!
Projected Coordinate Systems (PCS)
A Projected Coordinate System (PCS) applies a mathematical formula to transform the three-dimensional curved ellipsoidal coordinates of a GCS onto a flat, two-dimensional Cartesian plane $(X, Y)$:
- $X$-Coordinate (Easting): Distance along the horizontal axis.
- $Y$-Coordinate (Northing): Distance along the vertical axis.
- Linear Units: PCS measurements use true linear units—almost universally meters, U.S. Survey Feet, or International Feet.
Every Projected Coordinate System always includes and is built upon an underlying GCS. You cannot have a PCS without a GCS, because the projection algorithm must know which specific ellipsoid shape and datum it is flattening.
| System Dimension | Geographic Coordinate System (GCS) | Projected Coordinate System (PCS) |
|---|---|---|
| Geometry | 3D Curved Surface (Ellipsoid/Sphere) | 2D Flat Plane (Cartesian Grid) |
| Coordinates | Latitude, Longitude $(\phi, \lambda)$ | Easting, Northing $(X, Y)$ |
| Measurement Units | Angular (Degrees, Minutes, Seconds, DD) | Linear (Meters, Feet) |
| Spatial Analysis | Suitable for global storage, NOT distance/area | Required for accurate distance, area, buffer, overlay |
| Underlying Base | Datum + Reference Ellipsoid | GCS + Projection Mathematical Equations |
Origin Shifts: False Easting and False Northing
In standard Cartesian mathematics, a grid has an origin $(0, 0)$ divided into four quadrants, creating positive and negative coordinates. In surveying, land title records, and municipal mapping, negative coordinate values are undesirable because they invite human entry errors, negative sign dropouts, and calculation bugs.
To prevent negative numbers within the designated boundary of a mapping zone, geodesists apply False Easting and False Northing:
- Central Meridian / Origin: The natural reference axis is assigned large, arbitrary positive coordinates instead of zero.
- Example in UTM: The central meridian of every UTM zone is assigned a False Easting of $500,000\text{ meters}$. Even at the extreme western boundary of the zone (
$3^\circ$ west), the easting coordinate remains safely positive ($160,000\text{ m}$). In the Southern Hemisphere, the Equator is assigned a False Northing of $10,000,000\text{ meters}$, ensuring that all northing coordinates increase positively southward.
Orientations of North: True, Grid, and Magnetic
On any projected map, there are three distinct definitions of "North":
- True North (Geodetic North): The direction along a meridian of longitude heading directly toward the Earth's physical rotational North Pole. Because meridians converge toward the pole, True North varies across the map.
- Grid North: The direction parallel to the vertical $Y$-axis (central meridian) of the projected coordinate grid. Grid lines are parallel across the entire map sheet.
- Magnetic North: The direction indicated by a magnetic compass needle, pointing toward the Earth's migrating magnetic north dip pole.
Convergence Angle and Magnetic Declination
- Convergence Angle: The angular divergence between True North and Grid North at a specific point on the map. Along the projection's central meridian, the convergence angle is exactly $0^\circ$. As you move east or west away from the central meridian, the convergence angle increases.
- Magnetic Declination: The angle between True North and Magnetic North at a given location and date (modeled by the World Magnetic Model, as the magnetic pole drifts over time).
- G-M Angle (Grid-Magnetic Angle): The angular difference between Grid North and Magnetic North, critical for military land navigation and topographic compass resection.
A GIS technician working at 60 degrees North latitude needs to estimate the linear distance between two radio towers separated by exactly 1.0 degree of longitude. What is the approximate ground distance between the towers?
Why do standard projected coordinate systems like State Plane and UTM incorporate False Easting and False Northing values into their coordinate definitions?
What is the geodetic term for the angular difference between True North (the meridian pointing to the rotational North Pole) and Grid North (parallel to the projection grid Y-axis) at any point not located on the central meridian?