Meteorologica Installation Instructions

For (somewhat) useful tidbits on installing the Ultimeter 2000 see:
        http://www.webaugur.com/wares/ultimeter.html

Requirements:
      APRSD configured to accept UDP connections.
      PERL 5.004 or newer
      PERL POSIX and Syslog modules
      Ultimeter 2000 Weather Station connected to a (working) serial port.
            Use minicom or cat to test weather station connection.

Weather Underground:
    You may sign up for a free WUnderground Personal Weather Station ID at:
        http://www.wunderground.com/weatherstation/usersignup.asp
    For more information on the Personal Weather Station Project see:
        http://www.wunderground.com/weatherstation/

INSTALLATION:
    ./configure
    make
    make install
  
  You may want to install either SysV BSD init scripts, depending on your OS:
    make install-sysv
  or
    make install-bsd

  YOU MUST then edit the following variables in the following files:

    ${exec_prefix}/sbin/log_u2000:
        my $PORT = "/dev/ttyS1";  # This variable defines the serial port file
  
    ${exec_prefix}/sbin/rpt_aprsd:
        my $MYCALL = "N0CLU-1";       # Your Amateur Callsign with SSID
        my $aprsServer = "localhost"; # APRSD host of APRSD, probably localhost
        my $aprsPort = 1315;          # APRSD UDP Port
        my $wxdelay = 5;              # Minutes between reports
  
    ${exec_prefix}/sbin/rpt_wu:
        my $MYWUID = "KMYID4";             # WUnderground ID, assigned by them
        my $MYEMAIL = "you\@yourhost.com"; # escape the @ symbol with \@
        my $MYWUPWD = "yourpass";          # Your Weather Underground Password
        my $wxdelay = 5;                   # Minutes between reports


