carvin / sf-muni-historical-headways

An interactive exploration of how the headways of San Francisco Muni routes has changed throughout the decades.

Home Page:https://sfstreetcars.co/headways

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Historical SF Muni Wait Times

An interactive exploration of how the headways of San Francisco Muni routes has changed throughout the decades.

Try it at: https://sfstreetcars.co/headways

Screenshot of the app

This repo is pretty light, and takes no setup to run besides opening index.html. It runs on Vue.js!

Data format

The data is included in data/headways.js in this format:

let Data = {
  'Route Name': [
    {
      "Year": 1932
      "Time of Day Min": 5  //minutes
      "Time of Day Max": 10 //minutes. Repeat previous value if the headway was not a range.
    }
  ]
}

Selecting which years to show

The layout of the page is set up to display the headways for 4 different years at once. To change which years are displayed, update this line in app.js:

data: {
  years: [1932, 1949, 1981, 2019, 1973],
...

The app will use the first four values in the array as the years to show. If data for any of those years is not included for the selected route, the app will use the next years in the array as fallbacks.

Sources

1932

Candrian's Double Indexed A-Z Street Guide of San Francisco ⋅⋅⋅H.A. Candrian

View at SF Public Library · View scans of relevant pages

1949

Report on Economic and Organizational Features of the Municipal Railway of San Francisco

Arthur C Jenkins, Consulting Engineer for San Francisco

View at SF Public Library · View scans of relevant pages

1973

Frequency of Service On Regular Routes

San Francisco Municipal Railway

View a scan

1981

San Francisco Bay Area Regional Transit Guide

Metropolitan Transportation Commission

View scans of relevant pages

1993

Muni Time Tables: All Lines (1984 – 2002)

San Francisco Municipal Railway, archive.org

View on archive.org

2003

Frequency Guide

San Francisco Municipal Railway, archive.org

View on archive.org

2008

Frequency Guide

San Francisco Municipal Railway, archive.org

View on archive.org

Today

Muni Routes & Stops

SFMTA

View on sfmta.com

About

An interactive exploration of how the headways of San Francisco Muni routes has changed throughout the decades.

https://sfstreetcars.co/headways

License:Apache License 2.0


Languages

Language:JavaScript 80.2%Language:CSS 15.0%Language:HTML 4.9%