Add GPS height to the usual plot
[fw/altos] / altosui / AltosDataPointReader.java
index 88df081faeee4584d12113220eeaebbf443c1cd1..6e6e474ea9694ace4076b4a5c62c0787f509c5c5 100644 (file)
@@ -48,6 +48,7 @@ class AltosDataPointReader implements Iterable<AltosDataPoint> {
 
             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; }