summaryrefslogtreecommitdiff
path: root/gpsprof
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-03-26 22:14:13 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-03-26 22:14:13 +0000
commit548b93f3ceefb96b7e2e4e477aad9e3e9ea9b6b3 (patch)
tree6a306026d671dff9556c0c8b6fb83b55246dbf47 /gpsprof
parent20c3cfe0fb5bdbbf339b36044d66ebd3cf53d664 (diff)
downloadgpsd-548b93f3ceefb96b7e2e4e477aad9e3e9ea9b6b3.tar.gz
Clean up pure 2D-mode plotting some more.
Diffstat (limited to 'gpsprof')
-rwxr-xr-xgpsprof8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpsprof b/gpsprof
index 705decab..a828d05c 100755
--- a/gpsprof
+++ b/gpsprof
@@ -97,14 +97,14 @@ class spaceplot:
fmt += 'set key title "%s"\n' % time.asctime()
fmt += 'set size ratio -1\n'
fmt += 'set style line 2 pt 1\n'
- fmt += 'set style line 3 pt 2 # Looks good on X11\n'
+ fmt += 'set style line 3 pt 2\n'
fmt += 'set xlabel "Meters east from %s"\n' % lonstring
fmt += 'set ylabel "Meters north from %s"\n' % latstring
+ fmt += 'set border 15\n'
if alt_avg != gps.ALTITUDE_NOT_VALID:
fmt += 'set y2label "Meters Altitude from %f"\n' % alt_avg
- fmt += 'set border 15\n'
- fmt += 'set ytics nomirror\n'
- fmt += 'set y2tics\n'
+ fmt += 'set ytics nomirror\n'
+ fmt += 'set y2tics\n'
fmt += 'cep=%f\n' % d((0,0), recentered[len(self.fixes)/2])
fmt += 'set parametric\n'
fmt += 'set trange [0:2*pi]\n'