NavigationAccuracyPredictedConstraintMaximumStepsize Property  | 
 
            Gets or sets the maximum step size allowed for sampling this constraint. By default, this is 60 seconds.
            
 
    Namespace: 
   AGI.Foundation.Access.Constraints
    Assembly:
   AGI.Foundation.Navigation (in AGI.Foundation.Navigation.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Duration MaximumStepsize { get; set; }Public Property MaximumStepsize As Duration
	Get
	Set
public:
property Duration MaximumStepsize {
	Duration get ();
	void set (Duration value);
}member MaximumStepsize : Duration with get, set
Property Value
Type: 
Duration
RemarksIn most cases, constraints use relative motion or derivative information to provide intelligent
            sampling.  In the case of navigation constraints, the functions are highly discontinuous as navigation satellites
            come in and out of view.  So, this step size represents the largest time interval which may be overlooked by the 
            sampling.  In other words, if the max step is 60 seconds, access may miss an interval less than 60 seconds in duration if the 
            function jumps without any indication of a boundary crossing into or leaving the interval. If two steps are on
            opposite sides of the boundary, the constraint will subsample to find the exact time.
See Also