Merge branch 'master' into feature/tags
This commit is contained in:
commit
fc39b46c52
@ -60,13 +60,16 @@ class Place (models.Model):
|
|||||||
def average_latlon(place_list):
|
def average_latlon(place_list):
|
||||||
amount = len(place_list)
|
amount = len(place_list)
|
||||||
# Init fill values to prevent None
|
# Init fill values to prevent None
|
||||||
longitude = 1
|
longitude = 0
|
||||||
latitude = 1
|
latitude = 0
|
||||||
|
|
||||||
for place in place_list:
|
if amount > 0:
|
||||||
longitude += place.longitude
|
for place in place_list:
|
||||||
latitude += place.latitude
|
longitude += place.longitude
|
||||||
return (latitude / amount, longitude / amount)
|
latitude += place.latitude
|
||||||
|
return (latitude / amount, longitude / amount)
|
||||||
|
|
||||||
|
return (latitude, longitude)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
Loading…
Reference in New Issue
Block a user