reduce debugging output

This commit is contained in:
Jakob Ketterl 2019-08-15 23:33:02 +02:00
parent 46ac0ecc77
commit 5a7ef65c56

View File

@ -61,7 +61,7 @@ class AprsParser(object):
# TODO how can we tell if this is an APRS frame at all? # TODO how can we tell if this is an APRS frame at all?
aprsData = self.parseAprsData(data) aprsData = self.parseAprsData(data)
logger.debug(aprsData) logger.debug("decoded APRS data: %s", aprsData)
if "lat" in aprsData and "lon" in aprsData: if "lat" in aprsData and "lon" in aprsData:
loc = LatLngLocation( loc = LatLngLocation(
aprsData["lat"], aprsData["lon"], aprsData["comment"] if "comment" in aprsData else None aprsData["lat"], aprsData["lon"], aprsData["comment"] if "comment" in aprsData else None
@ -103,7 +103,6 @@ class AprsParser(object):
return aprsData return aprsData
information = information.decode("us-ascii") information = information.decode("us-ascii")
logger.debug(information)
if information[0] == "!" or information[0] == "=": if information[0] == "!" or information[0] == "=":
# position without timestamp # position without timestamp
@ -220,16 +219,11 @@ class MicEParser(object):
information = data["data"] information = data["data"]
destination = data["destination"] destination = data["destination"]
logger.debug(destination)
rawLatitude = [self.extractNumber(c) for c in destination[0:6]] rawLatitude = [self.extractNumber(c) for c in destination[0:6]]
logger.debug(rawLatitude)
lat = self.listToNumber(rawLatitude[0:2]) + self.listToNumber(rawLatitude[2:6]) / 6000 lat = self.listToNumber(rawLatitude[0:2]) + self.listToNumber(rawLatitude[2:6]) / 6000
if ord(destination[3]) <= ord("9"): if ord(destination[3]) <= ord("9"):
lat *= -1 lat *= -1
logger.debug(lat)
logger.debug(information)
lon = information[1] - 28 lon = information[1] - 28
if ord(destination[4]) >= ord("P"): if ord(destination[4]) >= ord("P"):
lon += 100 lon += 100