Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GPSTimestamp getTime() is Off by One Month #5

Open
J0hannB opened this issue Aug 6, 2018 · 2 comments
Open

GPSTimestamp getTime() is Off by One Month #5

J0hannB opened this issue Aug 6, 2018 · 2 comments

Comments

@J0hannB
Copy link

J0hannB commented Aug 6, 2018

The month of year field in $GPRMC sentences is indexed 1-12. This is also how it it is stored in the month class member of GPSTimestamp. In getTime(), however mktime() is called, which expects months be 0-11.

This results in the timestamp returned by getTime being off by one month.

@J0hannB J0hannB changed the title GPSTimestamp getTime() is Off by one month GPSTimestamp getTime() is Off by One Month Aug 7, 2018
@hicklin
Copy link

hicklin commented Aug 31, 2018

I have fixed this in my local copy by changing line 170 in src/GPSFix.cpp from t.tm_mon = month; to t.tm_mon = month - 1;.

@sikbrad
Copy link

sikbrad commented May 31, 2021

I found this too! Thank you @hicklin
But your build has error and cannot build without edition. 'timezone' identifier in 'getTime' func comes out of nowhere. Maybe you have missing commit or something.

sikbrad added a commit to sikbrad/NemaTode that referenced this issue May 31, 2021
lefebvre pushed a commit to lefebvre/NemaTode that referenced this issue Jan 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants