Calculate EV Route
calculate_ev_routePlan an EV route with charging stops based on your car's battery capacity and current state of charge. Get distance, duration, energy consumption, and nearby charging stations for your waypoints.
Instructions
Calculate an electric vehicle route between two or more locations using ANWB EV route planning. Requires an EV car model ID, battery capacity, and current state of charge. Returns distance, duration, battery consumption, charging stops (if needed), and nearby charging stations. Provide locations as latitude,longitude pairs separated by colons. Use find_locations first to get coordinates for place names.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| carId | Yes | EV car model ID from the ANWB database (e.g. '646ca73f3f6beb1fcbdbdf70'). | |
| capacity | Yes | Battery capacity in kWh (e.g. 100 for a 100 kWh battery). | |
| locations | Yes | Waypoints as lat,lon pairs separated by colons. Minimum 2 points. Example: '52.373166,4.89066:51.441643,5.469722'. | |
| complexity | No | Route complexity factor (default: 1.15). Higher values may find more optimal routes. | |
| stateOfCharge | Yes | Current battery state of charge as a percentage (5-100). | |
| finalStateOfCharge | No | Desired minimum battery percentage at arrival (10-75, default: 20). |