Learn

Geographic vs Projected Coordinate Systems

Learn how geographic and projected coordinate reference systems represent location differently, why projections introduce distortion, and which type is appropriate for mapping, exchange, and spatial analysis.

Geobble
introductoryexplainerCoordinate Systems

Explain the two CRS types most GIS users encounter, establish how projected CRSs are derived from geographic CRSs, and prevent simplistic assumptions such as 'degrees are bad for analysis' or 'metres make any projected CRS suitable for measurement'.

A geographic coordinate reference system represents positions using coordinates such as latitude and longitude on a model of the Earth. A projected coordinate reference system takes positions from an underlying geographic CRS and converts them onto a flat Cartesian plane using a map projection.

In practical terms, geographic coordinates are usually angular values expressed in degrees, while projected coordinates are commonly eastings and northings expressed in linear units such as metres.

Neither type is universally better. Geographic CRSs are useful for representing positions across large areas and exchanging geographic coordinates. Projected CRSs are useful when a flat map or planar coordinate system is appropriate, particularly when the projection has been chosen for the location and purpose of the work.

The important distinction is therefore not simply degrees versus metres. It is how the coordinate system represents the Earth and what that representation is intended to support.

The difference at a glance

  • Represents the Earth as: Geographic CRS — An ellipsoidal geographic reference; Projected CRS — A flat Cartesian plane derived from a geographic CRS

  • Typical horizontal coordinates: Geographic CRS — Latitude and longitude; Projected CRS — Easting and northing

  • Typical units: Geographic CRS — Degrees; Projected CRS — Metres, feet, or another linear unit

  • Uses a map projection?: Geographic CRS — No; Projected CRS — Yes

  • Can cover the whole world?: Geographic CRS — Commonly; Projected CRS — Possible, but distortion varies across the projection

  • Flat map coordinates?: Geographic CRS — No; Projected CRS — Yes

  • Automatically suitable for distance or area calculations?: Geographic CRS — No; Projected CRS — No

  • Example: Geographic CRS — EPSG:4326 — WGS 84; Projected CRS — EPSG:3857 — WGS 84 / Pseudo-Mercator

  • Other common examples: Geographic CRS — NAD83, ETRS89 geographic CRSs; Projected CRS — UTM zones, national grids, equal-area CRSs

The formal relationship is quite precise. ISO 19111-derived OGC definitions describe a geographic CRS as one with a geodetic reference frame and an ellipsoidal coordinate system. A projected CRS is derived from a geographic CRS by applying a map projection, and uses a Cartesian coordinate system.

What is a geographic coordinate reference system?

A geographic CRS represents horizontal positions using an ellipsoidal coordinate system tied to a geodetic reference frame.

In ordinary GIS use, its coordinates are usually latitude and longitude.

Latitude expresses angular position north or south of the equator, while longitude expresses angular position east or west of a prime meridian. The coordinates are consequently measured in angular units, commonly degrees, rather than metres.

A familiar example is:

EPSG:4326 — WGS 84

EPSG:4326 is a geographic 2D CRS. A location might therefore be represented with coordinates such as an illustrative longitude of 12° and latitude of 4°.

Those numbers describe angles on the reference ellipsoid. They are not x and y distances measured along a flat surface.

If the relationship among the reference frame, axes and coordinate values is unfamiliar, What Is a Coordinate Reference System? provides the broader conceptual foundation.

Why degrees are not ordinary distances

One consequence of geographic coordinates is that a difference of one degree does not behave like a fixed one-metre or one-kilometre interval.

Latitude and longitude are angular quantities.

The ground distance corresponding to one degree of longitude, for example, changes substantially with latitude because meridians converge towards the poles. A degree of longitude near the equator covers much more ground than a degree of longitude close to a pole.

This is why treating geographic coordinates as if they existed on an ordinary Cartesian x-y grid can produce incorrect measurements.

For example, calculating:

distance = √((lon₂ - lon₁)² + (lat₂ - lat₁)²)

does not produce a meaningful distance in metres simply because the coordinate differences look like x and y values.

That does not mean useful distances cannot be calculated from geographic coordinates. Geodesic calculations can work with the ellipsoid directly. The important point is that angular coordinate differences should not simply be treated as planar distances.

The problem is the mathematical model used for the calculation, not the mere existence of latitude and longitude.

What is a projected coordinate reference system?

A projected CRS creates a planar representation from an underlying geographic reference.

Formally, a map projection is the coordinate conversion that takes ellipsoidal geographic coordinates and represents them on a plane. A projected CRS combines that conversion with a Cartesian coordinate system in which the resulting coordinates can be expressed.

Instead of coordinates such as:

longitude = 12°
latitude  = 4°

a projected system might represent the same location using values such as:

easting  = 500000 m
northing = 442000 m

The particular numbers depend entirely on the projected CRS being used.

The important change is conceptual:

geographic CRS → angular position on an ellipsoidal reference

projected CRS → Cartesian position on a plane

