Class AiryProjection

java.lang.Object
org.locationtech.proj4j.proj.Projection
org.locationtech.proj4j.proj.AiryProjection
All Implemented Interfaces:
Serializable, Cloneable

public class AiryProjection extends Projection
See Also:
  • Field Details

    • p_halfpi

      private double p_halfpi
    • sinph0

      private double sinph0
    • cosph0

      private double cosph0
    • Cb

      private double Cb
    • mode

      private int mode
    • no_cut

      private boolean no_cut
    • EPS

      private static final double EPS
      See Also:
    • N_POLE

      private static final int N_POLE
      See Also:
    • S_POLE

      private static final int S_POLE
      See Also:
    • EQUIT

      private static final int EQUIT
      See Also:
    • OBLIQ

      private static final int OBLIQ
      See Also:
  • Constructor Details

    • AiryProjection

      public AiryProjection()
  • Method Details

    • project

      public ProjCoordinate project(double lplam, double lpphi, ProjCoordinate out)
      Description copied from class: Projection
      Computes the projection of a given point (i.e. from geographics to projection space). This should be overridden for all projections.
      Overrides:
      project in class Projection
      Parameters:
      lplam - the geographic x ordinate (in radians)
      lpphi - the geographic y ordinatee (in radians)
      out - the projected coordinate (in coordinate system units)
      Returns:
      the target coordinate
    • initialize

      public void initialize()
      Description copied from class: 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.
      Overrides:
      initialize in class Projection
    • toString

      public String toString()
      Overrides:
      toString in class Projection