// Sun Outage Predictor // Predicts sun outages for any satellite and ground station // December 10, 1997 // // Original Excel Macro developed by Hughes Communications Inc, Orbital Operations // Orignal Concept and number crunching by Mark Shannon // Orignal Excel Spreadsheet Macro design by Miro Svetinsky // Conversion to JavaScript by Michael Shoffeitt for iXL, inc. mshoffeitt@ixl.com // // // Note that most of these variables and formulas were named based upon the names they were given orginally in the // Excel Macro - Hence some are named '
| S/C on-station Longitude W: | " + Sat_Lon + " |
| Ground station Latitude N: | " + GS_Lat + " |
| Antenna Size (meters): | " + AntennaSize + " |
| 'C' or 'Ku' band: | C |
| 'C' or 'Ku' band: | Ku |
| Season: | Spring |
| Season: | Fall |
| Year: | " + Year + " |
| Azimuth: | " + Azimuth + " |
| Elevation: | " + Elevation + " |
| Outage Date | ";
Page += "Start gmt | ";
Page += "End gmt | ";
Page += "Duration | "; Page += "Start " + TZ + " | ";
Page += "End " + TZ + " |
| " + Outage[r].OutDate + " | "; Page += "" + Outage[r].StartTime + " | "; Page += "" + Outage[r].EndTime + " | "; Page += "" + Outage[r].Duration + " | "; Page += "" + Outage[r].TZStartTime + " | "; Page += "" + Outage[r].TZEndTime + " |