I have a gpx file , basically that is a xml file. I want to read latitude and longitude values from that. Below i have posted the sample gpx file.
<gpx>
<wpt lon="80.0124" lat="13.125">
</wpt>
<wpt lon="80.0130" lat="13.124">
</wpt>
<wpt lon="80.0145" lat="13.122">
</wpt>
<wpt lon="80.0120" lat="13.121">
</wpt>
</gpx>
I need to get float values of latitude and longitude. Any help and suggestion is appreciated.
Thank you. Could i get the result without double quotes?
The key class here is QXmlStreamReader.
See the code below to get it work.
test.xml
main.cpp
main.pro
Build and Run
Output