diff --git a/predict/css/pred.css b/predict/css/pred.css index 4f0cc13..e64a926 100644 --- a/predict/css/pred.css +++ b/predict/css/pred.css @@ -41,6 +41,18 @@ a { text-decoration: underline; color: #333; cursor: pointer; } display: none; } +#about_window { + position: absolute; + left: 50%; + top: 50%; + width: 500px; + margin-left: -250px; + margin-top: -120px; + padding: 1em; + text-align: center; + display: none; +} + .box { position: absolute; background-color: white; diff --git a/predict/index.php b/predict/index.php index 0b80980..ae451df 100644 --- a/predict/index.php +++ b/predict/index.php @@ -113,6 +113,12 @@ function initialize() { $("#closeErrorWindow").click(function() { $("#error_window").fadeOut(); }); + $("#about_window_close").click(function() { + $("#about_window").fadeOut(); + }); + $("#about_window_show").click(function() { + $("#about_window").fadeIn(); + }); // plot the initial launch location plotClick(); google.maps.event.addListener(map, 'mousemove', function(event) { @@ -163,6 +169,22 @@ land: ?km
Show Debug | Hide Launch Card +
+About this software + + + +
+Cambridge University Spaceflight Landing Predictor +

+A tool to predict the flight path and landing location of latex sounding balloons based on wind data from the NOAA. +

+Written by Jon Sowman and Adam Greig for CUSF. +Credit also to Rich Wareham for work on the predictor. Some parts of code taken from old landing prediction software, credit to Rob Anderson, Fergus Noble and Ed Moore. +

+No guarantee is given for the accuracy, precision or relability of the data produced by this softare, and you use it at your own risk. +

+Close