Class TransverseMercatorDescriptor.TMT

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

@Deprecated public class TransverseMercatorDescriptor.TMT extends CartographicMapTransform
Deprecated.
since BEAM 4.7, use geotools MapProjection instead.
Implements the transverse mercator map-transformation.
  • Constructor Details

    • TMT

      public TMT(double[] parameterValues)
      Deprecated.
  • Method Details

    • getDescriptor

      public MapTransformDescriptor getDescriptor()
      Deprecated.
      Description copied from interface: MapTransform
      Gets the descriptor for this map transform.
      Returns:
      the descriptor, should never be null
    • getParameterValues

      public double[] getParameterValues()
      Deprecated.
      Description copied from interface: MapTransform
      Gets 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.

      Important: Implementors of this method shall ensure that an element-wise copy of the given parameter array is created and returned.

      Returns:
      the array of parameter values.
    • forward_impl

      public Point2D forward_impl(double lat, double lon, Point2D mapPoint)
      Deprecated.
      Forward project geographical co-ordinates into map co-ordinates.
      Specified by:
      forward_impl in class CartographicMapTransform
      Parameters:
      lat - latitude of source location
      lon - longitude of source location
      mapPoint - point on the map
      Returns:
      the map coordinate
    • inverse_impl

      public GeoPos inverse_impl(double x, double y, GeoPos geoPoint)
      Deprecated.
      Inverse project map co-ordinates into geographical co-ordinates.
      Specified by:
      inverse_impl in class CartographicMapTransform
      Parameters:
      x - map x coordinate
      y - map y coordinate
      geoPoint - point on the earth's surface
      Returns:
      the geodetic co-ordinate
    • createDeepClone

      public MapTransform createDeepClone()
      Deprecated.
      Description copied from interface: MapTransform
      Creates a deep clone of this MapTransform.
      Returns:
      a MapTransform clone
    • getSemiMinor

      public double getSemiMinor()
      Deprecated.
    • getLatitudeOfOrigin

      public double getLatitudeOfOrigin()
      Deprecated.
    • getScaleFactor

      public double getScaleFactor()
      Deprecated.