This sketch is created with an older version of Processing,
and doesn't work on browsers anymore.
xxxxxxxxxx
// Approx GPS Data Locations.
// X axis. GPS Data. Left Side is -11. right is 1.9
// Y axis. GPS Data. Top is 60.92. Bottom is 49
PImage uk;
int z;
float r, g, b, s;
void draw() {
bg();
airports();
/*
// displays full list in console
println("---Airports List---");
println(airports);
println("---Flights---");
println("----Edinburgh----");
println(flightsEDI);
println("----Glasgow----");
println(flightsGLA);
println("----Dundee----");
println(flightsDUN);
println("----Aberdeen----");
println(flightsABD);
println("----Inverness----");
println(flightsINV);
println("----Prestwick----");
println(flightsPRE);
println("----End of Print----");
*/
}