| 
									 Apologies for the basic question, I am new to the ENVI API.      I would like to import multiple rasters using SelectInputData(/ALLOW_MULTIPLE).      If I have something like this:      Flats = UI.SelectInputData(/RASTER, /ALLOW_MULTIPLE, /TITLE 'Select  Frames lowest to highest')      Is it necessary to then do:     L9 = e.OpenRaster(Flats[0])     L8 = e.OpenRaster(Flats[1])     L7 = e.OpenRaster(Flats[2])      Because the input to OpenRaster needs to be a scalar string, which the Flats[0]... etc is not. Are the rasters considered 'open' once they are stored in the Flats array?       Thanks. 
									
								 |