mirror of https://gitlab.com/bashrc2/epicyon
West is negative
parent
b0ddc2e96d
commit
0baad8d094
4
maps.py
4
maps.py
|
|
@ -317,14 +317,18 @@ def get_location_from_post(post_json_object: {}) -> str:
|
||||||
continue
|
continue
|
||||||
if property_dict['name'] == "GPSLongitude":
|
if property_dict['name'] == "GPSLongitude":
|
||||||
longitude = property_dict['value']
|
longitude = property_dict['value']
|
||||||
|
is_west = False
|
||||||
if isinstance(longitude, str):
|
if isinstance(longitude, str):
|
||||||
if 'E' in longitude:
|
if 'E' in longitude:
|
||||||
longitude = longitude.replace('E', '')
|
longitude = longitude.replace('E', '')
|
||||||
elif 'W' in longitude:
|
elif 'W' in longitude:
|
||||||
longitude = longitude.replace('W', '')
|
longitude = longitude.replace('W', '')
|
||||||
|
is_west = True
|
||||||
if not is_float(longitude):
|
if not is_float(longitude):
|
||||||
if isinstance(longitude, str):
|
if isinstance(longitude, str):
|
||||||
longitude = float(longitude)
|
longitude = float(longitude)
|
||||||
|
if is_west and longitude > 0:
|
||||||
|
longitude = - longitude
|
||||||
if property_dict['name'] == "GPSLatitude":
|
if property_dict['name'] == "GPSLatitude":
|
||||||
latitude = property_dict['value']
|
latitude = property_dict['value']
|
||||||
is_south = False
|
is_south = False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue