WIP implement georeference module for correctly geolocated files. See #1222.

This commit is contained in:
Dion Moult
2021-01-19 11:18:26 +11:00
parent 45bba127ff
commit ea524767a0
14 changed files with 548 additions and 217 deletions
@@ -89,9 +89,10 @@ si_conversions = {
def get_prefix(text):
for prefix in prefixes.keys():
if prefix in text.upper():
return prefix
if text:
for prefix in prefixes.keys():
if prefix in text.upper():
return prefix
def get_prefix_multiplier(text):