From 56a0443d3c6d577652fe8ac4904fb7cdad0f80bc Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Fri, 22 Jul 2016 14:12:02 -0700 Subject: Another gpsprof %.7 to %.9 We need to represent numbers like: 121.314064921 accurately. --- gpsprof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gpsprof') diff --git a/gpsprof b/gpsprof index 1d4e31f0..8b8a40ba 100755 --- a/gpsprof +++ b/gpsprof @@ -196,7 +196,7 @@ class spaceplot(plotter): for i in range(len(self.recentered)): (lat, lon) = self.recentered[i][:2] (raw1, raw2, alt) = self.fixes[i] - res += "%.7f\t%.9f\t%.9f\t%.9f\t%.9f\n" % (lat, lon, raw1, raw2, alt) + res += "%.9f\t%.9f\t%.9f\t%.9f\t%.9f\n" % (lat, lon, raw1, raw2, alt) return res def plot(self): -- cgit v1.2.1