The Display method opens an ENVIPointCloud object in the ENVI LiDAR application.

Note: This method is supported only on Windows.

Example


; Get the ENVIPointCloudViewer application
e = ENVI()
elv = ENVIPointCloudViewer()
 
; Open the las file
file = FILEPATH('DataSample.las', ROOT_DIR=e.ROOT_DIR, $
  SUBDIRECTORY = ['data','lidar'])
pointcloud = e.OpenPointCloud(file, $
  PROJECT_URI=Filepath('DataSample', /TMP))
 
; Display the las file
elv.Display, pointcloud

Syntax


ENVIPointCloudViewer.Display, PointCloud

Arguments


PointCloud

An ENVIPointCloud object.

Keywords


None.

Version History


ENVI 5.3

Introduced

API Version


4.2

See Also


ENVIPointCloud, ENVIPointCloudViewer