Class StereographicDescriptor.ST
- java.lang.Object
-
- org.esa.snap.core.dataop.maptransf.CartographicMapTransform
-
- org.esa.snap.core.dataop.maptransf.StereographicDescriptor.ST
-
- All Implemented Interfaces:
MapTransform
- Enclosing class:
- StereographicDescriptor
@Deprecated public class StereographicDescriptor.ST extends CartographicMapTransform
Deprecated.since BEAM 4.7, use geotoolsMapProjection
instead.Implements the stereographic transformation as defined in the proj4 cartographic projection package. The optional latitude of true scale parameter which provides an alternative way to specify the scaling has been omitted for convenience.- Version:
- 1.0
- See Also:
- http://remotesensing.org/proj/
-
-
Field Summary
-
Fields inherited from class org.esa.snap.core.dataop.maptransf.CartographicMapTransform
_a, _centralMeridian, _invA, _x0, _y0
-
-
Constructor Summary
Constructors Constructor Description ST(double[] parameterValues)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MapTransform
createDeepClone()
Deprecated.Creates a deep clone of thisMapTransform
.Point2D
forward_impl(double lat, double lon, Point2D mapPoint)
Deprecated.Forward project geographical coordinates into map coordinates.MapTransformDescriptor
getDescriptor()
Deprecated.Gets the descriptor for this map transform.double
getLatitudeOfOrigin()
Deprecated.double[]
getParameterValues()
Deprecated.Gets the array of parameter values.double
getScaleFactor()
Deprecated.double
getSemiMinor()
Deprecated.GeoPos
inverse_impl(double x, double y, GeoPos geoPoint)
Deprecated.Inverse project map coordinates into geographical coordinates.boolean
isOblique()
Deprecated.boolean
isPolar()
Deprecated.-
Methods inherited from class org.esa.snap.core.dataop.maptransf.CartographicMapTransform
forward, getCentralMeridian, getFalseEasting, getFalseNorthing, getInverseSemiMajor, getSemiMajor, inverse
-
-
-
-
Method Detail
-
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 correspondingParameter
array is returned by the
method.MapTransformDescriptor.getParameters()
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 coordinates into map coordinates.- Specified by:
forward_impl
in classCartographicMapTransform
- Parameters:
lat
- latitude of source locationlon
- longitude of source locationmapPoint
- point on the map- Returns:
- the map coordinate
-
inverse_impl
public GeoPos inverse_impl(double x, double y, GeoPos geoPoint)
Deprecated.Inverse project map coordinates into geographical coordinates.- Specified by:
inverse_impl
in classCartographicMapTransform
- Parameters:
x
- map x coordinatey
- map y coordinategeoPoint
- 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 thisMapTransform
.- Returns:
- a
MapTransform
clone
-
getSemiMinor
public double getSemiMinor()
Deprecated.
-
getLatitudeOfOrigin
public double getLatitudeOfOrigin()
Deprecated.
-
getScaleFactor
public double getScaleFactor()
Deprecated.
-
isPolar
public boolean isPolar()
Deprecated.
-
isOblique
public boolean isOblique()
Deprecated.
-
-