Click or drag to resize

DiscreteCoverageDefinition.ComputeCoverageOverTheGrid Method (JulianDate, JulianDate, Duration)

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: 25.1.421.0 (25.1.421.0)
Syntax
public CoverageResults ComputeCoverageOverTheGrid(
	JulianDate start,
	JulianDate stop,
	Duration step
)

Parameters

start
Type: AGI.Foundation.Time.JulianDate
The start time of the interval to consider.
stop
Type: AGI.Foundation.Time.JulianDate
The stop time of the interval to consider.
step
Type: AGI.Foundation.Time.Duration
The stepsize used to sample access.

Return Value

Type: CoverageResults
The result of computing coverage over the grid.
Exceptions
ExceptionCondition
PropertyInvalidException Thrown if the Grid, GridPointService, or Filter property is null. Also thrown if either GridPointCreationCallback or GridPointPlaceholder is null, depending upon which is relevant.
InvalidOperationException

Thrown in several circumstances:

No Assets have been specified.

Duplicate Assets were specified.

No grid points were generated with the supplied definition of Grid.

See Also