This task retrieves the value of a given raster metadata key.
Example
e = ENVI(/HEADLESS)
File = FILEPATH('qb_boulder_msi', ROOT_DIR=e.ROOT_DIR, $
SUBDIRECTORY = ['data'])
Raster = e.OpenRaster(File)
Task = ENVITask('RasterMetadataItem')
Task.INPUT_RASTER = Raster
Task.KEY = 'wavelength'
Task.Execute
PRINT, Task.VALUE.VALUE
IDL prints:
485.00000 560.00000 660.00000 830.00000
Syntax
Result = ENVITask('RasterMetadataItem')
Input properties (Set, Get): INPUT_RASTER, KEY
Output properties (Get only): VALUE
Properties marked as "Set" are those that you can set to specific values. You can also retrieve their current values any time. Properties marked as "Get" are those whose values you can retrieve but not set.
Methods
This task inherits the following methods from ENVITask:
AddParameter
Execute
Parameter
ParameterNames
RemoveParameter
Properties
This task inherits the following properties from ENVITask:
COMMUTE_ON_DOWNSAMPLE
COMMUTE_ON_SUBSET
DESCRIPTION
DISPLAY_NAME
NAME
REVISION
TAGS
This task also contains the following properties:
INPUT_RASTER (required)
Specify an raster to retrieve a metadata item from.
KEY (required)
Specify the string key of the metadata to retrieve. See The ENVI Header Format for a list of standard metadata tags in ENVI-format rasters.
VALUE
The value of the specified metadata key.
Version History
API Version
4.3
See Also
ENVITask, ENVISpectralLibrary, QuerySpectralLibrary Task, ResampleSpectrum Task, ENVIGetSpectrumFromLibrary