ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / LasPointPipelineSelectionFilter Class / MinimumLength Property
Example

In This Topic
    MinimumLength Property
    In This Topic
    Gets and sets the minimum length value in meters. This is the minimum length that the modeling will correct for wind with power lines longer than this distance. The default value is 20 meters.
    Syntax
    Public Property MinimumLength As Double
    public double MinimumLength {get; set;}
    Remarks
    This value is only applied if ApplyWindCorrection is true.
    Example
    Select using LasPointPipelineSelectionFilter
    {
      // must be on MCT 
    
      var pipelineFilter = new LasPointPipelineSelectionFilter();
    
      pipelineFilter.VisiblePoints = true;
      pipelineFilter.ClassCodes = new List<int>();  // empty list means all classification codes
      pipelineFilter.FilterGeometry = polygon;
    
      // configure a few of the properties and accept defaults for others
      pipelineFilter.ApplyWindCorrection = true;
      pipelineFilter.MinimumLength = 25;  // meters
    
      var pipelineSelCount = await lasDatasetLayer.SelectAsync(pipelineFilter, SelectionCombinationMethod.New);
    }
    Requirements

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

    ArcGIS Pro version: 3.6 or higher.
    See Also