ContinuousCoverageDefinitionComputeCoverageOverTheGrid Method (TimeIntervalCollection, ITrackCalculationProgress) |
Computes the
CoverageResults which stores the results of this calculation for the whole grid.
Results for each grid point are stored in a
CoverageQueryResult, the collection of which is contained by the overall result.
Call this method after setting up the
Grid and adding the desired
Assets to the definition.
Namespace:
AGI.Foundation.Coverage
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public CoverageResults ComputeCoverageOverTheGrid(
TimeIntervalCollection consideredIntervals,
ITrackCalculationProgress tracker
)
Public Function ComputeCoverageOverTheGrid (
consideredIntervals As TimeIntervalCollection,
tracker As ITrackCalculationProgress
) As CoverageResults
public:
CoverageResults^ ComputeCoverageOverTheGrid(
TimeIntervalCollection^ consideredIntervals,
ITrackCalculationProgress^ tracker
)
member ComputeCoverageOverTheGrid :
consideredIntervals : TimeIntervalCollection *
tracker : ITrackCalculationProgress -> CoverageResults
Parameters
- consideredIntervals
- Type: AGI.Foundation.TimeTimeIntervalCollection
The time intervals over which coverage is to be computed. - tracker
- Type: AGI.FoundationITrackCalculationProgress
A tracker which can track the progress of the calculation and provides a way to smoothly cancel execution.
Return Value
Type:
CoverageResultsThe result of computing coverage over the grid.
Exceptions Remarks If a cancellation request is made on the tracker during the calculation, the result returned will be null.
See Also