calculate_zip_code_distance
Calculate distance between two US ZIP codes using Haversine or Vincenty formulas. Get origin/destination details and distance in miles, kilometers, or other units.
Instructions
Calculate the distance between two ZIP codes using either the Haversine or Vincenty formula. Returns origin/destination details and the computed distance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Destination ZIP code (5 digits) | |
| from | Yes | Origin ZIP code (5 digits) | |
| unit | No | Distance unit | miles |
| method | No | Calculation method | haversine |