This task exports a vector dataset to Esri's File Geodatabase (FileGDB) format.
Example
e = ENVI()
File = Filepath('qb_boulder_msi_vectors.shp', Subdir=['data'], $
Root_Dir=e.Root_Dir)
Vector = e.OpenVector(File)
Task = ENVITask('ExportVectorToFileGDB')
Task.INPUT_VECTOR = Vector
Task.OUTPUT_URI = e.GetTemporaryFilename('.gdb')
Task.Execute
Syntax
Result = ENVITask('ExportVectorToFileGDB')
Input parameters (Set, Get): INPUT_VECTOR, OUTPUT_LAYER_NAME, OUTPUT_URI
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_VECTOR (required)
Specify an ENVIVector to convert to FileGDB file.
OUTPUT_LAYER_NAME (optional)
Specify the layer name to be created in the output dataset.
OUTPUT_URI (optional)
Specify a string with the fully-qualified path and filename for the FileGDB file.
Methods
Execute
Parameter
ParameterNames
Properties
DESCRIPTION
DISPLAY_NAME
NAME
REVISION
TAGS
Version History
See Also
ENVITask, ENVIVector