def position(self): """Return the location where the record was recorded.""" return idbutils.Location(self.position_lat, self.position_long)
def stop_loc(self): """Return the ending location of activity segment as a Location instance.""" return idbutils.Location(self.stop_lat, self.stop_long)
def start_loc(self): """Return the lap start location.""" return idbutils.Location(self.start_lat, self.start_long)