diff options
author | Keith Packard <keithp@keithp.com> | 2013-01-16 15:19:51 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-01-18 23:00:20 -0800 |
commit | f4fa8a4e93e17f19d15ef108f6e0c81b7a83cc04 (patch) | |
tree | da1260cc55400f0a244efe59cfd7d83d0a63a6a2 /altosui/AltosDataPointReader.java | |
parent | 4646beb421ab5bec612dfe5e3c57e790b1f41203 (diff) |
Add GPS height to the usual plotplot-gps-height
This lets us compare the GPS height data to the barometric height data
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDataPointReader.java')
-rw-r--r-- | altosui/AltosDataPointReader.java | 1 |
1 files changed, 1 insertions, 0 deletions
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<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; } |