diff options
author | Keith Packard <keithp@keithp.com> | 2013-01-02 11:44:32 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-01-02 11:44:32 -0800 |
commit | 2c423d9287c6b9ea7233f5e3430682cb1c865da1 (patch) | |
tree | b46944e638d21c27121cedd4a784767eb55f3eee /micropeak/MicroData.java | |
parent | 93d640de65a1ecedfef89c96521c21632f96f372 (diff) |
micropeak: Add CSV export
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'micropeak/MicroData.java')
-rw-r--r-- | micropeak/MicroData.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/micropeak/MicroData.java b/micropeak/MicroData.java index 2afd3cd7..836d3c35 100644 --- a/micropeak/MicroData.java +++ b/micropeak/MicroData.java @@ -221,6 +221,10 @@ public class MicroData { return alt; } + public double pressure(int i) { + return pressures[i]; + } + public double height(int i) { return altitude(i) - ground_altitude; } |