getFlightsInArea
Query all flights within a specified geographic area using boundary box coordinates to identify available air traffic and travel options.
Instructions
区域航班查询 - 查询指定地理区域内的所有航班。参数为边界框坐标(最小纬度,最大纬度,最小经度,最大经度)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_lat | Yes | ||
max_lon | Yes | ||
min_lat | Yes | ||
min_lon | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_lat": {
"title": "Max Lat",
"type": "number"
},
"max_lon": {
"title": "Max Lon",
"type": "number"
},
"min_lat": {
"title": "Min Lat",
"type": "number"
},
"min_lon": {
"title": "Min Lon",
"type": "number"
}
},
"required": [
"min_lat",
"max_lat",
"min_lon",
"max_lon"
],
"type": "object"
}