8
|
1 |
# gpx_reduce_light
|
|
2 |
|
|
3 |
* gpx_reduce.py, a version of gpx_reduce with no dependencies (only the standard python libraries)
|
|
4 |
Only the plot option has been removed.
|
|
5 |
See [original version](https://github.com/Alezy80/gpx_reduce) for more info.
|
|
6 |
|
|
7 |
Usage example:
|
|
8 |
```
|
|
9 |
> gpx_reduce.py -d 2 -t 30 your_track.gpx
|
|
10 |
```
|
|
11 |
|
|
12 |
* gpx_plot.py, a separate program to plot one or more tracks with "gnuplot".
|
|
13 |
Gnuplot has to be installed and the path to the binary has to be changed in the code
|
|
14 |
to reflect your installation:
|
|
15 |
|
|
16 |
```python
|
|
17 |
# the path to the gnuplot binary
|
|
18 |
gnuPlotCmd = 'path/to/gnuplot'
|
|
19 |
```
|
|
20 |
|
|
21 |
Usage example that compares a reduced track with the original:
|
|
22 |
```
|
|
23 |
> gpx_plot.py your_track.gpx your_track_reduced.gpx
|
|
24 |
```
|