home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 107.FORECAST.DOC < prev    next >
Text File  |  1985-09-16  |  3KB  |  79 lines

  1. The Sager Automatic Forecast System
  2. -----------------------------------
  3.  
  4. Files needed:
  5.  
  6.     FORECAST.COM
  7.     SAGER.DAT
  8.     WEATHER.DAT
  9.     WINDDIR.DAT
  10.     WINDSPD.DAT
  11.  
  12.  
  13.  
  14.  
  15. System Description:
  16.  
  17.   The IBM-PC Forecasting System is an automated weather forecasting
  18.   package derived from the Sager Weather Forecaster handheld manual computer.
  19.   Forecasts computed by the system should be fairly accurate for about
  20.   a six to twelve hour period. However, as time goes on the forecasts
  21.   tend to be less accurate. You may be suprised, though, how close the
  22.   forecasts are to the TV news forecasts.
  23.  
  24.   The software was written in Turbo Pascal and should work on any IBM-PC
  25.   compatible system. The source code is listed as 'FORECAST.PAS'.
  26.  
  27.  
  28. Input Required:
  29.  
  30.   1. WIND DIRECTION:  Wind direction should be two alphanumeric characters
  31.      that represent one of eight wind direction vectors.
  32.  
  33.                            N  = NORTH
  34.                            NE = NORTHEAST
  35.                            E  = EAST
  36.                            SE = SOUTHEAST
  37.                            S  = SOUTH
  38.                            SW = SOUTHWEST
  39.                            W  = WEST
  40.                            NW = NORTHWEST
  41.  
  42.  
  43.   2. BAROMETRIC PRESSURE:  The barometric pressure at sea level  in
  44.      inches of mercury.
  45.  
  46.               29.95 = Twenty-Nine point Nine Five Inches of Mercury
  47.  
  48.  
  49.   3. PRESSURE TENDENCY:  Pressure tendency is the current tendency of the
  50.      barometric pressure.
  51.  
  52.               R  = RISING
  53.               RR = RISING RAPIDLY
  54.               N  = NORMAL
  55.               F  = FALLING
  56.               FR = FALLING RAPIDLY
  57.  
  58.      NOTE:  It is normal for the pressure to rise in the morning and fall
  59.             in the afternoon. This cycle is repeated during a 24 hour
  60.             period.
  61.  
  62.  
  63.   4. SKY CONDITION:  Sky condition is the condition of the atmosphere. The
  64.      possible conditions are:
  65.  
  66.                CLEAR   = CLEAR SKIES
  67.                PCLOUDY = PARTLY CLOUDY SKIES
  68.                MCLOUDY = MOSTLY CLOUDY SKIES
  69.                CLOUDY  = CLOUDY SKIES
  70.                PRECIP  = RAIN, SLEET, SNOW, ETC. (PRECIPITATION)
  71.  
  72.  
  73.   NOTE:  All of this information is available hourly from the National Weather
  74.          Service here in Atlanta on NOAA weather radio frequency 162.550 Mhz.
  75.          It is also available by telephone at 767-1784 or 767-1785.
  76.  
  77.          Also make sure that you are in UPPER case mode when you are entering
  78.          alphanumeric characters.
  79.