Community-created GTFS feed for Mumbai's BEST (Bombay Electric Supply & Transport) bus network including routes, stops, and schedules
import pandas as pd
# GTFS data from https://mobilitydatabase.org/
stops = pd.read_csv('stops.txt')
routes = pd.read_csv('routes.txt')
print(f'Routes: {len(routes)}, Stops: {len(stops)}')| Field | Type | Description |
|---|---|---|
| route_id | string | Bus route identifier |
| stop_name | string | Bus stop name |
| stop_lat | float | Stop latitude |
| stop_lon | float | Stop longitude |
| departure_time | time | Scheduled departure time |