If you want to get an image of a chart, use the screenshot function: Statistics → Share.
If you want to generate a chart based on the raw track data, there is currently no dedicated feature in the app. However, you can convert the GPX file to a TSV format, which can then be used in any spreadsheet editor (Excel, Numbers, Google Sheets, etc.).
To do this, follow the instructions:
- A GPX file can be converted to TSV using an XSLT stylesheet. You can download the stylesheet via the provided link. Some spreadsheet editors have built-in support for XSLT transformations.
- Alternatively, you can use the command-line utility xsltproc as follows: xsltproc --nonet --noout --output track.tsv GeoTracker.xslt track.gpx
- To install xsltproc on Windows, use the link provided.
- On macOS, you can install it via Homebrew: brew install libxslt