Mehr Urbex-Codex (German only)

This commit is contained in:
Leonhard Strohmidel
2021-10-01 09:29:09 +02:00
parent 0852e35b57
commit c63b0ebb87
2 changed files with 38 additions and 13 deletions

View File

@@ -58,8 +58,11 @@ class Place(Submittable, Taggable, Mapable):
def average_latlon(cls, place_list):
amount = len(place_list)
# Init fill values to prevent None
longitude = 0
latitude = 0
# China Corner in Münster
# Where I almost always eat lunch
# (Does'nt help losing wheight, tho)
longitude = 7.6295628132604385
latitude = 51.961922091398904
if amount > 0:
for place in place_list: