summaryrefslogtreecommitdiff
path: root/xgpsspeed
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2016-03-25 10:07:43 -0400
committerEric S. Raymond <esr@thyrsus.com>2016-03-25 10:07:43 -0400
commit1a7870ae133bb3856fd946eae03e8f45aa40e0f5 (patch)
treeb5af226ed33228f4cd1a8334a2ba357ab7972071 /xgpsspeed
parente7d3313c7e8550deccf38290a2821b926a33c2b3 (diff)
downloadgpsd-1a7870ae133bb3856fd946eae03e8f45aa40e0f5.tar.gz
Default mode for xgpssspeed is now the more interesting nautical display.
Diffstat (limited to 'xgpsspeed')
-rwxr-xr-xxgpsspeed9
1 files changed, 8 insertions, 1 deletions
diff --git a/xgpsspeed b/xgpsspeed
index f14d08c1..ab573ffb 100755
--- a/xgpsspeed
+++ b/xgpsspeed
@@ -707,11 +707,18 @@ if __name__ == '__main__':
parser.add_option(
'--nautical',
dest='nautical',
- default=False,
+ default=True,
action='store_true',
help='Enable nautical-style speed and track display.'
)
parser.add_option(
+ '--landspeed',
+ dest='nautical',
+ default=True,
+ action='store_false',
+ help='Enable dashboard-style speedometer.'
+ )
+ parser.add_option(
'--debug',
dest='debug',
default=0,