Aircraft
There are a number of publically visible data items:
String callSign
int east
int north
int heading
int flightLevel
int speed
Provided for debugging purposes return "Aircraft: " + callSign + "\tPosition: " + east + "E " + north + "N" + "\tHeading: " + heading + "\tHeight : " + flightLevel*100 + "\tSpeed: " + speed;
return "Aircraft: " + callSign + "\tPosition: " + east + "E " + north + "N" + "\tHeading: " + heading + "\tHeight : " + flightLevel*100 + "\tSpeed: " + speed;