Class LambertAzimuthalEqualArea

  • All Implemented Interfaces:
    Proj

    public class LambertAzimuthalEqualArea
    extends AbstractProj
    Lambert Azimuthal Equal Area (EPSG code 9820).

    This class has been derived from the implementation of the Geotools project; git 8cbf52d, org.geotools.referencing.operation.projection.LambertAzimuthalEqualArea at the time of migration.

    References:

    • A. Annoni, C. Luzet, E.Gubler and J. Ihde - Map Projections for Europe
    • John P. Snyder (Map Projections - A Working Manual, U.S. Geological Survey Professional Paper 1395)
    See Also:
    Lambert Azimuthal Equal-Area Projection, "Lambert_Azimuthal_Equal_Area"
    • Method Detail

      • getName

        public String getName()
        Description copied from interface: Proj
        Replies a human readable name of this projection.
        Returns:
        The projection name. must not be null.
      • getProj4Id

        public String getProj4Id()
        Description copied from interface: Proj
        Replies the Proj.4 identifier.
        Returns:
        The Proj.4 identifier (as reported by cs2cs -lp). If no id exists, return null.
      • project

        public double[] project​(double phi,
                                double lambda)
        Description copied from interface: Proj
        Convert lat/lon to east/north.
        Parameters:
        phi - the latitude in radians
        lambda - the longitude in radians
        Returns:
        array of length 2, containing east and north value in meters, divided by the semi major axis of the ellipsoid.
      • invproject

        public double[] invproject​(double x,
                                   double y)
        Description copied from interface: Proj
        Convert east/north to lat/lon.
        Parameters:
        x - east value in meters, divided by the semi major axis of the ellipsoid
        y - north value in meters, divided by the semi major axis of the ellipsoid
        Returns:
        array of length 2, containing lat and lon in radians.
      • invprojectEO

        private double[] invprojectEO​(double x,
                                      double y)
      • invprojectNS

        private double[] invprojectNS​(double x,
                                      double y)
      • qsfn

        private double qsfn​(double sinphi)
        Calculates q, Snyder equation (3-12)
        Parameters:
        sinphi - sin of the latitude q is calculated for.
        Returns:
        q from Snyder equation (3-12).
      • authlat

        private double authlat​(double beta)
        Determines latitude from authalic latitude.
        Parameters:
        beta - authalic latitude
        Returns:
        corresponding latitude
      • getAlgorithmBounds

        public Bounds getAlgorithmBounds()
        Description copied from interface: Proj
        Return the bounds where this projection is applicable. This is a fallback for when the projection bounds are not specified explicitly. In this area, the round trip lat/lon -> east/north -> lat/lon should return the starting value with small error. In addition, regions with extreme distortions should be excluded, if possible. It need not be the absolute maximum, but rather an area that is safe to display in JOSM and contain everything that one would expect to use.
        Returns:
        the bounds where this projection is applicable, null if unknown