From ba709c24e8216ca96912b128bc586a67302df494 Mon Sep 17 00:00:00 2001 From: bashrc Date: Mon, 18 May 2026 18:53:58 +0100 Subject: [PATCH] West is negative --- maps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps.py b/maps.py index 25f53946c..619ab1c50 100644 --- a/maps.py +++ b/maps.py @@ -328,7 +328,7 @@ def get_location_from_post(post_json_object: {}) -> str: if isinstance(longitude, str): longitude = float(longitude) if is_west and longitude > 0: - longitude = - longitude + longitude = -longitude if property_dict['name'] == "GPSLatitude": latitude = property_dict['value'] is_south = False