Tissot Circles in Different Coordinate Reference Systems

Static map
A coordinate reference system is a crucial component for geographical data. It governs how spatial features are placed and aligned on the map. Tissot circles are an excellent way to demonstrate distortion in different coordinate reference systems.
Author

Zehui Yin

Published

November 3, 2024

In the post, I create several maps using different coordinate reference systems to demonstrate the distortion introduced by various types of projections. Projected coordinate systems are classified into equal-area, conformal, and equidistant or compromise projections, based on which characteristics they preserve: area, shape, or distance. There is no perfect projection; we always have to decide which features we want to preserve on our maps.

import geopandas as gpd
import matplotlib.pyplot as plt
from pyproj import CRS

Load the data used to create the maps. The Admin.geojson file contains the world administrative boundaries. The Points_Buffer.geojson file contains the Tissot circles, each with a geodesic radius of 600 kilometres.

url = "https://github.com/zehuiyin/tissot_circles/raw/refs/heads/main/"
admin = gpd.read_file(url + "Admin.geojson")
tissot = gpd.read_file(url + "Points_Buffer.geojson")

Create a function to reproject both datasets and map the Tissot circles on top of the administrative boundaries.

def tissot_map(epsg):
  fig, ax = plt.subplots(dpi=300)
  admin.to_crs(epsg) \
    .plot(ax=ax,
          color="grey",
          zorder=5)
  tissot.to_crs(epsg) \
    .plot(ax=ax, 
          color="#1f78b4",
          zorder=10)
  ax.set_title(CRS.from_epsg(epsg).name)
  ax.set_aspect("equal")

Geographic Coordinate System (WGS 1984)

Firstly, this map shows the World Geodetic System 1984, a geographic coordinate system that is unprojected. The map units are in degrees instead of metres.

tissot_map(4326)

Projected Coordinate System

World Mercator

Then, this map shows the World Mercator projection, a conformal projection. As a result, the circle shapes are preserved in this map.

tissot_map(3395)

World Equidistant Cylindrical

Thirdly, this map shows the World Equidistant Cylindrical projection. As the name suggests, it preserves distances in the map.

tissot_map(4087)

Equal Area Projection

This map uses an equal area projection, centred around Europe and Africa, which preserves area size.

tissot_map(8857)

Plate Carrée Projection

This map uses the Plate Carrée projection, a compromise projection that balances distortions in different characteristics rather than preserving any single feature.

tissot_map(32662)