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

Bug in float to string conversion #229

Closed
BenediktO opened this issue Apr 11, 2021 · 0 comments
Closed

Bug in float to string conversion #229

BenediktO opened this issue Apr 11, 2021 · 0 comments

Comments

@BenediktO
Copy link
Contributor

I found a bug in the file gpxpy.utils in the function make_str().

Look at the following code:

import gpxpy.gpx

gpx = gpxpy.gpx.GPX()
gpx.waypoints.append(gpxpy.gpx.GPXWaypoint(latitude=10000000000000000.0, longitude=10000000000000000.0, elevation=10000000000000000.0))
with open('bug.gpx', 'w') as f:
    f.write(gpx.to_xml())

This produces the following output in bug.gpx:

<?xml version="1.0" encoding="UTF-8"?>
<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" version="1.1" creator="gpx.py -- https://github.com/tkrajina/gpxpy">
  <wpt lat="1" lon="1">
    <ele>1</ele>
  </wpt>
</gpx>

Where all the values are now 1 and not 10000000000000000.

I know this example is ridiculous but the affected function make_str() is used often and such a problem might occur in other places.
Looking at utils.py:77 one can trace the origin:

>>> s = 10000000000000000.0
>>> str(s)
'1e+16' # scientific notation not allowed
>>> format(s, '.10f')
'10000000000000000.0000000000'
>>> format(s, '.10f').rstrip('0.') # problem
'1'
>>> format(s, '.10f').rstrip('0').rstrip('.') # workaround
'10000000000000000'

The strip function matches any of the given characters and thus removes the 0's before the decimal point.

One solution would be to use the proposition mentioned here which only can remove zeros after the decimal point.

I know it might not seem super important but I think this should be fixed nevertheless.

BenediktO added a commit to BenediktO/gpxpy that referenced this issue Apr 12, 2021
This bug lead to a wrong value in the produced gpx file if the a
float variable exceeds is at least 10^16 large and is dividable
at least once by 10. The trailing 0's would be removed.
BenediktO added a commit to BenediktO/gpxpy that referenced this issue Apr 12, 2021
@BenediktO BenediktO mentioned this issue Apr 12, 2021
@tkrajina tkrajina closed this as completed Nov 3, 2021
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

2 participants