类 CoordinateTransformFactory
- java.lang.Object
-
- org.meteoinfo.projection.proj4j.CoordinateTransformFactory
-
public class CoordinateTransformFactory extends java.lang.ObjectCreatesCoordinateTransforms from source and targetCoordinateReferenceSystems.- 作者:
- mbdavis
-
-
构造器概要
构造器 构造器 说明 CoordinateTransformFactory()Creates a new factory.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 CoordinateTransformcreateTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS)Creates a transformation from a source CRS to a target CRS, following the logic in PROJ.4.
-
-
-
方法详细资料
-
createTransform
public CoordinateTransform createTransform(CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS)
Creates a transformation from a source CRS to a target CRS, following the logic in PROJ.4. The transformation may include any or all of inverse projection, datum transformation, and reprojection, depending on the nature of the coordinate reference systems provided.- 参数:
sourceCRS- the source CoordinateReferenceSystemtargetCRS- the target CoordinateReferenceSystem- 返回:
- a tranformation from the source CRS to the target CRS
-
-