GridDescriptiveStatistics.PercentCovered 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.3.420.0 (24.3.420.0)
Syntaxpublic 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.Generic.IEnumerable<CoverageGridPointWithResults>
The data on the coverage intervals to analyze.
Return Value
Type:
DoubleThe percentage of the grid which is covered at any time.
Exceptions
RemarksThis method only works with static grids.
See Also