We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f98cd66 commit ceb92a6Copy full SHA for ceb92a6
adafruit_gps.py
@@ -96,7 +96,7 @@ def _parse_degrees(nmea_data: str) -> int:
96
minutes = int(raw[0]) % 100 # the mm.
97
minutes += int(f"{raw[1][:4]:0<4}") / 10000
98
minutes = int(minutes / 60 * 1000000)
99
- return degrees + minutes # return parsed string in the format dddmmmmmm
+ return degrees + minutes
100
101
102
def _parse_int(nmea_data: str) -> int:
0 commit comments