geospatial whiz, python developer, web developer, transport planner, civil engineer

Creating isochrones: what is the optimal way?

17 July 2023

Creating isochrones: what is the optimal way?

The full article can be found on medium

Accessibility

A common concept in Transportation and Urban Planning is the concept of Accessibility to services and amenities; not to be confused with Universal Accessibility which is more related to inclusive design. Examples of accessibility can be:

  • What percentage of households are within a 5-minute drive to a pharmacy?
  • A Transportation Master Plan objective aims to have 100% of households at a maximum of 500 m distance walk from a bus stop by redesigning their bus network in the next 2 years.
  • How many people live 20 minutes, 30 minutes, 45 minutes, 1 hour, and more than an hour away from the university by cycling or public transportation?

These questions often translate to Accessibility or Reach Map analyses that aim to create a single - or a series of - isochrones (lines/areas of equal travel time or distance); similar to contour lines on topo maps (lines of equal elevation). The term isochrone is used interchangeably to refer to both time and distance. An advantage of isochrones is that they transform a routing problem into a spatial join problem. Instead of having to calculate routes between a source and a multitude of destinations (POIs) which can be time-consuming, you can instead intersect the isochrone (polygon/area of equal distance or travel time) with a POI layer represented by points or building polygons (spatial join) and know with good accuracy how far each POI lies from the start point for a given mode of travel.

Isochrones

However, An aspect of reach maps that is often overlooked is how the accessibility surface is actually computed or constructed. The final result is a polygon but the underlying calculations to determine the accessible area(s) are graph/network calculations (commonly ego graph or ego network). These calculations yield a subset of nodes (intersections) and links/edges (roads) that are within the required distance or travel time. Transforming nodes and links into a shapeAn additional step is needed to transform or approximate a shape (line or polygon) from those nodes and links. The correct choice of methodology or algorithm to approximate a shape can depend on the:

  • Use case
    • Are you calculating a single isochrone or do you need nested contour lines? - Is the area of the isochrone important in the calculation? Maybe you have a KPI that is designed around an area metric and not a number or percentage of destinations reached
  • Location and network characteristics
    • Urban vs rural areas   - Link and node density, connectivity, circuity, etc.   - Average width of streets, average perpendicular dept at which amenity/building access points are, etc.

There are two main groups of methodologies to approximate accessibility polygons: Computational Geometry methods (vector calculations) Spatial/Grid interpolation methods (raster calculations)

The full article can be found on medium