Works!(ish)

Fork of GPS by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
mbedevilledEgg
Date:
Tue Mar 21 15:38:11 2017 +0000
Parent:
0:15611c7938a3
Child:
2:b2c784b47c84
Commit message:
Works!(ish)

Changed in this revision

GPS.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/GPS.cpp	Tue Jun 08 14:10:27 2010 +0000
+++ b/GPS.cpp	Tue Mar 21 15:38:11 2017 +0000
@@ -48,7 +48,7 @@
                 float degrees = trunc(latitude / 100.0f);
                 float minutes = latitude - (degrees * 100.0f);
                 latitude = degrees + minutes / 60.0f;    
-                degrees = trunc(longitude / 100.0f * 0.01f);
+                degrees = trunc(longitude / 100.0f);
                 minutes = longitude - (degrees * 100.0f);
                 longitude = degrees + minutes / 60.0f;
                 return 1;