Finding the nearest NYC subway station with a Voronoi map

nyc_voronoi_subway.png

A Voronoi diagram represents regions of influence of a set of points or objects in a space.

It can be used for nearest-neighbor queries.

For example, if you were in New York City and wanted to find the closest subway station to your location.

In this post we will create a Voronoi map of subway stations in NYC, using D3.js.

The code can be found here.


To create a Voronoi diagram, you start with a set of seed objects or points.

In this case we're using the latitude, longitude coordinates for the subway station locations.

Subway station points on map

Then the space - the map of NYC - is partitioned into regions, with each region containing a subway station location point.

A common algorithm for generating a Voronoi diagram from a set of points is Fortune's sweep line algorithm.

NYC subway voronoi map

In each region, any other point (latitude, longitude coordinate pair) in that region is closer to the subway station in that region than to any other subway station on the map.

So this diagram can be used to find the closest subway station to any other location in NYC.

If you have the latitude,longitude coordinates of a location in NYC, then you can just figure out which Voronoi region that point is located in, and the subway station in that region is the closest one.

NYC Open Data

To create the map I've used two datasets from NYC Open Data.

There is also a dataset available of subway entrances, but there are a LOT more subway entrances than subway stations.

If you're familiar with the NYC subway, there could be multiple subway entrances for each station, with many right across the street from each other, so in the interest of keeping things less cluttered, I stuck with the station locations.

Drawing the map

I've used D3.js V4 to draw this map, and also to generate the Voronoi diagram.

D3.js has an implementation of Fortune's algorithm in d3.voronoi() to compute a Voronoi diagram from a set of points.

You can also use D3-delaunay -- note that d3.voronoi() has been deprecated, but it is bundled with D3.js V4, so I'm using it here.

The Delaunay Triangulation of a set of points corresponds to its dual graph of the Voronoi diagram.

You can construct the Voronoi diagram from the Delaunay Triangulation and vice versa.


The subway map can be made a bit more interesting by coloring in the cells based on the subway line colors, as well as clipping the Voronoi diagram to the map.

subway_voronoi_map_color.png

Point in polygon

If you wanted to use this in a GIS application, maybe a basic (likely mobile) application to tell someone the closest subway station based on their current location, you could store the Voronoi polygons, along with their subway station information, in a GIS-enabled database such as POSTGIS.

Then do a point in polygon query to find the Voronoi polygon the user's location lies in, and from there get the corresponding subway station.

Thanks for reading!

Finding the nearest subway station is one practical use for Voronoi diagrams, but they have a lot of other applications in a wide range of fields.

For example...

And many others!

Feel free to write any questions or comments below, or reach out on Twitter @LVNGD.

blog comments powered by Disqus

Recent Posts

abstract_tree.png
Solving the Lowest Common Ancestor Problem in Python
May 9, 2023

Finding the Lowest Common Ancestor of a pair of nodes in a tree can be helpful in a variety of problems in areas such as information retrieval, where it is used with suffix trees for string matching. Read on for the basics of this in Python.

Read More
rectangles_cover.png
How to write a custom fragment shader in GLSL and use it with three.js
April 16, 2023

This blog post walks through the process of writing a fragment shader in GLSL, and using it within the three.js library for working with WebGL. We will render a visually appealing grid of rotating rectangles that can be used as a website background.

Read More
streaming data
Streaming data with Flask and Fetch + the Streams API
April 10, 2023

Streaming can be a great way to transfer and process large amounts of data. It can help save space and/or time, if the data uses a lot of memory, or if you want to start processing or visualizing the data as it comes in.

Read More
Get the latest posts as soon as they come out!