class IPositioningReceiver(Interface): (source)
Known implementations: twisted.positioning.base.BasePositioningReceiver
Method | altitudeReceived |
Method called when an altitude is received. |
Method | beaconInformationReceived |
Method called when positioning beacon information is received. |
Method | climbReceived |
Method called when the climb is received. |
Method | headingReceived |
Method called when a true heading is received. |
Method | positionErrorReceived |
Method called when position error is received. |
Method | positionReceived |
Method called when a position is received. |
Method | speedReceived |
Method called when the speed is received. |
Method | timeReceived |
Method called when time and date information arrives. |
Parameters | |
altitude:twisted.positioning.base.Altitude | The altitude. |
Parameters | |
beaconInformation:twisted.positioning.base.BeaconInformation | The beacon information. |
Parameters | |
climb:twisted.positioning.base.Climb | The climb of the mobile object. |
Parameters | |
heading:twisted.positioning.base.Heading | The heading. |
Parameters | |
positionError:twisted.positioning.base.PositionError | The position error. |
Parameters | |
latitude:twisted.positioning.base.Coordinate | The latitude of the received position. |
longitude:twisted.positioning.base.Coordinate | The longitude of the received position. |
Parameters | |
speed:twisted.positioning.base.Speed | The speed of a mobile object. |
Parameters | |
time:datetime.datetime | The date and time (expressed in UTC unless otherwise specified). |