类 GeostationarySatelliteProjection

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

    public class GeostationarySatelliteProjection
    extends Projection
    作者:
    yaqiang
    • 构造器详细资料

      • GeostationarySatelliteProjection

        public GeostationarySatelliteProjection()
        Constructor
    • 方法详细资料

      • initialize

        public void initialize()
        从类复制的说明: Projection
        Initialize the projection. This should be called after setting parameters and before using the projection. This is for performance reasons as initialization may be expensive.
        覆盖:
        initialize 在类中 Projection
      • project

        public ProjCoordinate project​(double lplam,
                                      double lpphi,
                                      ProjCoordinate out)
        从类复制的说明: Projection
        Computes the projection of a given point (i.e. from geographics to projection space). This should be overridden for all projections.
        覆盖:
        project 在类中 Projection
        参数:
        lplam - the geographic x ordinate (in radians)
        lpphi - the geographic y ordinatee (in radians)
        out - the projected coordinate (in coordinate system units)
        返回:
        the target coordinate
      • project_s

        public void project_s​(double lplam,
                              double lpphi,
                              ProjCoordinate out)
      • project_e

        public void project_e​(double lplam,
                              double lpphi,
                              ProjCoordinate out)
      • projectInverse

        public ProjCoordinate projectInverse​(double xyx,
                                             double xyy,
                                             ProjCoordinate out)
        从类复制的说明: Projection
        Computes the inverse projection of a given point (i.e. from projection space to geographics). This should be overridden for all projections.
        覆盖:
        projectInverse 在类中 Projection
        参数:
        xyx - the projected x ordinate (in coordinate system units)
        xyy - the projected y ordinate (in coordinate system units)
        out - the inverse-projected geographic coordinate (in radians)
        返回:
        the target coordinate
      • projectInverse_s

        public void projectInverse_s​(double xyx,
                                     double xyy,
                                     ProjCoordinate out)
      • projectInverse_e

        public void projectInverse_e​(double xyx,
                                     double xyy,
                                     ProjCoordinate out)
      • isEqualArea

        public boolean isEqualArea()
        Returns true if this projection is equal area
        覆盖:
        isEqualArea 在类中 Projection
        返回:
        true if this projection is equal-area