neshan_isochrone
Calculate reachable areas from a point by time or distance. Returns isochrone polygons or line strings as GeoJSON.
Instructions
Calculate the reachable area from a point within a given time or distance (isochrone).
Returns a GeoJSON FeatureCollection. Each feature's geometry is a Polygon or LineString (controlled by 'polygon') and properties.metric is 'time' or 'distance'. Both distance and time can be requested simultaneously.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Center latitude. | |
| lng | Yes | Center longitude. | |
| time | No | Max reachable time in minutes. At least one of distance/time is required. | |
| denoise | No | Simplification level 0–1 (0 = full detail, 1 = maximum simplification). | |
| polygon | No | True → Polygon geometry; False → LineString geometry (default False). | |
| distance | No | Max reachable distance in km. At least one of distance/time is required. |