Hi,
I would like to use the daily report generator to produce a log of all incoming and outgoing traffic to our airport. Is it possible somehow to include any conditions in the report ?
I.e. only write aircraft into the report whose start or end GS is less than 150kts ?
Cheers
Carsten
Only by using something like SQLite Maestro (or another SQL program) to write SQL to produce such a report. Something like this:
SELECT *
FROM
Flights
WHERE
(Flights.StartGS < 150) OR
(Flights.EndGS < 150)
You might be able to adapt the SQL script I've posted on another thread.
Thank you very much, I'll try that