calculate_isochrone
Calculate travel time areas reachable from a location within specified time limits using Valhalla routing for driving, walking, or cycling profiles.
Instructions
Calculate travel time isochrone (areas reachable within time limit) using Valhalla
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| center_longitude | Yes | Center longitude | |
| center_latitude | Yes | Center latitude | |
| max_duration_seconds | Yes | Maximum travel time in seconds (1 minute to 1 hour) | |
| profile | No | Routing profile (default: driving). Maps to Valhalla costing: driving->auto, walking->pedestrian, cycling->bicycle | |
| contours | No | Optional: Array of contours to generate. If not provided, uses max_duration_seconds as single contour. Example: [{"time": 5}, {"time": 10}, {"time": 15}] | |
| polygons | No | Return polygons (true) or lines (false). Default: true |