home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / b / b002 / 2.ddi / LANDSAT.MEM < prev    next >
Encoding:
Text File  |  1992-01-09  |  3.6 KB  |  65 lines

  1.                           Reading LANSAT Tapes
  2.  
  3. There are several procedures provided with IDRISI to allow you to read
  4. LANDSAT tapes. The first is a Pascal source program for downloading from a
  5. VAX computer system. The second is to use the module named WINDOW. A final
  6. one is to use one of PARE, BILIDRIS or BIPIDRIS. Notes on these follow :
  7.  
  8.  
  9. 1.              IDRISI LANDSAT-TM/MSS Downloading Program
  10.  
  11.                         (c) 1988-92 J.Ronald Eastman
  12.  
  13. Included on this disk is a file named LANDSAT.PAS  --  a PASCAL source code
  14. file for a program that will allow you to window out a portion of a Landsat
  15. TM or MSS computer-compatible tape in CCT-X band sequential format.  It is
  16. written in VAX Pascal and is intended for use on Digital Equipment Corpora-
  17. tion VAX/VMS systems  (although the code can easily be modified to run on
  18. other similar systems).  The output is a binary byte-format file in IDRISI
  19. byte binary format.  This format consists of a single record of one byte
  20. for each pixel in the window extracted. There is no header at the beginning
  21. of the file. This file can subsequently be imported into IDRISI by running
  22. the DOCUMENT module to create a proper documentation file. Simply note the
  23. number of rows and columns.
  24.  
  25. Please note that the program is currently configured for TM (Thematic Mapper)
  26. imagery, and will need to be changed for LANDSAT-MSS data. The critical
  27. change is in the rec_length variable at the start of the program. For MSS
  28. data, the rec_length should read 3595. If you are uncertain about the number
  29. of header records and the length of the record header, set them both to zero
  30. -- your window may be slightly off in its positioning, but you can determine
  31. this by eye later. Enjoy ...
  32.  
  33.  
  34. 2.                  Using WINDOW to Download Tapes
  35.  
  36. WINDOW can be used to extract a subset out of a LANDSAT tape. If you are
  37. to convert the whole image, however, it would be better to use one of
  38. PARE, BILIDRIS or BIPIDRIS as described below.
  39.  
  40. If you have a tape drive directly attached to your PC, the easiest was to
  41. download a sub-window is to copy the entire data file (it must be BSQ)
  42. onto your hard disk. Rename that file to give it an ".img" extension. Then
  43. construct a bogus documentation file for it by copying one from some other
  44. image. Then use DOCUMENT to modify the contents of the documentation file
  45. to match the image you wish to download. The only crtitical item this
  46. documentation file needs is the correct number of columns (which is identical
  47. to the record length -- ordinarily 4320 for TM or 3596 for MSS) and a
  48. number of rows which equals or exceeds the number of rows. Don't worry
  49. about the min and max (put 0 and 255 if in doubt). Then make sure that the
  50. file data data tyles are binary and byte respectively. Then run WINDOW with
  51. an "r" command line parameter (i.e., "window r"). This will allow you
  52. to remove the header -- specify a value equal to the record length when
  53. asked. The indicate what rows and columns you wish to extract. The extracted
  54. sub-image will have a correct min and max determined automatically.
  55.  
  56.  
  57. 3.         Using PARE, BILIDRIS or BIPIDRIS to Download Tapes
  58.  
  59. If you have a directly connected tape drive, each of these three modules can
  60. be used to convert an entire image to IDRISI format. PARE converts Band
  61. Sequential (BSQ) files. BILIDRIS converts Band-Interleaved-by-Line files
  62. (BIL) while BIPIDRIS converts Band-Interleaved-by-Pixel (BIP) files. All
  63. three of these modules can bypass the header (4320 bytes for TM, 3596 for
  64. MSS). In addition, these modules will create a documentation file directly.
  65. Refer to the manual for further details.