{%extends "basedialog.html"%} {%block title %}Predict Flight Delays with Apache Spark MLlib, FlightStats, and IBM Insights for Weather: Results{%endblock%} {%block body%}
 

What do we have here?

An aggregation of all the flights people have looked up during this conference.

  • Click on a departure airport (green circle) to see all the bound flights.
  • Click on a flight path (green line) to see additional info about the departing flights.
Departure Airports
Arrival Airports
{%endblock%} {%block onDialogShown%} var tdiag = $(this).find('.modal-dialog').addClass('modal-dialog-flightmapresults'); var updateMap = function(){ if (typeof d3 == "undefined"){ return setTimeout(updateMap, 1000); } {%include module + ":mapResults.js" with context%} } updateMap(); {%endblock%}