home *** CD-ROM | disk | FTP | other *** search
/ World of Ham Radio 1997 / WOHR97_AmSoft_(1997-02-01).iso / misc / n4flz / amsoft.iii next >
Text File  |  1997-02-01  |  6KB  |  199 lines

  1.  
  2.  
  3.  
  4.           
  5.           
  6.           
  7.           
  8.           
  9.                    QRB/QTE Beam Heading and Distance Program
  10.           
  11.                                  Version 1.01
  12.                     Copywrite 1987 by Harold G. Peach, Jr.
  13.           
  14.           
  15.                                     Notice
  16.                                     ------
  17.          A limited license is granted to all users of this program to
  18.          make copies of this program and distribute them to other
  19.          users under the following conditions:
  20.           
  21.          1)  The program is not to be distributed to others in a
  22.              modified form and must be accompanied by this
  23.              documentation.
  24.           
  25.          2)  This program may not be offered for resale or be included
  26.              as part of a package offered for resale.
  27.           
  28.          YOU ARE ENCOURAGED TO COPY AND SHARE THIS PROGRAM WITH OTHERS
  29.           
  30.          This program is considered freeware.  If you find this
  31.          program of value, a contribution ($10.00 suggested) will be
  32.          appreciated.  Also, as a contributing user, you are entitled
  33.          to a copy of the source code if you include a business size
  34.          self-addressed stamped envelope.  Contributing users may also
  35.          receive program modification updates by sending a s.a.s.e.
  36.          and diskette.
  37.           
  38.           
  39.                                   Disclaimer
  40.                                   ----------
  41.          This program is licensed as is without any warranty as to its
  42.          performance, accuracy, or freedom from error, or as to any
  43.          results generated through its use; including, but without
  44.          limitation to, any implied warranties of merchantability or
  45.          of fitness for a particular purpose.  You assume the entire
  46.          risk as to the results and performance of the program.  I do
  47.          not warrant that the program will meet your requirements or
  48.          operate without interruption or error.
  49.           
  50.           
  51.           
  52.                           Harold G. Peach, Jr., N4FLZ
  53.                                 P.O. Box 24124
  54.                         Lexington, Kentucky  40524-4124
  55.                                 (606) 273-3242
  56.           
  57.           
  58.           
  59.           
  60.           
  61.           
  62.           
  63.           
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.          INTRODUCTION
  71.           
  72.          Every effort has been made to make this the best and most
  73.          accurate beam heading and distance program available.  The
  74.          author was prompted to write this program after several
  75.          failed attempts to find an existing program that would work
  76.          for all points on the earths surface.  This program has been
  77.          tested and found to work at the poles, exact antipodes, and
  78.          for the same point on the globe.  While rounding errors may
  79.          exist, our tests have found the program to be very accurate
  80.          at both great and small distances. (Tested accurate using two
  81.          points 10 miles apart.)  The most important thing is to be as
  82.          exact as possible when entering the points.
  83.           
  84.           
  85.          CONVERTING MIN/SEC FORMAT TO DECIMAL FORMAT
  86.           
  87.          As pointed out above, the more accurate the points entered
  88.          the more accurate the results.  So, lets go over how to
  89.          convert from Minute/Second Format to Decimal Format.  This is
  90.          done by using the following formula:
  91.           
  92.               Decimal Format = Degrees + Minutes/60 + Seconds/3600
  93.           
  94.          Lets say your latitude was 32 degrees, 12 minutes, and 34
  95.          seconds.  In order for this to be used by the program, the
  96.          format must be converted to decimal as follows:
  97.           
  98.               Decimal Format = 32 + 12/60 + 34/3600
  99.                              = 32 + .2 + .00944
  100.                              = 32.20944 Degrees
  101.           
  102.           
  103.          NORTHERN/SOUTHERN LATITUDES
  104.          EASTERN/WESTERN LONGITUDES
  105.           
  106.          In most cases you will also need to enter the hemispheres and
  107.          meridians using a different format than is used by most
  108.          books.  Northern latitudes and Western longitudes should be
  109.          entered as positive numbers.  Southern latitudes and Eastern
  110.          longitudes should be entered as negative numbers.  Examples
  111.          of this are as follows:
  112.           
  113.               50.25 Degrees North latitude would be entered   50.25
  114.              139.00 Degrees South latitude would be entered -139.00
  115.              114.52 Degrees East longitude would be entered -114.52
  116.               79.34 Degrees West longitude would be entered   79.34
  117.           
  118.          You do not need to enter plus (+) signs as any number without
  119.          a sign is assumed to be positive.
  120.           
  121.           
  122.          PROGRAM OPERATION
  123.           
  124.          This program is completely menu driven and requires no
  125.          additional documentation.  The program itself is designed to
  126.          run on all IBM personal computers and compatible.  It has
  127.          been tested on an IBM PC, XT, and PCjr using PC-DOS 2.1.  The
  128.          only file needed to run the program is QRBQTE.COM.  To begin
  129.          simply type QRBQTE from the default drive prompt.
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.          A FINAL NOTE
  137.           
  138.          The question has been asked, what does the name QRB/QTE stand
  139.          for.  Most radio amateurs are familiar with Q signals.  So,
  140.          the filename is a concatenation of two Q signals.  QRB
  141.          literally means "The approximate distance between our
  142.          stations is _____ miles."  QTE literally means "Your TRUE
  143.          bearing from me is _____ degrees at _____ hours."
  144.           
  145.                                        73's
  146.           
  147.                                        Harold G. Peach, Jr.
  148.                                        N4FLZ
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.