This task reprojects a series of rasters to a common spatial grid, using the spatial reference of a selected raster index within the series.

Example


This example uses sample images that are available from our ENVI Tutorials web page. Click the Landsat Case Studies link to download the .zip file to your machine, then unzip the files. Update the file location with your own directory.

Note: This example is only meant to show how the task works. It is not a realistic scenario because all of the Landsat images have the same pixel size (30 meters) and the same number of rows and columns.

; Start the application
e = ENVI()
 
; Select input rasters
Files = FILE_SEARCH('C:\Data', 'LasVegas*.dat')
numRasters = N_Elements(Files)
rasters = ObjArr(numRasters)
FOR i=0, (numRasters-1) DO $
  rasters[i] = e.OpenRaster(Files[i])
   
; Get the build raster series task from the catalog of ENVITasks
Task = ENVITask('BuildRasterSeries')
 
; Define inputs
Task.INPUT_RASTERS = rasters
 
; Run the task
Task.Execute
Series = Task.OUTPUT_RASTERSERIES
 
; Get the task from the catalog of ENVITasks
RegridTask = ENVITask('RegridRasterSeriesByIndex')
 
; Define inputs
RegridTask.INPUT_RASTERSERIES = Series
RegridTask.RASTER_INDEX = 2
 
; Run the task
RegridTask.Execute
 
; Get the collection of data objects currently available in the Data Manager
DataColl = e.Data
 
; Add the output to the Data Manager
DataColl.Add, RegridTask.OUTPUT_RASTERSERIES
 
; Display the result
View = e.GetView()
Layer = View.CreateLayer(RegridTask.OUTPUT_RASTERSERIES)

Syntax


Result = ENVITask('RegridRasterSeriesByIndex')

Input properties (Set, Get):INPUT_RASTERSERIES, OUTPUT_RASTERSERIES_URI, RASTER_INDEX, RESAMPLING

Output properties (Get only): OUTPUT_RASTERSERIES

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_RASTERSERIES (required)

Specify a raster series to reproject.

OUTPUT_RASTERSERIES

This is a reference to the output raster series.

OUTPUT_RASTERSERIES_URI (optional)

Specify a string with the fully-qualified path and filename for OUTPUT_RASTERSERIES.

RASTER_INDEX (optional)

Specify a zero-based raster index in the series whose spatial reference will define the spatial grid parameters for the regridding. If you do not set this property, the first raster in the series will be used by default.

RESAMPLING (optional)

Specify the resampling method.

  • Nearest Neighbor (default): Uses the nearest pixel without any interpolation.
  • Bilinear: Performs a linear interpolation using four pixels to resample.
  • Cubic Convolution: Uses 16 pixels to approximate the sinc function using cubic polynomials to resample the image.

Version History


ENVI 5.2

Introduced

ENVI 5.5 Replaced INPUT_RASTERSERIES_URI with INPUT_RASTERSERIES

API Version


4.2

See Also


ENVITask, RegridRasterSeries Task, RegridRasterSeriesByIntersection Task, RegridRasterSeriesByUnion Task, ENVIGridDefinition, BuildRasterSeries Task, BuildTimeSeries Task, ENVIRasterSeries, ENVIRasterSeriesLayer