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 geotoolsMapProjection
instead.
-
-
Field Summary
-
Fields inherited from class org.esa.snap.core.dataop.maptransf.CartographicMapTransform
_centralMeridian, _invA, _x0, _y0
-
-
Constructor Summary
Constructors Constructor Description AEAC(double[] parameterValues)
Deprecated.Constructs the MapTransform with given parameter set.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MapTransform
createDeepClone()
Deprecated.Creates a deep clone of thisMapTransform
.protected Point2D
forward_impl(double phi, double lam, Point2D mapPoint)
Deprecated.Worker method to be overridden by derived class.MapTransformDescriptor
getDescriptor()
Deprecated.Returns the descriptor for this map transform.double
getLatitudeOfOrigin()
Deprecated.double[]
getParameterValues()
Deprecated.Returns the array of parameter values.double
getSemiMinor()
Deprecated.double
getStandardParallel1()
Deprecated.double
getStandardParallel2()
Deprecated.protected GeoPos
inverse_impl(double x, double y, GeoPos geoPoint)
Deprecated.Worker method to be overridden by derived class.-
Methods inherited from class org.esa.snap.core.dataop.maptransf.CartographicMapTransform
forward, getCentralMeridian, getFalseEasting, getFalseNorthing, getInverseSemiMajor, getSemiMajor, inverse
-
-
-
-
Constructor Detail
-
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 Detail
-
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 thisMapTransform
.- 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 correspondingParameter
array is returned by the
method.MapTransformDescriptor.getParameters()
- 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 classCartographicMapTransform
- Parameters:
phi
- latitude of source locationlam
- longitude of source locationmapPoint
-- 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
if transformation is performed is in 64-bit accuracy. Overrideinverse_impl(double, double, GeoPos)
instead in order to perform the actual transformation.inverse_impl(double, double, GeoPos)
- Specified by:
inverse_impl
in classCartographicMapTransform
- Parameters:
geoPoint
-x
- map x coordinatey
- map y coordinate- 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.
-
-