A projected CRS is therefore not merely a geographic CRS whose units have been changed from degrees to metres. A mathematical conversion has been applied.

A projected CRS always comes from a geographic reference

This relationship is sometimes obscured in GIS interfaces.

A projected CRS may look self-contained because users interact directly with its eastings and northings. Underneath, however, the formal definition includes a base geographic CRS and a map projection.

The OGC WKT specification reflects this explicitly: a projected CRS definition includes the base geographic or geodetic CRS, the map projection and the Cartesian coordinate system.

For example, a WGS 84 UTM CRS is derived from a WGS 84 geographic reference and applies the Transverse Mercator projection with parameters appropriate to a particular UTM zone.

This also explains why saying only:

“My data uses Transverse Mercator.”

does not fully identify the CRS.

Many projected CRSs can use the same projection method with different reference frames, central meridians, scale factors, false eastings, false northings or other parameters.

The projection method is one component of the projected CRS, not its complete identity.

Why project the Earth at all?

The fundamental difficulty is that the Earth is curved while conventional maps and Cartesian coordinate systems are flat.

A projection creates a controlled mathematical relationship between the two.

Historically, this made it possible to draw geographic information on paper and perform calculations using planar coordinates. Digitally, projected systems remain valuable because many operations are naturally expressed in Cartesian geometry.

For a suitable projected CRS, calculations such as local distances, areas, offsets and buffers can often be treated using ordinary planar geometry with distortion controlled to an acceptable level.

Projected coordinates can also be convenient for engineering, surveying, national mapping and other workflows where a regional grid provides an intuitive reference.

But projection comes with a cost.

Every map projection distorts something

A curved surface cannot be flattened without distortion.

Depending on the projection, the distortion can affect properties such as:

  • area;

  • shape;

  • distance;

  • direction;

  • scale.

Different projection methods manage these compromises differently.

An equal-area projection preserves area relationships but cannot simultaneously preserve local shape everywhere.

A conformal projection preserves local angles and shapes at sufficiently small scales, while area distortion can become substantial.

An equidistant projection preserves certain distances, not every possible distance between every pair of points.

This is why the question “Which projection is most accurate?” is incomplete. Accuracy with respect to what property, over what geographic area, and for what purpose?

The OGC GeoTIFF standard makes the underlying constraint explicit: a geographic CRS cannot be represented on a plane without distortion, and the projection method and parameters determine how that distortion is controlled.

Projected does not automatically mean more accurate

The presence of metre units can create a misleading sense of analytical safety.

Consider EPSG:3857, Web Mercator.

It is a projected CRS. Its coordinates are expressed in metres. Yet it was designed primarily for web mapping and visualisation, not as a universal CRS for accurate area or distance analysis.

Using it does not make a calculation trustworthy merely because the result arrives in square metres or metres.

This is an important reason to distinguish units from distortion.

A projected CRS can have coordinates measured in metres while its scale on the ground varies considerably across the mapped area. The numbers are linear coordinates on the projection plane; their unit does not guarantee that the projection preserves every ground measurement everywhere.

The practical consequences are explored more concretely in EPSG:4326 vs EPSG:3857: WGS 84 and Web Mercator Explained.

Geographic does not automatically mean unsuitable for analysis

The opposite simplification is also misleading.

It is common to hear advice such as:

Never analyse data in a geographic CRS.

There is a useful warning behind that advice: many planar GIS operations should not treat longitude and latitude in degrees as though they were Cartesian x-y coordinates.

But geographic coordinates themselves are not analytically defective.

Distances, areas, directions and other quantities can be calculated geodesically, using the ellipsoid rather than pretending that degrees form a flat grid. Modern geospatial libraries can perform such calculations directly.

The appropriate question is therefore:

What mathematical model does this operation use?

A naive Euclidean calculation on degrees may be wrong. A properly implemented geodesic calculation on geographic coordinates can be exactly the appropriate approach.

Likewise, a well-chosen projected CRS can simplify an analysis and control distortion extremely well over its intended region.

The choice is about the operation and its required accuracy, not about declaring one CRS family inherently analytical and the other inherently non-analytical.

UTM shows why projected CRSs are often regional

The Universal Transverse Mercator (UTM) system illustrates one common way to manage projection distortion.

Instead of using one projected coordinate system for almost the whole world, UTM divides much of the Earth into longitudinal zones. Each zone uses a Transverse Mercator projection configured around its own central meridian.

The purpose is to keep projection distortion relatively controlled within the zone rather than asking one planar coordinate system to behave equally well everywhere.

This also means that “UTM” is not one CRS.

A dataset needs the correct zone and reference frame. Several EPSG identifiers can therefore represent different WGS 84 / UTM zones, for example.

That becomes important when selecting a projected CRS for local or regional work: geographic location is part of the decision.

What Is a UTM Zone? can treat that system in detail without expanding this comparison into a projection-selection guide.

Geographic CRSs can be global more naturally

One advantage of geographic CRSs is that latitude and longitude can describe positions across very large portions of the Earth without choosing a single flat representation.

