01: package org.geotiff.epsg;
02:
03: /**
04: * Represents the Geographic (Datum) coordinate
05: * system.
06: *
07: * @author: Niles D. Ritter
08: */
09:
10: public class GeographicCS extends HorizontalCS {
11:
12: /**
13: * Protected Constructor; use the factory method
14: * in HorizontalCS to make this.
15: */
16: protected GeographicCS(int code) {
17: super (code);
18: }
19:
20: /**
21: * Standard accessor.
22: */
23: public HorizontalCS getGeographicCS() {
24: return this;
25: }
26:
27: }
|