https://github.com/obitech/gpsplot
A Python script to visualize GPS data with GNU plot
https://github.com/obitech/gpsplot
gnuplot gps-data python tu-chemnitz
Last synced: 6 months ago
JSON representation
A Python script to visualize GPS data with GNU plot
- Host: GitHub
- URL: https://github.com/obitech/gpsplot
- Owner: obitech
- License: gpl-3.0
- Created: 2017-05-03T21:43:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T18:43:52.000Z (over 8 years ago)
- Last Synced: 2025-05-22T18:34:50.065Z (7 months ago)
- Topics: gnuplot, gps-data, python, tu-chemnitz
- Language: Python
- Size: 44.9 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# gpsplot.py - A tiny program to plot GPS output

### GPS data file

### GNU plot
You can visualize it using GNU plot and the following commands:
```gnuplot
$ gnuplot
gnuplot> set grid
gnuplot> unset logscale x
gnuplot> unset logscale y
gnuplot> set xlabel "Distance in km"
gnuplot> set ylabel "Height in m"
gnuplot> set terminal png
gnuplot> set output "track.png"
gnuplot> plot "gpsplot.gp" using 3:7 notitle with lines linetype 3
```
Then open track.png in your folder.
### Limitations
You need to change file names in script. Also this doesn't work yet if a time difference between two data points is more than 24h. Other than that have fun!
### Disclaimer
This was an assignment I did during my Masters program at [TU Chemnitz](https://www.tu-chemnitz.de/index.html.en "Technical University Chemnitz"). The following was provided:
* `diff_dist()` function