Plot your tracks and see the elevation profile! Works with tracks and/or routes.
Deployed here: https://gpx-plotter-react.vercel.app/
- Install dependencies:
npm install - Run the development server:
npm run dev - Open http://localhost:3000 with your browser
- Improve chart visualization
- Make a standard chart size
- Make the downloaded image always of the same size
- find bugs
- Improve chart performance
- Disable chart animations when dataset surpasses a certain size
- Add a way to trim data at the ends of the chart
- Create a cool landing page
- Make it more colorful
- Add a dark/white mode
About GPX schema: https://www.topografix.com/gpx.asp
More on Wikipedia
We use GitHub Actions and electron-builder to automatically build, package, and publish the desktop application for macOS, Linux, and Windows.
To release a new version:
- Update the version number in
package.json(e.g.,"version": "1.0.1"). - Commit your changes.
- Create and push a git tag starting with
vthat matches your version:git tag v1.0.1 git push origin v1.0.1
GitHub Actions will automatically trigger, build the binaries on native operating systems, and publish them as a new GitHub Release!