GridDescriptiveStatisticsInstantaneousWeightCovered Method |
Computes the total weight of the points on the grid that are covered at a given 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 InstantaneousWeightCovered(
IEnumerable<CoverageGridPointWithResults> gridPoints,
JulianDate time
)
Public Shared Function InstantaneousWeightCovered (
gridPoints As IEnumerable(Of CoverageGridPointWithResults),
time As JulianDate
) As Double
public:
static double InstantaneousWeightCovered(
IEnumerable<CoverageGridPointWithResults^>^ gridPoints,
JulianDate time
)
static member InstantaneousWeightCovered :
gridPoints : IEnumerable<CoverageGridPointWithResults> *
time : JulianDate -> float
Parameters
- gridPoints
- Type: System.Collections.GenericIEnumerableCoverageGridPointWithResults
The coverage grid points. These points must contain results. - time
- Type: AGI.Foundation.TimeJulianDate
The time of interest at which to compute the coverage area.
Return Value
Type:
DoubleThe total weight of the covered grid points at the specified time.
Remarks For grids that use geometric values for the statistical weight this value could be area or volume covered, for example.
See Also