类 CoordinateReferenceSystem


  • public class CoordinateReferenceSystem
    extends java.lang.Object
    Represents a projected or geodetic geospatial coordinate system, to which coordinates may be referenced. A coordinate system is defined by the following things:
    • an Ellipsoid specifies how the shape of the Earth is approximated
    • a Datum provides the mapping from the ellipsoid to actual locations on the earth
    • a Projection method maps the ellpsoidal surface to a planar space. (The projection method may be null in the case of geodetic coordinate systems).
    • a Unit indicates how the ordinate values of coordinates are interpreted
    作者:
    Martin Davis
    另请参阅:
    CRSFactory
    • 构造器详细资料

      • CoordinateReferenceSystem

        public CoordinateReferenceSystem​(java.lang.String name,
                                         java.lang.String[] params,
                                         Datum datum,
                                         Projection proj)
    • 方法详细资料

      • getName

        public java.lang.String getName()
      • getParameters

        public java.lang.String[] getParameters()
      • getDatum

        public Datum getDatum()
      • getProjection

        public Projection getProjection()
      • getParameterString

        public java.lang.String getParameterString()
      • toEsriString

        public java.lang.String toEsriString()
        To Esri projection string
        返回:
        Esri projection string
      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object