Provides access to members that provide information about a LAS file.
Members
| Name | Description | |
|---|---|---|
![]() |
GetDataExtent | The XYZ extent of points in the LAS file. |
![]() |
GetFlightDateJulian | The flight date based on the Julian calendar. |
![]() |
GetGeneratingSoftware | The software used to create the LAS file. |
![]() |
GetNumberOfPointRecords | The number of points in the LAS file. |
![]() |
GetNumberOfPointsByReturn | The number of points in the LAS file based on the specified LiDAR return number. |
![]() |
GetPointDataFormat | The record format for points in the LAS file |
![]() |
GetSpatialReference | The spatial reference of the LAS file. |
![]() |
GetSystemID | The hardware system used to collect the LiDAR data in the LAS file. |
![]() |
GetVersion | The version of the LAS file. |
![]() |
GetYear | The year the data in the LAS file was collected. |
![]() |
Init | Used to set the name of the LAS file for which information is to be retrieved. |
ITerrainLasDataInfo.GetDataExtent Method
The XYZ extent of points in the LAS file.
Public Function GetDataExtent ( _
) As IEnvelope
public IEnvelope GetDataExtent (
);
ITerrainLasDataInfo.GetFlightDateJulian Method
The flight date based on the Julian calendar.
Public Function GetFlightDateJulian ( _
) As Integer
public int GetFlightDateJulian (
);
ITerrainLasDataInfo.GetGeneratingSoftware Method
The software used to create the LAS file.
Public Function GetGeneratingSoftware ( _
) As String
public string GetGeneratingSoftware (
);
ITerrainLasDataInfo.GetNumberOfPointRecords Method
The number of points in the LAS file.
Public Function GetNumberOfPointRecords ( _
) As Integer
public int GetNumberOfPointRecords (
);
ITerrainLasDataInfo.GetNumberOfPointsByReturn Method
The number of points in the LAS file based on the specified LiDAR return number.
Public Function GetNumberOfPointsByReturn ( _
ByVal ReturnNumber As Integer _
) As Integer
public int GetNumberOfPointsByReturn (
int ReturnNumber
);
ITerrainLasDataInfo.GetPointDataFormat Method
The record format for points in the LAS file
Public Function GetPointDataFormat ( _
) As Integer
public int GetPointDataFormat (
);
ITerrainLasDataInfo.GetSpatialReference Method
The spatial reference of the LAS file.
Public Function GetSpatialReference ( _
) As ISpatialReference
public ISpatialReference GetSpatialReference (
);
ITerrainLasDataInfo.GetSystemID Method
The hardware system used to collect the LiDAR data in the LAS file.
Public Function GetSystemID ( _
) As String
public string GetSystemID (
);
ITerrainLasDataInfo.GetVersion Method
The version of the LAS file.
Public Sub GetVersion ( _
ByRef pMajor As Integer, _
ByRef pMinor As Integer _
)
public void GetVersion (
ref int pMajor,
ref int pMinor
);
ITerrainLasDataInfo.GetYear Method
The year the data in the LAS file was collected.
Public Function GetYear ( _
) As Integer
public int GetYear (
);
ITerrainLasDataInfo.Init Method
Used to set the name of the LAS file for which information is to be retrieved.
Public Sub Init ( _
ByVal lasFileName As String _
)
public void Init (
string lasFileName
);
Classes that implement ITerrainLasDataInfo
| Classes | Description |
|---|---|
| TerrainLasDataImporter | Esri Terrain LAS Data Importer object. |
