Provides access to members that handle importing terrain source data in LAS format.
Members
| Name | Description | |
|---|---|---|
![]() |
AddFile | Include a specific file to be loaded upon Import. |
![]() |
AddFolder | Include a folder, and potentially subfolders, to be loaded upon import. |
![]() |
AddProperty | Used to indicate which, if any, LiDAR properties to retain and load into the target feature class in a BLOB field. |
![]() |
AddReturnNumber | Used to indicate which points to extract from the LAS files based on their LiDAR return number. |
![]() |
GetDataExtent | The XYZ extent of data contained in files/folders to be added. |
![]() |
GetPointCount | The number of points in the files/folders to be added. |
![]() |
Import | Loads the specified data, based on the current properties, into the target feature class. |
![]() |
MaxShapePointCount | The maximum number of points loaded into individual multipoint shapes. |
![]() |
OverwriteMaxShapePointCount | Changes the default maximum number of points loaded into individual multipoint shapes. |
![]() |
SetClassCodes | Used to indicate which points to load based on one or more LAS classification codes. |
![]() |
SetEmpty | Clears all properties. |
![]() |
SetSourceDataSpatialReference | Set source data's spatial reference. |
ITerrainLasDataImporter.AddProperty Method
Used to indicate which, if any, LiDAR properties to retain and load into the target feature class in a BLOB field.
Public Sub AddProperty ( _
ByVal property As esriTerrainLasDataPropertyType, _
ByVal FieldName As String _
)
public void AddProperty (
esriTerrainLasDataPropertyType property,
string FieldName
);
ITerrainLasDataImporter.AddReturnNumber Method
Used to indicate which points to extract from the LAS files based on their LiDAR return number.
Public Sub AddReturnNumber ( _
ByVal ReturnNumber As esriTerrainLasReturnType _
)
public void AddReturnNumber (
esriTerrainLasReturnType ReturnNumber
);
ITerrainLasDataImporter.SetClassCodes Method
Used to indicate which points to load based on one or more LAS classification codes.
Public Sub SetClassCodes ( _
ByVal pCodes As ILongArray _
)
public void SetClassCodes (
ILongArray pCodes
);
Inherited Interfaces
| Interfaces | Description |
|---|---|
| ITerrainDataImporter | Provides access to members that handle importing terrain source data. |
Classes that implement ITerrainLasDataImporter
| Classes | Description |
|---|---|
| TerrainLasDataImporter | Esri Terrain LAS Data Importer object. |

