BMTC GTFS Dataset
Unofficial Bangalore Metropolitan Transport Corporation GTFS Static Dataset
@kaggle.anikets95_bmtc_gtfs_dataset
Unofficial Bangalore Metropolitan Transport Corporation GTFS Static Dataset
@kaggle.anikets95_bmtc_gtfs_dataset
This dataset comprises seven files, including three CSV files, three GeoJSON files, and one GTFS zip file. The data is sourced via an API hosted by BMTC under an unofficial capacity, and while it may contain inaccuracies, it has been validated against GTFS standards. Currently, efforts are underway to update this data on a weekly (or daily) basis.
For more information on the development process, you can track the project on GitHub: Development Repository and Data Repository
Additional Links:
Please refer to these links for further details on the BMTC API and GTFS standards.
CREATE TABLE aggregated (
"name" VARCHAR,
"trip_count" BIGINT,
"route_count" BIGINT,
"geometry" VARCHAR
);
CREATE TABLE routes (
"name" VARCHAR,
"full_name" VARCHAR,
"trip_count" BIGINT,
"stop_count" BIGINT,
"id" VARCHAR,
"direction_id" BIGINT,
"geometry" VARCHAR
);
CREATE TABLE stops (
"name" VARCHAR,
"trip_count" BIGINT,
"route_count" BIGINT,
"id" VARCHAR,
"geometry" VARCHAR
);
Anyone who has the link will be able to view this.