The GetSpectrum function method returns the details of a specified spectrum.
This function method has been deprecated. Use the ENVISpectralLibrary::GetSpectralSignature function method instead.
Example
e = ENVI(/HEADLESS)
specLibFile = FILEPATH('veg_1dry.sli', ROOT_DIR=e.ROOT_DIR, $
SUBDIR=['resource', 'speclib', 'veg_lib'])
specLib = ENVISpectralLibrary(specLibFile)
Print, specLib.SPECTRA_NAMES
PinyonPineSap = specLib.GetSpectrum('CDE054: Pinyon Pine (Sap)')
y = PinyonPineSap.Spectrum
x = PinyonPineSap.Wavelengths
specLibPlot = PLOT(x,y, 'r2', $
TITLE='CDE054: Pinyon Pine (Sap)', $
XTITLE='Wavelengths (um)', $
YTITLE='Data Value')
Syntax
Result = ENVISpectralLibrary.GetSpectrum(SpectrumName [, ERROR=variable])
Return Value
This method returns an IDL dictionary with the following keys:
- Name: a string with the name of the spectrum
- Spectrum: an array of spectrum values
- Wavelengths: an array of the wavelengths of the spectrum
- Wavelength_Units: wavelength units
- Reflectance_Scale_Factor: the scale factor to use for translating the spectrum to reflectance
- Y_Range: the range of spectrum values
Arguments
SpectrumName
Specify a string with the spectrum name to query within an ENVISpectralLibrary. Issuing a PRINT command on the library's SPECTRA_NAMES property is a convenient way to get the spectra names.
Keywords
ERROR
Set this keyword to a named variable that will contain any error message issued during execution of this routine. If no error occurs, the ERROR variable will be set to a null string (''). If an error occurs and the routine is a function, then the function result will be undefined.
When this keyword is not set and an error occurs, ENVI returns to the caller and execution halts. In this case, the error message is contained within !ERROR_STATE and can be caught using IDL's CATCH routine. See IDL Help for more information on !ERROR_STATE and CATCH.
See Manage Errors for more information on error handling in ENVI programming.
Version History
ENVI 5.3 |
Introduced |
ENVI 6.1 |
Deprecated |
API Version
4.3
See Also
ENVISpectralLibrary, GetSpectrumFromLibrary Task, QuerySpectralLibrary Task, ResampleSpectrum Task