home *** CD-ROM | disk | FTP | other *** search
- ; This batch file defines variables used in the examples in
- ; Chapter 11, "Plotting Multi-dimensional Arrays", of _Using IDL_.
-
- ; Restore Maroon Bells data into the IDL variable "elev".
-
- RESTORE, FILEPATH('marbells.dat', SUBDIR=['examples','data'])
-
- ; Make the x and y vectors giving the position of each column and row.
-
- X = 326.850 + .030 * FINDGEN(72)
- Y = 4318.500 + .030 * FINDGEN(92)
-
-