summaryrefslogtreecommitdiff
path: root/altoslib/AltosMapPathPoint.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2019-09-02 15:20:14 -0500
committerKeith Packard <keithp@keithp.com>2019-09-02 15:45:30 -0500
commit2524730217e6972f3d0f04a9954350ba1964a83a (patch)
tree959e388b0ea4908cb9cd21b60c662f2cedcb9bfb /altoslib/AltosMapPathPoint.java
parentb13893245e8c66b48e23bb2005ef6ce46e69744f (diff)
altosui: Add speed and gps height to map display data
And generalize the API so that any other GPS data could be added in the future. This feature was proposed by Mike Beattie Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMapPathPoint.java')
-rw-r--r--altoslib/AltosMapPathPoint.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/altoslib/AltosMapPathPoint.java b/altoslib/AltosMapPathPoint.java
index c23d8567..88a8bfcf 100644
--- a/altoslib/AltosMapPathPoint.java
+++ b/altoslib/AltosMapPathPoint.java
@@ -24,12 +24,13 @@ import java.util.*;
import java.util.concurrent.*;
public class AltosMapPathPoint {
- public AltosLatLon lat_lon;
+ public AltosGPS gps;
public double time;
public int state;
+ public double gps_height;
public int hashCode() {
- return lat_lon.hashCode() ^ state;
+ return Double.valueOf(gps.lat).hashCode() ^ Double.valueOf(gps.lon).hashCode() ^ state;
}
public boolean equals(Object o) {
@@ -41,13 +42,14 @@ public class AltosMapPathPoint {
AltosMapPathPoint other = (AltosMapPathPoint) o;
- return lat_lon.equals(other.lat_lon) && state == other.state;
+ return gps.lat == other.gps.lat && gps.lon == other.gps.lon && state == other.state;
}
- public AltosMapPathPoint(AltosLatLon lat_lon, double time, int state) {
- this.lat_lon = lat_lon;
+ public AltosMapPathPoint(AltosGPS gps, double time, int state, double gps_height) {
+ this.gps = gps;
this.time = time;
this.state = state;
+ this.gps_height = gps_height;
}
}