This commit is contained in:
reverend 2020-08-27 17:17:28 +02:00
parent f34d70edd5
commit 55b8d16751

View File

@ -60,14 +60,17 @@ class Place (models.Model):
def average_latlon(place_list):
amount = len(place_list)
# Init fill values to prevent None
longitude = 1
latitude = 1
longitude = 0
latitude = 0
if amount > 0:
for place in place_list:
longitude += place.longitude
latitude += place.latitude
return (latitude / amount, longitude / amount)
return (latitude, longitude)
def __str__(self):
return self.name