Cant find the code for pilots on map?

Hey i was wondering where the code was for the pilot information for the ones that are flying that show up on the live me, the information for…

Pilot, Flight Number, Departure, Arrival, Status, Altitude, Speed, Distance/Time Remain

Going to try and do something cool with it on my main page thanks for the help.

Call the function:

$activeflights = ACARSData::GetACARSData();

foreach($activeflights as $flight)
{
  print_r($flight);
}

$flight is an object, call each column as:

$flight->columname