Interface MapTransform
-
- All Known Implementing Classes:
AlbersEqualAreaConicDescriptor.AEAC
,CartographicMapTransform
,LambertConformalConicDescriptor.LCCT
,StereographicDescriptor.ST
,TransverseMercatorDescriptor.TMT
@Deprecated public interface MapTransform
Deprecated.since BEAM 4.7, use geotoolsMapProjection
instead.Provides a parameterized, mathematical algorithm for a map transformation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description MapTransform
createDeepClone()
Deprecated.Creates a deep clone of thisMapTransform
.Point2D
forward(GeoPos geoPoint, Point2D mapPoint)
Deprecated.Forward project geographical co-ordinates into map co-ordinates.MapTransformDescriptor
getDescriptor()
Deprecated.Gets the descriptor for this map transform.double[]
getParameterValues()
Deprecated.Gets the array of parameter values.GeoPos
inverse(Point2D mapPoint, GeoPos geoPoint)
Deprecated.Inverse project map co-ordinates into geographical co-ordinates.
-
-
-
Method Detail
-
getDescriptor
MapTransformDescriptor getDescriptor()
Deprecated.Gets the descriptor for this map transform.- Returns:
- the descriptor, should never be
null
-
getParameterValues
double[] getParameterValues()
Deprecated.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
Point2D forward(GeoPos geoPoint, Point2D mapPoint)
Deprecated.Forward project geographical co-ordinates into map co-ordinates.
-
inverse
GeoPos inverse(Point2D mapPoint, GeoPos geoPoint)
Deprecated.Inverse project map co-ordinates into geographical co-ordinates.
-
createDeepClone
MapTransform createDeepClone()
Deprecated.Creates a deep clone of thisMapTransform
.- Returns:
- a
MapTransform
clone
-
-