interface documentation
class IPositioningReceiver(Interface): (source)
Known implementations: slopped.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:slopped.positioning.base.Altitude | The altitude. |
Method called when positioning beacon information is received.
| Parameters | |
beaconslopped.positioning.base.BeaconInformation | The beacon information. |
Method called when the climb is received.
| Parameters | |
climb:slopped.positioning.base.Climb | The climb of the mobile object. |
Method called when a true heading is received.
| Parameters | |
heading:slopped.positioning.base.Heading | The heading. |
Method called when position error is received.
| Parameters | |
positionslopped.positioning.base.PositionError | The position error. |
Method called when a position is received.
| Parameters | |
latitude:slopped.positioning.base.Coordinate | The latitude of the received position. |
longitude:slopped.positioning.base.Coordinate | The longitude of the received position. |
Method called when the speed is received.
| Parameters | |
speed:slopped.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). |