vehicle_positions_tool
Retrieve real-time vehicle positions for a specific bus route, providing ID, coordinates, bearing, and speed data for tracking current locations.
Instructions
Get current positions of vehicles on a specific route.
Args: route_id: The route ID to filter by (e.g., "BL" for Blue Loop)
Returns: List of vehicle positions with ID, coordinates, bearing, and speed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
route_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"route_id": {
"title": "Route Id",
"type": "string"
}
},
"required": [
"route_id"
],
"type": "object"
}