ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / LasPoint Class / Coordinate3D Property
Example

In This Topic
    Coordinate3D Property (LasPoint)
    In This Topic
    Gets a ArcGIS.Core.Geometry.Coordinate3D structure with the X, Y, and Z values. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public Coordinate3D Coordinate3D {get;}
    Public ReadOnly Property Coordinate3D As Coordinate3D
    Example
    Access LAS Points by ID
    // access by ID
    IReadOnlyList<ArcGIS.Core.Data.Analyst3D.LasPoint> pts = lasDataset.GetPointByID(123456);
    
    pts = lasDataset.GetPointByID(123456, envelope);
    ArcGIS.Core.Data.Analyst3D.LasPoint pt = pts.FirstOrDefault();
    
    var coords = pt.Coordinate3D;
    var mapPoint = pt.ToMapPoint();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also