Hi
I needed to export a track from the Android version of windy maps. As there is no built in support this is how I managed export to gpx format. It is a little bit tricky and requires some computer skills.
- Copy the log file for the correct date from the mobile app to a computer running windows or linux. On my mobile the log files was found in the folder android/datacom.seznam.windymaps/files/logs
- Run the following UNIX commands from the command line on UNIX (or Windows with gnuwin32) installed.
echo time,latitude,longitude >gps.csv
grep -E "loc.*gps" TheLogFile.txt | cut -d; -f1,5,6 | cut -c2-8,28- | tr ";" "," | sort >>gps.csv - The gps.csv file contains time, latitude and longitude in a comma separated file format.
- Convert the gps.csv file to gpx format with e.g. https://www.gpsvisualizer.com/convert_input. Note that the date will be todays date, not the track date.
Note that this is what I used to export one track and no more testing has been done.
Regards Jan