That makes them particularly useful for global geographic interchange and datasets spanning many regions.

A worldwide set of points can share one geographic CRS even though no single regional projected CRS would be appropriate for analysing every part of that dataset with the same distortion characteristics.

This does not mean every geographic CRS is globally applicable; coordinate reference systems have their own areas of use. But geographic representation avoids committing the dataset itself to a particular flattening of the Earth.

A mapping or analytical application can then transform those positions when a particular projected representation is required.

Storage, display and analysis do not need the same CRS

One of the most useful habits in GIS is to stop looking for a single CRS that must serve every stage of the workflow.

A dataset might be stored or exchanged using a geographic CRS.

A web map might display it in Web Mercator.

A regional area calculation might transform it into an appropriate equal-area CRS.

A local engineering operation might use a national or site-specific projected grid.

These choices are not contradictory. They reflect different jobs.

Modern GIS software can often transform data between CRSs as needed, including on the fly for display. The important requirement is that the source coordinates are correctly referenced and that the transformation appropriate to the target system is known.

This is why assigning a CRS is fundamentally different from reprojecting data. The former establishes what existing coordinates mean; the latter calculates another representation of the same geographic positions.

Which type should you use?

There is no useful rule that says “always geographic” or “always projected”.

Instead, consider the purpose.

Geographic CRS may make sense when:

  • you need latitude and longitude coordinates;

  • data is being exchanged between systems that expect a particular geographic CRS;

  • the dataset covers a very large geographic area;

  • the intended calculations use appropriate geodesic methods;

  • another system will choose the projection needed for display or analysis.

Projected CRS may make sense when:

  • you need a flat coordinate grid;

  • the work covers an area for which an appropriate projected CRS exists;

  • planar measurements or geometric operations are required;

  • a national, regional or engineering workflow expects a particular grid;

  • the projection's distortion characteristics suit the cartographic or analytical purpose.

But choosing the type is only the beginning.

Once projected coordinates are appropriate, you still need to choose which projected CRS. A UTM zone, Web Mercator, an equal-area continental projection and a national mapping grid can all be projected CRSs while serving very different purposes.

Common mistakes

Several recurring errors become easier to recognise once the two CRS types are separated.

“My coordinates are in metres, so they must be accurate”

Metres tell you the coordinate unit. They do not tell you how much projection distortion exists or whether the CRS is suitable for your analysis.

“Latitude and longitude are just x and y”

They can be represented computationally as coordinate pairs, but they are angular coordinates on an ellipsoidal system rather than ordinary Cartesian distances.

The interaction between those conventions is why latitude-longitude order can become confusing in GIS software.

“I need to convert everything to Web Mercator for a web map”

Often you do not. A rendering system may transform geographic data for display without requiring the source dataset to be permanently stored in EPSG:3857.

“If the layers line up, they must use the same CRS”

On-the-fly transformation allows layers stored in different CRSs to align correctly.

“Changing the CRS changes geographic coordinates into projected ones”

Only if an actual coordinate transformation takes place. Relabelling the existing coordinates with a different CRS simply changes their interpretation.

“Projected CRS means projection”

A projected CRS uses a map projection but also contains the base geographic reference, coordinate system, parameters, units and other defining information.

Geographic and projected are complementary representations

It is tempting to think of geographic and projected coordinate systems as competing alternatives:

latitude/longitude versus x/y

or:

degrees versus metres

But their relationship is more useful than that framing suggests.

A projected CRS begins with a geographic reference and applies a map projection to create planar coordinates. Geographic and projected representations can therefore describe the same location in different mathematical forms.

One is not the upgraded version of the other.

A geographic CRS is useful when an ellipsoidal geographic representation is appropriate. A projected CRS is useful when a particular flat representation provides advantages for mapping, calculation or an established spatial grid.

What matters is matching the representation to the task.

If you need a global coordinate for interchange, a geographic CRS may be natural. If you need a regional planar analysis, a carefully chosen projected CRS may be better. If you need a web-map display, another projection may be appropriate again.

The question is not simply:

“Should I use geographic or projected coordinates?”

It is:

“How should this geography be represented for the operation I am performing?”

Once that question is explicit, the distinction between the two becomes much easier to use correctly.


References

  1. Open Geospatial Consortium — Abstract Specification Topic 2: Referencing by Coordinates. Defines geographic and projected coordinate reference systems and describes a projected CRS as being derived from a geographic CRS through a map projection.

  2. Open Geospatial Consortium — Well-known Text Representation of Coordinate Reference Systems. Defines geographic CRSs, projected CRSs and map projections, and shows that a projected CRS includes a base CRS, projection and Cartesian coordinate system.

  3. IOGP — EPSG Guidance Note 7, Part 2: Coordinate Conversions and Transformations Including Formulas. Explains that geographic coordinates are defined on a model of the Earth and that projected CRSs result from applying map projections to geographic CRSs.

  4. OGC GeoTIFF Standard. Describes geographic and projected 2D CRSs and explains why projection from an ellipsoid to a plane necessarily introduces distortion.