find_stations_near_coordinates
Find the closest police, fire, EMS, or hospital stations to a given latitude and longitude. Filter by type and radius to get sorted results by distance.
Instructions
Find the public safety facilities nearest to a latitude/longitude, sorted by distance. Use this when you already have coordinates; it skips geocoding and is faster than find_stations_near_address.
Args: lat: Latitude (WGS84) lng: Longitude (WGS84) type: Optional filter — "fire", "police", "ems", or "hospital" radius_miles: Search radius in miles (0.1–50, default 10) limit: Maximum facilities to return (1–25, default 5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lng | Yes | ||
| type | No | ||
| limit | No | ||
| radius_miles | No |