Its already been explained that the log from Radarbox doesn't show all the flight numbers from that day. What it shows is only the first Flight ID from that aircraft.
The scripts I posted earlier correct this error, and show all the Flight IDs used that day. If someone explains what layout/format they need this in for the Yahoo SBS group, I'll modify the script to provide what you need. It currently produces this -
http://www.tarbat.gofreeserve.com/data.htmlSo, on that report, look at G-EUPW. The report in Radarbox just shows Flight Id SHT18C. But my new scripted report shows Flight IDs SHT19U at 10:15am, SHT18C at 14:13pm, SHT19A at 15:57pm, SHT18V at 19:00pm, and SHT19W at 20:25pm.
Hopefully v2.10 will fix this.
SQL used for this report:
SELECT DISTINCT
Aircraft.Registration AS "Reg",
Flights.Callsign AS "Flight ID",
Flights.Route AS "Route",
Aircraft.AircraftTypeSmall AS "ICAO Type",
Aircraft.Airline AS "Airline",
Aircraft.AircraftTypeLong AS "Aircraft",
substr(Flights.EndTime,1,16) AS "Flight Ended",
Aircraft.ModeS AS "Mode S"
FROM
Aircraft
LEFT OUTER JOIN Flights ON (Aircraft.ModeS=Flights.ModeS)
WHERE
((date('now','-1 day') = substr(Aircraft.LastTime,1,4)||"-"||substr(Aircraft.LastTime,6,2)||"-"||substr(Aircraft.LastTime,9,2)) AND
(Flights.StartTime IS NULL)) OR
((date('now','-1 day') = substr(Flights.EndTime,1,4)||"-"||substr(Flights.EndTime,6,2)||"-"||substr(Flights.EndTime,9,2)))
ORDER BY
Aircraft.Registration,
Flights.EndTime,
Aircraft.ModeS