-
Dear all, I like to write a program, which should split gps-files with multiple gps-tracks into single files with one track. The result below from a first shot only shows the data from the first track. |
Beta Was this translation helpful? Give feedback.
Answered by
Pitido
Jan 11, 2022
Replies: 1 comment
-
Hello, this problem is solved now by using the same nodes for the loops. `for (pugi::xml_node trk = doc.child("gpx").child("trk"); trk;trk = trk.next_sibling("trk")) {
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Pitido
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
this problem is solved now by using the same nodes for the loops.
`for (pugi::xml_node trk = doc.child("gpx").child("trk"); trk;trk = trk.next_sibling("trk")) {