Skip to content

Latest commit

 

History

History

path

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

PATH ridership stats

Cleaned + Plotted Port Authority data from https://www.panynj.gov/path/en/about/stats.html

Cleaned data

Jan 2012 – Oct 2023

PATH weekday ridership over time, stacked by station

Closer look at 2020-Present

PATH weekday ridership over time, stacked by station, 2020 to 2022-09; 275k in Jan/Feb 2020, large drop, almost to zero, in April 2020, steadily climbing back to 150k

Weekends only

PATH weekend ridership over time, stacked by station

Weekends (2020-Present)

PATH Saturday ridership over time, stacked by station, September 2022 has surpassed January/February 2020

Weekdays, Grouped by Month

Weekends, Grouped by Month

Weekdays vs. Weekends

Weekdays vs. Weekends, compared to 2019

As of October 2023:

  • weekday ridership was 62% of 2019
  • weekend ridership was 90% of 2019

Service remains down in both cases, so it's not apples to apples.

Methods

PATH Monthly Data

1. Download "PATH Ridership Reports (By Month)"

1b. Use Tabula to extract tables

This only has to be done once, the resulting templates are saved in templates/.

Selecting tables from a "PATH Ridership Report"

2. Process each year's data, output .pqts

See:

3. Combine all years' data

Bridge & Tunnel Data

Merge per-year PDFs into one:

/opt/homebrew/bin/gs \
  -o merged.pdf \
  -sDEVICE=pdfwrite \
  -dPDFFitPage \
  -g12984x10033 \
  -dPDFSETTINGS=/prepress \ 
  traffic-e-zpass-usage-20*

cf. SO.