Formate gps data to float to work with new optima35

This commit is contained in:
Mr Finchum 2025-01-16 19:02:41 +01:00
parent a14d776d32
commit 62c65510de

View file

@ -221,7 +221,7 @@ class OptimaLab35_lite():
long = input("Enter Longitude (xx.xxxxxx): ")
try:
self.o.exif_handler.add_geolocation_to_exif(test_exif, float(lat), float(long))
return [lat, long]
return [float(lat), float(long)]
except Exception:
print("Invalid GPS formate, try again...")