Dear all,
Iam new to the IDL and I used it in ENVI to perform the Radiometric Calibration.
By using the tool in GUI there is an option to choose from the Output Interleave formats (BSQ, BIL, BIP). However using IDL the option of Interleave formats is not valid.
Can somebody help me and explain what I should do to have the output in BIL or BIP interleaves?
Here is the example code taken from the ENVI web:
e=envi()
Task1=ENVITask(´RadiometricCalibration´)
File = Filepath('qb_boulder_msi', Subdir=['data'], $
Root_Dir=e.Root_Dir)
Raster = e.OpenRaster('c:temp\r1.tif'')
Task1 = ENVITask('RadiometricCalibration')
Task1.Input_Raster = Raster
Task1.Output_Raster_URI = ('c:temp\t1_rad.tif')Task1.Execute
Now how I can the ENVITask(´RadiometricCalibration´) to save the raster in BIL, or BIP format (BSQ is the default)?
Best,
Rob