The E3DProductsInfo object stores the fully-qualified file names for all products generated by ENVI LiDAR processing. Use the E3De::GetProductsInfo method to get the E3DProductsInfo object for the specified LiDAR data.

This method has been deprecated. Use ENVIPointCloudProductsInfo instead.

Example


; Create a headless instance
e = E3De(/HEADLESS)
 
; Open a las file
file = FILEPATH('DataSample.las', ROOT_DIR=e.ROOT_DIR, $
  SUBDIRECTORY = 'DataSample')
lidar = e.OpenLidar(file, AUXILIARY_URI='C:\lidar\DataSample')
 
; Set the production parameters
prodParams = e.GetProductionParameters(lidar, ERROR=error)
prodParams.BUILDINGS_GENERATE = 1
prodParams.DEM_GENERATE = 1
prodParams.DSM_GENERATE = 1
prodParams.ORTHOPHOTO_GENERATE = 1
prodParams.POWERLINES_GENERATE = 1
prodParams.TREES_GENERATE = 1
 
; Generate the products
e.GenerateProducts, lidar, prodParams, ERROR=error
 
; Get the generated products information
productsInfo = e.GetProductsInfo(lidar, ERROR=error)
print, productsInfo
 
; Close any open lidar objects
e.Close

Properties


The products returned will refer to the most recent products generated by ENVI LiDAR processing.

BUILDINGS_FILENAME

A string containing the fully-qualified filename for the Buildings product.

BUILDING_PERIMETERS_FILENAME

A string containing the fully-qualified filename for the Building Perimeters product. For details on the attributes written to the building perimeter shapefile, see Building Perimeter Attributes.

DEM_CONTOURS_FILENAME

A string containing the fully-qualified filename for the DEM Contours product.

DEM_FILENAME

A string containing the fully-qualified filename for the DEM product.

DEM_TIN_FILENAME (also known as Terrain TIN)

A string containing the fully-qualified filename for the DEM TIN product.

DSM_FILENAME

A string containing the fully-qualified filename for the DSM product.

ORTHOPHOTO_FILENAME

A string containing the fully-qualified filename for the Orthophoto product.

POINTCLOUD_FILENAME

An array of strings containing the fully-qualified filenames for the Point Cloud products.

POWERLINES_FILENAME

A string containing the fully-qualified filename for the Power Lines product.

TREES_FILENAME

A string containing the fully-qualified filename for the Trees product.

Version History


3.2

Introduced

ENVI 5.3 Obsolete

See Also


E3De::GetProductsInfo