类 LinearProjection

  • 所有已实现的接口:
    java.lang.Cloneable

    public class LinearProjection
    extends Projection
    • 构造器详细资料

      • LinearProjection

        public LinearProjection()
    • 方法详细资料

      • project

        public ProjCoordinate project​(ProjCoordinate src,
                                      ProjCoordinate dst)
        从类复制的说明: Projection
        Projects a geographic point (in degrees), producing a projected result (in the units of the target coordinate system).
        覆盖:
        project 在类中 Projection
        参数:
        src - the input geographic coordinate (in degrees)
        dst - the projected coordinate (in coordinate system units)
        返回:
        the target coordinate
      • transform

        public void transform​(double[] srcPoints,
                              int srcOffset,
                              double[] dstPoints,
                              int dstOffset,
                              int numPoints)
      • inverseProject

        public ProjCoordinate inverseProject​(ProjCoordinate src,
                                             ProjCoordinate dst)
        从类复制的说明: Projection
        Inverse-projects a point (in the units defined by the coordinate system), producing a geographic result (in degrees)
        覆盖:
        inverseProject 在类中 Projection
        参数:
        src - the input projected coordinate (in coordinate system units)
        dst - the inverse-projected geographic coordinate (in degrees)
        返回:
        the target coordinate
      • inverseTransform

        public void inverseTransform​(double[] srcPoints,
                                     int srcOffset,
                                     double[] dstPoints,
                                     int dstOffset,
                                     int numPoints)
      • isRectilinear

        public boolean isRectilinear()
        从类复制的说明: Projection
        Tests whether under this projection lines of latitude and longitude form a rectangular grid
        覆盖:
        isRectilinear 在类中 Projection