calculate-distance
Measure the distance between two geographic points using longitude and latitude coordinates with optional geographic calculations, powered by PostGIS MCP Server.
Instructions
İki nokta arasındaki mesafeyi hesapla
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| point1_lat | Yes | Birinci nokta enlem | |
| point1_lon | Yes | Birinci nokta boylam | |
| point2_lat | Yes | İkinci nokta enlem | |
| point2_lon | Yes | İkinci nokta boylam | |
| use_geography | No | Coğrafi hesaplama kullan (varsayılan: true) |
Input Schema (JSON Schema)
{
"properties": {
"point1_lat": {
"description": "Birinci nokta enlem",
"type": "number"
},
"point1_lon": {
"description": "Birinci nokta boylam",
"type": "number"
},
"point2_lat": {
"description": "İkinci nokta enlem",
"type": "number"
},
"point2_lon": {
"description": "İkinci nokta boylam",
"type": "number"
},
"use_geography": {
"description": "Coğrafi hesaplama kullan (varsayılan: true)",
"type": "boolean"
}
},
"required": [
"point1_lon",
"point1_lat",
"point2_lon",
"point2_lat"
],
"type": "object"
}