CRSWKT.java 449 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
package eu.simstadt.nf4j;

/**
 * This enumeration lists some of the "well known texts" (WKT) which are used to identify
 * coordinate reference systems (CRS).
 * 
 * @author Marcel Bruse
 *
 */
public enum CRSWKT {
	
	EPSG_31467("EPSG:31467"),	// DHDN Gauss-Kruger zone 3
	EPSG_4326("EPSG:4326");		// WGS 84

	/** The well known texts for a CRS. */
	public String wkt;
	
	private CRSWKT(String wkt) {
		this.wkt = wkt;
	}
	
}