GridDescriptiveStatisticsPercentCovered Method |
Computes the percentage of the grid that is covered based on whether each
individual grid point representing a given area is covered at any time.
Namespace:
AGI.Foundation.Coverage.FigureOfMerit
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double PercentCovered(
IEnumerable<CoverageGridPointWithResults> gridPoints
)
Public Shared Function PercentCovered (
gridPoints As IEnumerable(Of CoverageGridPointWithResults)
) As Double
public:
static double PercentCovered(
IEnumerable<CoverageGridPointWithResults^>^ gridPoints
)
static member PercentCovered :
gridPoints : IEnumerable<CoverageGridPointWithResults> -> float
Parameters
- gridPoints
- Type: System.Collections.GenericIEnumerableCoverageGridPointWithResults
The data on the coverage intervals to analyze.
Return Value
Type:
DoubleThe percentage of the grid which is covered at any time.
Exceptions Remarks This method only works with static grids.
See Also