Visualizing PEI Street Orientation

You have likely by now seen the buzz about Geoff Boeing’s work to visualize city street orientations.

There’s nothing more frustrating than coming across something interesting like this and not finding code attached to it, to allow one to apply it to local conditions; fortunately Boeing more than rose to the challenge, and provided a handy Python notebook that is relatively easy to get running on a Mac. After installing Jupyter and some Python libraries, I was able to run his code out of the box, changing only the definition of the cities to:

places = {'Charlottetown'   : 'Charlottetown, PE, Canada',
          'Summerside'      : 'Summerside, PE, Canada',
          'Stratford'       : 'Stratford, PE, Canada',
          'Cornwall'        : 'Cornwall, PE, Canada'
          }

Less than a minute later, I had these beautiful visualizations:

PEI Street Orientation Graphs

Here’s how Boeing describes these:

Each of the cities above is represented by a polar histogram (aka rose diagram) depicting how its streets orient. Each bar’s direction represents the compass bearings of the streets (in that histogram bin) and its length represents the relative frequency of streets with those bearings.

In other words, to generalize, Charlottetown and Cornwall follow what Boeing describes as an  “angled, primarily orthogonal street grid,” rotated slightly west, with Cornwall including a significant north-south departure from this, and Charlottetown including a subset of streets tilted slightly east, reflecting the cohort of St. Peters Road-aligned streets on the east side of the city.

Summerside is even more religiously “angled, primarily orthogonal,” but rotated slightly east.

Stratford, on the other hand, is, as Boeing describes Boston and Charlotte, “more evenly distributed in every direction.”

This is all born out when you look at the street networks in OpenStreetMap, especially in the Stamen Toner style:

Streets of Cornwall, Charlottetown and Stratford

Street of Summerside

Of Boston, Boeing writes:

Although it features a grid in some neighborhoods like the Back Bay and South Boston, these grids tend to not be aligned with one another, resulting in a mish-mash of competing orientations. Furthermore, these grids are not ubiquitous and Boston’s other streets wind in many directions. If you’re going north and then take a right turn, you might know that you are immediately heading east, but it’s hard to know where you’re eventually really heading in the long run.

This makes it harder for unfamiliar visitors to navigate Boston than many other US cities. It does not adhere to a straightforward north-south-east-west pattern (or any other consistent, predictable pattern) that our brains adjust to in most places – not because Boston apocryphally paved over its cow paths, but because of its age, terrain, and annexation of various independent towns.

The same thing could just as well be said about Stratford, compared to the Charlottetown and Summerside.

Comments