GridDescriptiveStatisticsPercentAccumulated Method |
Given a time after a start time, computes the highest percentage of the grid
which has been covered at any one time after the start and before the time of interest.
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[] PercentAccumulated(
IEnumerable<CoverageGridPointWithResults> gridPoints,
JulianDate start,
JulianDate stop,
Duration step
)
Public Shared Function PercentAccumulated (
gridPoints As IEnumerable(Of CoverageGridPointWithResults),
start As JulianDate,
stop As JulianDate,
step As Duration
) As Double()
public:
static array<double>^ PercentAccumulated(
IEnumerable<CoverageGridPointWithResults^>^ gridPoints,
JulianDate start,
JulianDate stop,
Duration step
)
static member PercentAccumulated :
gridPoints : IEnumerable<CoverageGridPointWithResults> *
start : JulianDate *
stop : JulianDate *
step : Duration -> float[]
Parameters
- gridPoints
- Type: System.Collections.GenericIEnumerableCoverageGridPointWithResults
The coverage grid which must contain the coverage intervals
on each of the grid points. - start
- Type: AGI.Foundation.TimeJulianDate
The start of the coverage accumulation. - stop
- Type: AGI.Foundation.TimeJulianDate
The time of interest at which to report the accumulated percent coverage. - step
- Type: AGI.Foundation.TimeDuration
The time step at which to sample the coverage intervals.
Return Value
Type:
DoubleThe accumulated percent of grid which has been covered.
See Also