altoslib: Add units converters for latitude and longitude
authorKeith Packard <keithp@keithp.com>
Sat, 14 Jun 2014 21:33:58 +0000 (14:33 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 14 Jun 2014 21:34:43 +0000 (14:34 -0700)
Makes display of these values consistent across all instances

Signed-off-by: Keith Packard <keithp@keithp.com>
altoslib/AltosConvert.java
altoslib/AltosLatitude.java [new file with mode: 0644]
altoslib/AltosLocation.java [new file with mode: 0644]
altoslib/AltosLongitude.java [new file with mode: 0644]
altoslib/Makefile.am

index 87b9eaf20fbafdd52e72a18d08b4c087c59c713f..dc0fbb6253608529b0e6e6fb33ec02be7687f21d 100644 (file)
@@ -351,6 +351,10 @@ public class AltosConvert {
 
        public static AltosVoltage voltage = new AltosVoltage();
 
 
        public static AltosVoltage voltage = new AltosVoltage();
 
+       public static AltosLatitude latitude = new AltosLatitude();
+
+       public static AltosLongitude longitude = new AltosLongitude();
+
        public static String show_gs(String format, double a) {
                a = meters_to_g(a);
                format = format.concat(" g");
        public static String show_gs(String format, double a) {
                a = meters_to_g(a);
                format = format.concat(" g");
diff --git a/altoslib/AltosLatitude.java b/altoslib/AltosLatitude.java
new file mode 100644 (file)
index 0000000..6156d6d
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Copyright © 2014 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+package org.altusmetrum.altoslib_4;
+
+public class AltosLatitude extends AltosLocation {
+       public String pos() { return "N"; }
+       public String neg() { return "S"; }
+}
diff --git a/altoslib/AltosLocation.java b/altoslib/AltosLocation.java
new file mode 100644 (file)
index 0000000..725a02b
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright © 2014 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+package org.altusmetrum.altoslib_4;
+
+public abstract class AltosLocation extends AltosUnits {
+
+       public abstract String pos();
+       public abstract String neg();
+
+       public double value(double v, boolean imperial_units) {
+               return v;
+       }
+
+       public double inverse(double v, boolean imperial_units) {
+               return v;
+       }
+
+       public String show_units(boolean imperial_units) {
+               return "°";
+       }
+
+       public String say_units(boolean imperial_units) {
+               return "degrees";
+       }
+
+       public int show_fraction(int width, boolean imperial_units) {
+               return 2;
+       }
+
+       public String show(int width, double v, boolean imperial_units) {
+               String  h = pos();
+               if (v < 0) {
+                       h = neg();
+                       v = -v;
+               }
+               int deg = (int) Math.floor(v);
+               double min = (v - Math.floor(v)) * 60.0;
+               return String.format("%s %4d° %9.6f", h, deg, min);
+       }
+
+       public String say(double v, boolean imperial_units) {
+               String  h = pos();
+               if (v < 0) {
+                       h = neg();
+                       v = -v;
+               }
+               int deg = (int) Math.floor(v);
+               double min = (v - Math.floor(v)) * 60.0;
+               return String.format("%s %d degrees %d", h, deg, (int) Math.floor(min + 0.5));
+       }
+}
diff --git a/altoslib/AltosLongitude.java b/altoslib/AltosLongitude.java
new file mode 100644 (file)
index 0000000..29a5dcd
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Copyright © 2014 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+package org.altusmetrum.altoslib_4;
+
+public class AltosLongitude extends AltosLocation {
+       public String pos() { return "E"; }
+       public String neg() { return "W"; }
+}
index bd47f89f085c010f92c74b35dd511a0ef2a674ee..e81418bb318dad34f82fc9db7c624094229b49bd 100644 (file)
@@ -120,6 +120,9 @@ altoslib_JAVA = \
        AltosTemperature.java \
        AltosAccel.java \
        AltosVoltage.java \
        AltosTemperature.java \
        AltosAccel.java \
        AltosVoltage.java \
+       AltosLocation.java \
+       AltosLatitude.java \
+       AltosLongitude.java \
        AltosPyro.java \
        AltosWriter.java
 
        AltosPyro.java \
        AltosWriter.java