We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a GPX file that uses negative longitudinal values for those west of the prime meridian. In matplotlib_plots there is the following line:
min_lat, min_lon = max(0, min_lat - offset), max(0, min_lon - offset)
that will force both the min and max longitudinal values to be zero if they are negative (and within offset of zero).
The text was updated successfully, but these errors were encountered:
#15 Work in progress:
2142c82
- Fix plot issues with negative latitudes or longitudes - Add new test files [ci skip]
Thanks for taking the time to report this bug. It should be fixed with the next version of ezGPX.
Sorry, something went wrong.
No branches or pull requests
I have a GPX file that uses negative longitudinal values for those west of the prime meridian. In matplotlib_plots there is the following line:
min_lat, min_lon = max(0, min_lat - offset), max(0, min_lon - offset)
that will force both the min and max longitudinal values to be zero if they are negative (and within offset of zero).
The text was updated successfully, but these errors were encountered: