ITelescopeV3AtPark Property
True if the telescope has been put into the parked state by the seee Park method. Set False by calling the Unpark() method.

Namespace: ASCOM.DeviceInterface
Assembly: ASCOM.DeviceInterfaces (in ASCOM.DeviceInterfaces.dll) Version: 6.0.0.0 (6.2.0.2774)
Syntax
bool AtPark { get; }

Property Value

Type: Boolean
Remarks

Must be implemented, must not throw a PropertyNotImplementedException.

AtPark is True when the telescope is in the parked state. This is achieved by calling the Park method. When AtPark is true, the telescope movement is stopped (or restricted to a small safe range of movement) and all calls that would cause telescope movement (e.g. slewing, changing Tracking state) must not do so, and must raise an error.

The telescope is taken out of parked state by calling the Unpark method. If the telescope cannot be parked, then AtPark must always return False.

This is only available for telescope InterfaceVersions 2 and 3

See Also