oracle.sdoapi.sref
Interface ProjectedCS

All Superinterfaces:
java.io.Serializable, SpatialReference

public interface ProjectedCS
extends SpatialReference

Interface for Projected coordinate Systems. Concrete instances of projected coordinate systems are always created by SRManager.


Method Summary
 GeographicCS getGeographicCS()
          Gets the original geographic coordinate system that projected this coordinate system.
 int getID()
          Gets the ID for this spatial reference system.
 LinearUnit getLinearUnit()
          Gets the linear unit of measurment for the coordinate system.
 Projection getProjection()
          Gets the projection used for this coordinate system.
 void setGeographicCS(GeographicCS gcs)
          Sets the original geographic coordinate system that projected this coordinate system.
 void setID(int id)
           
 void setLinearUnit(LinearUnit unit)
          Sets the linear unit of measurment for the coordinate system.
 void setProjection(Projection proj)
          Sets the projection used for this coordinate system.
 
Methods inherited from interface oracle.sdoapi.sref.SpatialReference
getDimension, getName, getWellKnowText, isGeographicCS, isNonEarthCS, isProjectedCS, sameAs
 

Method Detail

getProjection

public Projection getProjection()
Gets the projection used for this coordinate system.

getLinearUnit

public LinearUnit getLinearUnit()
Gets the linear unit of measurment for the coordinate system.

getGeographicCS

public GeographicCS getGeographicCS()
Gets the original geographic coordinate system that projected this coordinate system.

setProjection

public void setProjection(Projection proj)
Sets the projection used for this coordinate system.

setLinearUnit

public void setLinearUnit(LinearUnit unit)
Sets the linear unit of measurment for the coordinate system.

setGeographicCS

public void setGeographicCS(GeographicCS gcs)
Sets the original geographic coordinate system that projected this coordinate system.

getID

public int getID()
Description copied from interface: SpatialReference
Gets the ID for this spatial reference system.
Specified by:
getID in interface SpatialReference

setID

public void setID(int id)