get_reachable_area
Calculates the area reachable within a specified time or distance from starting points, using transport modes like hiking, biking, or driving.
Instructions
Computes the area that can be reached within a given time or distance from one or more starting points.
Args:
coordinates_list: 1 or more coordinates to compute reachable area from as [[lon, lat], ...]
route_type: Type of route, e.g. "cycling-mountain", "cycling-regular", "foot-hiking", "driving-car"
range_type: Type of range, either time (in seconds) or distance (in metres)
area_range: maximum range value of the analysis in seconds for time and metres for distance.
Or a comma separated list of specific range values
Returns: Reachable area information in GeoJSON format
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coordinates_list | Yes | ||
| route_type | Yes | ||
| range_type | Yes | ||
| area_range | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | ||
| bbox | Yes | ||
| features | Yes | ||
| information | Yes |