Class AlbersEqualAreaConicDescriptor.AEAC

java.lang.Object
org.esa.snap.core.dataop.maptransf.CartographicMapTransform
org.esa.snap.core.dataop.maptransf.AlbersEqualAreaConicDescriptor.AEAC
All Implemented Interfaces:
MapTransform
Enclosing class:
AlbersEqualAreaConicDescriptor

@Deprecated public class AlbersEqualAreaConicDescriptor.AEAC extends CartographicMapTransform
Deprecated.
since BEAM 4.7, use geotools MapProjection instead.
  • Constructor Details

    • AEAC

      public AEAC(double[] parameterValues)
      Deprecated.
      Constructs the MapTransform with given parameter set. The parameter are in indexed order:
      • 0 - Semi major axis
      • 1 - Semi minor axis
      • 2 - Latitude of origin
      • 3 - Latitude of intersection 1
      • 4 - Latitude of intersection 2
      • 5 - Scale factor
      Parameters:
      parameterValues -
  • Method Details

    • getDescriptor

      public MapTransformDescriptor getDescriptor()
      Deprecated.
      Returns the descriptor for this map transform.
      Returns:
      the descriptor, should never be null
    • createDeepClone

      public MapTransform createDeepClone()
      Deprecated.
      Creates a deep clone of this MapTransform.
      Returns:
      a MapTransform clone
    • getParameterValues

      public double[] getParameterValues()
      Deprecated.
      Returns the array of parameter values. The order in which the parameters are returned must exactly match the order in which the corresponding Parameter array is returned by the MapTransformDescriptor.getParameters() method.
      Returns:
      the array of parameter values.
    • forward_impl

      protected Point2D forward_impl(double phi, double lam, Point2D mapPoint)
      Deprecated.
      Worker method to be overridden by derived class. Performs the pure transformation. Prescaling, northing, easting etc is calculated in this class.
      Specified by:
      forward_impl in class CartographicMapTransform
      Parameters:
      phi - latitude of source location
      lam - longitude of source location
      mapPoint -
      Returns:
      the map co-ordinate
    • inverse_impl

      protected GeoPos inverse_impl(double x, double y, GeoPos geoPoint)
      Deprecated.
      Worker method to be overridden by derived class. Performs the pure transformation. Prescaling, northing, easting etc is calculated in this class.

      Should be overridden in order to delegate to inverse_impl(double, double, GeoPos) if transformation is performed is in 64-bit accuracy. Override inverse_impl(double, double, GeoPos) instead in order to perform the actual transformation.

      Specified by:
      inverse_impl in class CartographicMapTransform
      Parameters:
      x - map x coordinate
      y - map y coordinate
      geoPoint -
      Returns:
      the geodetic co-ordinate
    • getSemiMinor

      public double getSemiMinor()
      Deprecated.
    • getLatitudeOfOrigin

      public double getLatitudeOfOrigin()
      Deprecated.
    • getStandardParallel1

      public double getStandardParallel1()
      Deprecated.
    • getStandardParallel2

      public double getStandardParallel2()
      Deprecated.