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
<hdop>
Example of exported track:
<?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"> <trk> <name>track_1</name> <trkseg> <trkpt lon="snip" lat="snip"> <time>"snip"</time> <ele>"73.0"</ele> <hdop>"1.3"> </trkpt> <trkpt lon="snip" lat="snip"> <time>"snip"</time> <ele>"73.2"</ele> <hdop>"1.4"> </trkpt> </trkseg> </trk> </gpx>
Note the <hdop>"1.3"> line.
<hdop>"1.3">
How to Reproduce
I think the problem lies in the app/src/main/java/de/westnordost/streetcomplete/data/osmnotes/edits/NoteEditsController.kt file, which contains the exact wrong string that is output. I think the fix is as simple as:
- " <hdop>\"${it.accuracy}\">\n" + " <hdop>\"${it.accuracy}\"</hdop>\n"
I can make a PR if necessary.
Expected Behavior
A valid GPX file to be exported
Does it happen in normal StreetComplete? The code I mentioned and the functionality for exporting GPX files do not exist in normal StreetComplete
Versions affected
Android 14 SCEE 59.2
The text was updated successfully, but these errors were encountered:
Yes, please make a pr
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Example of exported track:
Note the
<hdop>"1.3">
line.How to Reproduce
I think the problem lies in the app/src/main/java/de/westnordost/streetcomplete/data/osmnotes/edits/NoteEditsController.kt file, which contains the exact wrong string that is output.
I think the fix is as simple as:
I can make a PR if necessary.
Expected Behavior
A valid GPX file to be exported
Does it happen in normal StreetComplete?
The code I mentioned and the functionality for exporting GPX files do not exist in normal StreetComplete
Versions affected
Android 14
SCEE 59.2
The text was updated successfully, but these errors were encountered: