ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / LasPointPlaneSelectionFilter Class / PlaneTolerance Property
Example

In This Topic
    PlaneTolerance Property
    In This Topic
    Gets and sets the plane tolerance value in meters. The default value is 0.152 meters.
    Syntax
    Public Property PlaneTolerance As Double
    public double PlaneTolerance {get; set;}
    Example
    Select using LasPointPlaneSelectionFilter
    {
      // must be on MCT 
    
      var planeFilter = new LasPointPlaneSelectionFilter();
      planeFilter.VisiblePoints = true;
      planeFilter.ClassCodes = new List<int>();  // empty list means all classification codes
      planeFilter.FilterGeometry = polygon;
    
      planeFilter.ClusteringDistance = 0.3; // meters
      planeFilter.MaximumDistance = 500;
      planeFilter.PlaneTolerance = 0.152; // meters
    
      var planeSelCount = await lasDatasetLayer.SelectAsync(planeFilter, SelectionCombinationMethod.New);
    }
    Requirements

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

    ArcGIS Pro version: 3.6 or higher.
    See Also