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