MTA Staten Island Railway On-Time Performance: Beginning 2006
On-Time Performance (OTP) measures the percentage of trains arriving at their destination terminals as scheduled. While the main measure for OTP excludes delays caused by trains held for connections with the Staten Island Ferry, OTP including boat delays is also included. The dataset also includes the number of on-time trips and delayed trips per month (both including and excluding boat delays), the number of scheduled trips, incomplete trains per month, and the percent of trains that are completed per month.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"ny-gov/mta-staten-island-railway-ontime-performance-fccm-griq\".\"mta_staten_island_railway_ontime_performance\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.