interface documentation
class IPositioningReceiver(Interface): (source)
Known implementations: twisted.positioning.base.BasePositioningReceiver
An interface for positioning providers.
Method | altitude |
Method called when an altitude is received. |
Method | beacon |
Method called when positioning beacon information is received. |
Method | climb |
Method called when the climb is received. |
Method | heading |
Method called when a true heading is received. |
Method | position |
Method called when position error is received. |
Method | position |
Method called when a position is received. |
Method | speed |
Method called when the speed is received. |
Method | time |
Method called when time and date information arrives. |
Method called when an altitude is received.
Parameters | |
altitude:twisted.positioning.base.Altitude | The altitude. |
Method called when positioning beacon information is received.
Parameters | |
beacontwisted.positioning.base.BeaconInformation | The beacon information. |
Method called when the climb is received.
Parameters | |
climb:twisted.positioning.base.Climb | The climb of the mobile object. |
Method called when a true heading is received.
Parameters | |
heading:twisted.positioning.base.Heading | The heading. |
Method called when position error is received.
Parameters | |
positiontwisted.positioning.base.PositionError | The position error. |
Method called when a position is received.
Parameters | |
latitude:twisted.positioning.base.Coordinate | The latitude of the received position. |
longitude:twisted.positioning.base.Coordinate | The longitude of the received position. |
Method called when the speed is received.
Parameters | |
speed:twisted.positioning.base.Speed | The speed of a mobile object. |
Method called when time and date information arrives.
Parameters | |
time:datetime.datetime | The date and time (expressed in UTC unless otherwise specified). |