Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9717ac1

Browse files
committed
gpxelevations doc updated
1 parent 73c893b commit 9717ac1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ Sidney:
5454
gpxelevations is a utility commandline tool to add/update elevations in a GPS track file:
5555

5656
$ gpxelevations -h
57-
usage: gpxelevations [-h] [-o] [-c] [-f FILE] [gpx_files [gpx_files ...]]
57+
usage: gpxelevations [-h] [-o] [-p] [-s] [-c] [-f FILE] [-v]
58+
[gpx_files [gpx_files ...]]
5859

5960
Adds elevation to GPX files
6061

@@ -65,8 +66,11 @@ gpxelevations is a utility commandline tool to add/update elevations in a GPS tr
6566
-h, --help show this help message and exit
6667
-o, --overwrite Overwrite existing elevations (otherwise will add
6768
elevations only where not yet presetn)
69+
-p, --approximate Approximate elevations with neighbour point elevations
70+
-s, --smooth Smooth elevations
6871
-c, --calculate Calculate elevations (but don't change the GPX file
6972
-f FILE, --file FILE Output filename
73+
-v, --verbose Verbose output
7074

7175
## License
7276

gpxelevations

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ parser = mod_argparse.ArgumentParser(
1515
parser.add_argument('-o', '--overwrite', action='store_true', default=False,
1616
help='Overwrite existing elevations (otherwise will add elevations only where not yet presetn)')
1717
parser.add_argument('-p', '--approximate', action='store_true', default=False,
18-
help='Overwrite existing elevations (otherwise will add elevations only where not yet presetn)')
18+
help='Approximate elevations with neighbour point elevations')
1919
parser.add_argument('-s', '--smooth', action='store_true', default=False,
2020
help='Smooth elevations')
2121
parser.add_argument('-c', '--calculate', action='store_true', default=False,

0 commit comments

Comments
 (0)