home *** CD-ROM | disk | FTP | other *** search
/ World of Ham Radio 1997 / WOHR97_AmSoft_(1997-02-01).iso / sat / sat_05 / prog / nasaprep.doc < prev    next >
Text File  |  1997-02-01  |  2KB  |  48 lines

  1. NASAPREP.EXE - Prepares the NASADATA.ORB file for use with NASAORB
  2.  
  3. Background - The SATEQ program needs to be loaded with data for each
  4.   satellite.  This data is distributed by NASA in a standardized format,
  5.   which SATEQ cannot read, so to save the effort and errors involved in
  6.   entering the data by hand, the conversion program NASAORB was created.
  7.   However, this program required the user to pre-edit the NASA data
  8.   file, again required effort and possible errors by the user.  NASAPREP
  9.   is a preprocessor for NASAORB.
  10.  
  11. NASAORB expects to read a file called NASADATA.ORB, and produce a file
  12.   called SATKEPN.DAT, which is loaded by SATEQ.  Therefore, NASAPREP
  13.   will output a file by this name.  NASAPREP uses a config file call
  14.   SATNAMES.ORB that you create.  This file is a list of the birds you
  15.   want out of NASADATA.ORB file.  The SATNAMES.ORB file also lets you
  16.   rename the bird, as names like 1990 005H are hard to use.  Here is a
  17.   sample SATNAMES.ORB file:
  18.  
  19.  "OSCAR 10"  "OSCAR10"
  20.  "RS-10/11"
  21.  "AO-13"   "OSCAR13"
  22.  "Mir"
  23.  "GOES 2"  "GOES2"
  24.  
  25.   The first name is the name exactly as it appears in the NASADATA.ORB
  26.   file.  The second name is the alias that you want it renamed to.
  27.  
  28.   What NASAPREP will do:
  29.  
  30.   1.  Check NASADATA.ORB to see if it NASAPREP has ever been run before.
  31.       If it is the first time, it will copy it to NASADATA.SAV.
  32.  
  33.   2.  It will read SATNAMES.ORB to load up your list of names and
  34.       aliases.
  35.  
  36.   3.  Read NASADATA.SAV and output the selected ones to a newly created
  37.       NASADATA.ORB file.
  38.  
  39.   4.  Run NASAORB to process the newly created and edited NASADATA.ORB
  40.       file which will create the data file for SATEQ.
  41.  
  42.   Messages will appear on the screen to tell what's being done.  A list
  43.   of any birds that were in the satnames file but were not found in the
  44.   NASADATA will also be displayed.  You can save the messages in a file
  45.   if you need to read them all by redirecting the stdout to a file.
  46.   e.g.  NASAPREP >msgfilename
  47.  
  48.