From f4fa8a4e93e17f19d15ef108f6e0c81b7a83cc04 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 16 Jan 2013 15:19:51 -0800 Subject: Add GPS height to the usual plot This lets us compare the GPS height data to the barometric height data Signed-off-by: Keith Packard --- altosui/AltosDataPointReader.java | 1 + 1 file changed, 1 insertion(+) (limited to 'altosui/AltosDataPointReader.java') diff --git a/altosui/AltosDataPointReader.java b/altosui/AltosDataPointReader.java index 88df081f..6e6e474e 100644 --- a/altosui/AltosDataPointReader.java +++ b/altosui/AltosDataPointReader.java @@ -48,6 +48,7 @@ class AltosDataPointReader implements Iterable { public double acceleration() { return state.acceleration; } public double height() { return state.height; } + public double gps_height() { return state.gps_height; } public double speed() { return state.speed(); } public double temperature() { return state.temperature; } public double battery_voltage() { return state.battery; } -- cgit v1.2.3