GridDescriptiveStatisticsWeightOfCoveredPoints Method |
Computes the total weight of the points on the grid which have been covered.
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 WeightOfCoveredPoints(
IEnumerable<CoverageGridPointWithResults> gridPoints
)
Public Shared Function WeightOfCoveredPoints (
gridPoints As IEnumerable(Of CoverageGridPointWithResults)
) As Double
public:
static double WeightOfCoveredPoints(
IEnumerable<CoverageGridPointWithResults^>^ gridPoints
)
static member WeightOfCoveredPoints :
gridPoints : IEnumerable<CoverageGridPointWithResults> -> float
Parameters
- gridPoints
- Type: System.Collections.GenericIEnumerableCoverageGridPointWithResults
The coverage grid points. These points must contain results.
Return Value
Type:
DoubleThe total weight of the covered grid points.
Exceptions Remarks This method only works with static grids. For grids that use geometric values for the statistical weight this value could be area or volume covered, for example.
See Also