validate_flight
Check a drone flight location, altitude, and time against FAA Part 107 rules. Detects airspace restrictions, TFRs, altitude limits, and twilight violations. Returns PASS, CAUTION, or FAIL with specific issues.
Instructions
Validate whether a drone flight at a specific location, altitude, and time is permitted under FAA Part 107 rules. Checks airspace restrictions, TFR time windows, altitude limits (400ft AGL), UASFM ceiling, and civil twilight requirements. Returns a status of PASS (no issues), CAUTION (warnings but flyable), or FAIL (rule violations found), with specific violations and warnings listed. Read-only — does not create or modify any data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Flight location latitude | |
| lng | Yes | Flight location longitude | |
| altitude_ft | Yes | Planned flight altitude in feet AGL | |
| time | No | Planned flight time as ISO 8601 string (e.g., 2026-04-20T14:00:00Z). Defaults to now. |