home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 100.NAVAIDS.DAT < prev    next >
Text File  |  1991-04-26  |  2KB  |  76 lines

  1. 'NAVAIDS.DAT
  2. '===========
  3. 'essentials as always
  4. INPUT,  see03.sc1
  5. OUTPUT, test.sc1
  6. DIR
  7.  
  8. 'SEE can help you to place navaids into your scenery files.  You
  9. 'might wonder why since ASD does this as well.  Several pos-
  10. 'sibilities: 
  11.  
  12. 'You may have many of them and they're easier to place via SEE
  13. 'just by making a list. 
  14.  
  15. 'The source of one might be outside the scenery boundaries and
  16. 'would be tedious to place with ASD. 
  17.  
  18. 'Or you might want to control the active range instead of accepting
  19. 'ASD defaults.
  20.  
  21. 'In any case it is simple -- to set a VOR:
  22.  
  23. 'first we must tell SEE where the source of the transmission
  24. 'occurs.  We can use any of the position commands to do this
  25. '(see LIBRARY.DAT for a full discussion) but for now we'll
  26. 'use the most direct way:
  27.  
  28. NORTH, 18399.1234
  29. EAST,  18401.5678
  30.  
  31. 'now we tell SEE what frequency we want to tune (while flying)
  32. 'in order to receive this particular message:
  33.  
  34. FREQ, 109.05
  35.  
  36. '(this must be a valid FS VOR frequency)
  37.  
  38. 'finally; after setting up the essential information (where;
  39. 'which frequency;) we ask SEE to add the VOR:
  40.  
  41. VOR
  42.  
  43. 'now when we fly within an approximate range of 18 nautical miles
  44. '(default value) and dial up 109.05 we will receive this VOR.
  45.  
  46. '------------------------------------------------------------
  47. 'NDB's are handled similarly --
  48.  
  49. 'If the default range is too large we can add a statement to adjust it
  50. 'to what we want:
  51.  
  52. UNITS, NM
  53. RANGE, 10
  54.  
  55. 'we've just told SEE that we want the range to be 10 nm.
  56.  
  57. 'Add the frequency (for an NDB this time):
  58.  
  59. FREQ, 123
  60.  
  61. 'Locate the source of the transmission
  62.  
  63. NORTH, 18380
  64. EAST,  18439
  65.  
  66. 'Tell SEE to do it:
  67.  
  68. NDB
  69.  
  70.  
  71. 'OK; that's enough for this lesson. 
  72.  
  73. SAVE
  74. END
  75.  
  76.