ArcGIS Pro 3.7 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 ReadOnly Property Coordinate3D As Coordinate3D
    public Coordinate3D Coordinate3D {get;}
    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 coordsLasPoint = pt.Coordinate3D;
      var mapPointLas = pt.ToMapPoint();
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.2 or higher.
    See Also