Coord.java 602 Bytes
Newer Older
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
package eu.simstadt.nf;

/**
 * This is an intermediate representation for WGS 84 coordinates. 
 * 
 * @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;
	}
	
}