Coord.java 635 Bytes
Newer Older
1
package eu.simstadt.nf4j;
2
3

/**
4
 * Another class for coordinates. This is an intermediate representation for WGS 84 coordinates. 
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 * 
 * @author Marcel Bruse
 */
public class Coord {

	/** The latitude of the geographic position. */
	public double latitude;
	
	/** The longitude of the geographic position. */
	public double longitude;

	/** Standard constructor.
	 * 
	 * @param latitude The latitude of the WGS 84 coordinate.
	 * @param longitude The longitude of the WGS 84 coordinate.
	 */
	public Coord(double latitude, double longitude) {
		this.latitude = latitude;
		this.longitude = longitude;
	}
	
}