GridDescriptiveStatistics.InstantaneousWeightCovered 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.3.420.0 (24.3.420.0)
Syntaxpublic 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.Generic.IEnumerable<CoverageGridPointWithResults>
The coverage grid points. These points must contain results. - time
- Type: AGI.Foundation.Time.JulianDate
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.
RemarksFor grids that use geometric values for the statistical weight this value could be area or volume covered, for example.
See Also