class documentation

class BasePositioningReceiver: (source)

View In Hierarchy

A base positioning receiver.

This class would be a good base class for building positioning receivers. It implements the interface (so you don't have to) with stub methods.

People who want to implement positioning receivers should subclass this class and override the specific callbacks they want to handle.

def altitudeReceived(self, altitude): (source)
def beaconInformationReceived(self, beaconInformation): (source)
def climbReceived(self, climb): (source)
def headingReceived(self, heading): (source)
def positionErrorReceived(self, positionError): (source)
def positionReceived(self, latitude, longitude): (source)
def speedReceived(self, speed): (source)
def timeReceived(self, time): (source)