-
Notifications
You must be signed in to change notification settings - Fork 31
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
Double's being written as exponents in GPX file #151
Comments
The data type of the latitude and longitude value is <xsd:simpleType name="latitudeType">
<xsd:restriction base="xsd:decimal">
<xsd:minInclusive value="-90.0"/>
<xsd:maxInclusive value="90.0"/>
</xsd:restriction>
</xsd:simpleType> The library uses the Can you attach an example file with this error? And which application has problems reading these values? |
GPX file attached (added .txt for GitHub to accept). Only applications I've tried it with are Basecamp and Viewranger - both fail to parse the file, and don't import anything. |
Merged into r3.0.0 branch. |
When a GPX file is created, because of Lat and Long values being stored as doubles, they are sometimes written as exponents
EG -3.1E-4 instead of -0.00031
Not sure if there's a simple solution to this?
The text was updated successfully, but these errors were encountered: