This document is archived and information here might be outdated.  Recommended version.


ILasDataset.Export Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IL > ILasDataset Interface > ILasDataset.Export Method
ArcGIS Developer Help

ILasDataset.Export Method

Writes a new, optionally modified, version of the specified LAS file.

[Visual Basic .NET]
Public Sub Export ( _
    ByVal pTrackCancel As ITrackCancel, _
    ByVal FileIndex As Integer, _
    ByVal pFilter As ILasPointFilter, _
    ByVal newFileName As String, _
    ByVal pNewSpatialReference As ISpatialReference, _
    ByVal bProject As Boolean, _
    ByVal bDropVLRs As Boolean _
)
[C#]
public void Export (
    ITrackCancel pTrackCancel,
    int FileIndex,
    ILasPointFilter pFilter,
    string newFileName,
    ISpatialReference pNewSpatialReference,
    bool bProject,
    bool bDropVLRs
);
[C++]
HRESULT Export(
  ITrackCancel* pTrackCancel,
  long FileIndex,
  ILasPointFilter* pFilter,
  BSTR newFileName,
  ISpatialReference* pNewSpatialReference,
  VARIANT_BOOL bProject,
  VARIANT_BOOL bDropVLRs
);
[C++]
Parameters
pTrackCancel [in]

pTrackCancel is a parameter of type ITrackCancel* FileIndex [in]
FileIndex is a parameter of type long pFilter [in]
pFilter is a parameter of type ILasPointFilter* newFileName [in]
newFileName is a parameter of type BSTR pNewSpatialReference [in]
pNewSpatialReference is a parameter of type ISpatialReference* bProject [in]
bProject is a parameter of type bool bDropVLRs [in]
bDropVLRs is a parameter of type bool

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Export allows you to create a new LAS file with a subset of points that match a desired criteria. This method can also be used to rectify geo referencing errors in LAS files.
pTrackCancel is a reference to a cancel tracker object that can be used to monitor progress and/or cancel the process. This can be set to a NULL pointer ('Nothing' in VB) if desired.
FileIndex is the input index of the LAS file.
pFilter is point filter that allows you to select the desired points. If set to NULL, all the points in the input LAS file will be written to the output file.
newFileName is the name of the output LAS file.
pNewSpatialReference is the new spatial reference object. The data will not actually be projected unless bProject is set to TRUE, otherwise the spatial reference is only assigned as a property of the output (to set a correct spatial reference in the output if the input spatial reference is missing or incorrect).
bProject indicates whether the input point records are to be projected to the new spatial reference.
bDropVLRs indicates if the variable length records are written to the output las file or whether they are to be ignored.

Notes:
- Does not write out waveform data, if present.
-

Remarks


[C#]
[C++]
[Visual Basic .NET]

See Also

ILasDataset Interface