ignore missing aps in measurements

This commit is contained in:
Laura Klünder 2017-12-25 17:27:07 +01:00
parent cb71cf479a
commit b075263a0c

View file

@ -83,10 +83,14 @@ class LocatorPoint(namedtuple('LocatorPoint', ('x', 'y', 'values'))):
station_ids = reduce(operator.or_, (frozenset(values.keys()) for values in values_list), frozenset())
return {
station_id: sum(values.get(station_id, -100) for values in values_list) / len(values_list)
station_id: cls.average(tuple(values[station_id] for values in values_list if station_id in values))
for station_id in station_ids
}
@staticmethod
def average(items):
return sum(items) / len(items)
valid_frequencies = frozenset((
2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462, 2467, 2472, 2484,
5180, 5190, 5200, 5210, 5220, 5230, 5240, 5250, 5260, 5270, 5280, 5290, 5300, 5310, 5320,