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