ITelescopeV3DeclinationRate Property |
The declination tracking rate (arcseconds per second, default = 0.0)
Namespace: ASCOM.DeviceInterfaceAssembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntax double DeclinationRate { get; set; }
Property DeclinationRate As Double
Get
Set
property double DeclinationRate {
double get ();
void set (double value);
}
Property Value
Type:
DoubleExceptions Exception | Condition |
---|
PropertyNotImplementedException | If DeclinationRate Write is not implemented. |
Remarks DeclinationRate Read must be implemented and must not throw a PropertyNotImplementedException.
DeclinationRate Write can throw a PropertyNotImplementedException.
This property, together with
RightAscensionRate, provides support for "offset tracking".
Offset tracking is used primarily for tracking objects that move relatively slowly against the equatorial coordinate system.
It also may be used by a software guiding system that controls rates instead of using the
PulseGuide method.
NOTES:
- The property value represents an offset from zero motion.
- If CanSetDeclinationRate is False, this property will always return 0.
- To discover whether this feature is supported, test the CanSetDeclinationRate property.
- The supported range of this property is telescope specific, however, if this feature is supported,
it can be expected that the range is sufficient to allow correction of guiding errors caused by moderate misalignment
and periodic error.
- If this property is non-zero when an equatorial slew is initiated, the telescope should continue to update the slew
destination coordinates at the given offset rate.
- This will allow precise slews to a fast-moving target with a slow-slewing telescope.
- When the slew completes, the TargetRightAscension and TargetDeclination properties should reflect the final (adjusted) destination.
This is not a required feature of this specification, however it is desirable.
See Also