Toronto Bikeshare 2023
Bike trips dataset for Toronto bike share network
@kaggle.roberttarus_toronto_bikeshare_2023
Bike trips dataset for Toronto bike share network
@kaggle.roberttarus_toronto_bikeshare_2023
The following dataset contain bike trips taken during the year 2023 across more than 600 stations across the City of Toronto. The description of each feature is listed below:
Unique ID code for individual trip taken.
Trip start time.
Trip end time.
Duration of the trip in seconds.
Unique ID code for the start station.
Name of start station.
Unique ID code for the end station.
Name of end station.
Type of user, either Member or Casual.
Unique ID for the individual bike used.
Reference Sources
City of Toronto: Open Data
City of Toronto has an open data catalogue where I obtained Toronto BikeShare trip datasets.
CREATE TABLE bike_share_ridership_2023_01 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_02 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_03 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_04 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_05 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_06 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_07 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_08 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_09 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_10 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_11 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);CREATE TABLE bike_share_ridership_2023_12 (
"trip_id" BIGINT,
"trip_duration" BIGINT,
"start_station_id" BIGINT,
"start_time" TIMESTAMP,
"start_station_name" VARCHAR,
"end_station_id" DOUBLE,
"end_time" TIMESTAMP,
"end_station_name" VARCHAR,
"bike_id" BIGINT,
"user_type" VARCHAR
);Anyone who has the link will be able to view this.