query_flight_analytics
Retrieve time-series flight data like altitude and airspeed for specific flights. Supports multiple analytics and output formats for detailed flight analysis.
Instructions
Get time-series data (altitude, airspeed, etc.) for specific flights.
Flight IDs come from query_database. Accepts human-readable analytic names (e.g. "Airspeed") which are resolved automatically, or raw IDs from search_analytics.
Args: ems_system_id: EMS system ID. flight_ids: Flight record IDs (max 10, from query_database). analytics: Analytic names or IDs (max 20). e.g. ["Airspeed", "Altitude"]. start_offset: Start time in seconds from flight start. end_offset: End time in seconds from flight start. sample_rate: Samples per second (default: 1.0). output_format: 'table' (default), 'csv' (compact), or 'json' (structured).
Returns: Per-flight time-series data in the requested output format.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ems_system_id | Yes | ||
| flight_ids | Yes | ||
| analytics | Yes | ||
| start_offset | No | ||
| end_offset | No | ||
| sample_rate | No | ||
| output_format | No | table |