b21014db0a416a4398fb2a81e49c38d8a83829b3
[fw/altos] / altoslib / AltosLocation.java
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.altoslib_6;
19
20 public abstract class AltosLocation extends AltosUnits {
21
22         public abstract String pos();
23         public abstract String neg();
24
25         public double value(double v, boolean imperial_units) {
26                 return v;
27         }
28
29         public double inverse(double v, boolean imperial_units) {
30                 return v;
31         }
32
33         public String show_units(boolean imperial_units) {
34                 return "°";
35         }
36
37         public String say_units(boolean imperial_units) {
38                 return "degrees";
39         }
40
41         public int show_fraction(int width, boolean imperial_units) {
42                 return 2;
43         }
44
45         public String show(int width, double v, boolean imperial_units) {
46                 String  h = pos();
47                 if (v < 0) {
48                         h = neg();
49                         v = -v;
50                 }
51                 int deg = (int) Math.floor(v);
52                 double min = (v - Math.floor(v)) * 60.0;
53                 return String.format("%s %4d° %9.6f", h, deg, min);
54         }
55
56         public String say(double v, boolean imperial_units) {
57                 String  h = pos();
58                 if (v < 0) {
59                         h = neg();
60                         v = -v;
61                 }
62                 int deg = (int) Math.floor(v);
63                 double min = (v - Math.floor(v)) * 60.0;
64                 return String.format("%s %d degrees %d", h, deg, (int) Math.floor(min + 0.5));
65         }
66 }