类 Reproject
- java.lang.Object
-
- org.meteoinfo.projection.Reproject
-
public class Reproject extends java.lang.Object- 作者:
- Yaqiang Wang
-
-
构造器概要
构造器 构造器 说明 Reproject()
-
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static PointDreprojectPoint(double x, double y, ProjectionInfo source, ProjectionInfo dest)Reproject a pointstatic PointDreprojectPoint(PointD point, ProjectionInfo source, ProjectionInfo dest)Reproject a pointstatic voidreprojectPoints(double[][] points, ProjectionInfo source, ProjectionInfo dest)Reproject a pointstatic voidreprojectPoints(double[][] points, ProjectionInfo source, ProjectionInfo dest, int startIndex, int numPoints)Reproject points
-
-
-
方法详细资料
-
reprojectPoint
public static PointD reprojectPoint(double x, double y, ProjectionInfo source, ProjectionInfo dest)
Reproject a point- 参数:
x- Xy- Ysource- Source projection infodest- Destination projection info- 返回:
- Projected point
-
reprojectPoint
public static PointD reprojectPoint(PointD point, ProjectionInfo source, ProjectionInfo dest)
Reproject a point- 参数:
point- The pointsource- Source projection infodest- Destination projection info- 返回:
- Projected point
-
reprojectPoints
public static void reprojectPoints(double[][] points, ProjectionInfo source, ProjectionInfo dest)Reproject a point- 参数:
points- The pointssource- Source projection infodest- Destination projection info
-
reprojectPoints
public static void reprojectPoints(double[][] points, ProjectionInfo source, ProjectionInfo dest, int startIndex, int numPoints)Reproject points- 参数:
points- The pointssource- Source projection infodest- Destination projection infostartIndex- Start indexnumPoints- Point number
-
-