X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altoslib%2FAltosTelemetry.java;h=4c973cd95466519482d88a0d503bc7643589b9f5;hp=2f15cd896effa8be6ec36b1c809927da97ff168c;hb=87c8bb3956897830da1f7aaca2990a9571767b73;hpb=4828be0ca5252ac9cd6061209385dcd6c4c57965 diff --git a/altoslib/AltosTelemetry.java b/altoslib/AltosTelemetry.java index 2f15cd89..4c973cd9 100644 --- a/altoslib/AltosTelemetry.java +++ b/altoslib/AltosTelemetry.java @@ -15,7 +15,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -package org.altusmetrum.altoslib_5; +package org.altusmetrum.altoslib_8; import java.text.*; @@ -118,8 +118,6 @@ public abstract class AltosTelemetry implements AltosStateUpdate { double compare_height; int height = height_16; - System.out.printf("state kalman height %g altitude %g ground_altitude %g gps_height %g\n", - state.kalman_height.value(), state.altitude(), state.ground_altitude(), state.gps_height()); if (state.gps != null && state.gps.alt != AltosLib.MISSING) { compare_height = state.gps_height(); } else { @@ -135,10 +133,6 @@ public abstract class AltosTelemetry implements AltosStateUpdate { height += 65536; else if (Math.abs(height - 65536 - compare_height) < Math.abs(height - compare_height)) height -= 65536; - if (height != height_16) { - System.out.printf("Height adjusted from %d to %d with %g\n", - height_16, height, compare_height); - } } return height; }