File: Latitude.java

package info (click to toggle)
gpsprune 17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,984 kB
  • ctags: 5,218
  • sloc: java: 39,403; sh: 25; makefile: 17; python: 15
file content (78 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package tim.prune.data;

/**
 * Class to represent a Latitude Coordinate
 */
public class Latitude extends Coordinate
{
	/**
	 * Constructor
	 * @param inString string value from file
	 */
	public Latitude(String inString)
	{
		super(inString);
	}


	/**
	 * Constructor
	 * @param inValue value of coordinate
	 * @param inFormat format to use
	 */
	public Latitude(double inValue, int inFormat)
	{
		super(inValue, inFormat, inValue < 0.0 ? SOUTH : NORTH);
	}


	/**
	 * Turn the given character into a cardinal
	 * @see tim.prune.data.Coordinate#getCardinal(char)
	 */
	protected int getCardinal(char inChar)
	{
		// Latitude recognises N, S and -
		// default is No cardinal
		int cardinal = NO_CARDINAL;
		switch (inChar)
		{
			case 'N':
			case 'n':
				cardinal = NORTH; break;
			case 'S':
			case 's':
			case '-':
				cardinal = SOUTH; break;
			default:
				// no character given
		}
		return cardinal;
	}

	/**
	 * @return default cardinal (North)
	 * @see tim.prune.data.Coordinate#getDefaultCardinal()
	 */
	protected int getDefaultCardinal()
	{
		return NORTH;
	}

	/**
	 * Make a new Latitude object
	 * @see tim.prune.data.Coordinate#makeNew(double, int)
	 */
	protected Coordinate makeNew(double inValue, int inFormat)
	{
		return new Latitude(inValue, inFormat);
	}

	/**
	 * @return the maximum degree range for this coordinate
	 */
	protected int getMaxDegrees()
	{
		return 90;
	}
}