This task creates pyramid files for rasters. Pyramids are copies of the data at various reduced resolutions, used to speed image display.

Example


; Start the application
e = ENVI()
 
; Open an input file
File = Filepath('qb_boulder_msi', Subdir=['data'], $
  Root_Dir=e.Root_Dir)
Raster = e.OpenRaster(File)
 
; Get the task from the catalog of ENVITasks
Task = ENVITask('BuildRasterPyramids')
 
; Define inputs
Task.INPUT_RASTER = Raster
 
; Run the task
Task.Execute
 
; Verify that the pyramid exists
Print, Raster.PYRAMID_EXISTS

Syntax


Result = ENVITask('BuildRasterPyramids')

Input parameters (Set, Get): INPUT_RASTERS, INCLUDE_FULL_RESOLUTION

Output parameters (Get only): None

Parameters marked as "Set" are those that you can set to specific values. You can also retrieve their current values any time. Parameters marked as "Get" are those whose values you can retrieve but not set.

Input Parameters


INPUT_RASTERS (required)

Specify an array of rasters from which to build the pyramid files.

INCLUDE_FULL_RESOLUTION (optional)

Set this parameter to have the pyramid include the full-resolution level.

Methods


Execute

Parameter

ParameterNames

Properties


DESCRIPTION

DISPLAY_NAME

NAME

REVISION

TAGS

Version History


ENVI 5.6.3

Introduced