This task creates individual ROIs from each geometry record in a vector.
Example
e = ENVI()
File = Filepath('qb_boulder_msi_vectors.shp', Subdir=['data'], $
Root_Dir=e.Root_Dir)
Vector = e.OpenVector(File)
Task = ENVITask('VectorRecordsToSeparateROI')
Task.INPUT_VECTOR = Vector
Task.Execute
File = Filepath('qb_boulder_msi', ROOT_DIR=e.Root_Dir, $
SUBDIRECTORY=['data'])
Raster = e.OpenRaster(File)
View = e.GetView()
Layer = View.CreateLayer(Raster)
File = Task.OUTPUT_ROI_URI
rois = e.OpenRoi(File)
roiLayers = !NULL
FOREACH roi, rois DO $
roiLayers = [roiLayers, Layer.AddRoi(roi)]
Syntax
Result = ENVITask('VectorRecordsToSeparateROI')
Input properties (Set, Get): INPUT_VECTOR, OUTPUT_ROI_URI
Output properties (Get only): OUTPUT_ROI
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_VECTOR (required)
Specify an input ENVIVector that contains the geometry records.
OUTPUT_ROI
This is a reference to the output ROI.
OUTPUT_ROI_URI (optional)
Specify a string with the fully qualified path and filename for OUTPUT_ROI.
Version History
API Version
4.3
See Also
ENVITask, ENVIVector, VectorRecordsToROI Task, VectorAttributeToROIsTask