com.supermap.analyst.spatialanalyst
类 ExtremumInfo

java.lang.Object
  继承者 com.supermap.analyst.spatialanalyst.ExtremumInfo

public class ExtremumInfo
extends java.lang.Object

极值信息类。该类提供了极值点查找 findExtremum 的结果,包括栅格单元值的最大值和坐标值以及最小值和坐标值。


方法摘要
 Point2Ds getMaxPoints()
          返回查找到的最大值的坐标值。
 double getMaxValue()
          返回查找栅格单元值的最大值。
 Point2Ds getMinPoints()
          返回查找到的最小值的坐标值。
 double getMinValue()
          返回查找栅格单元值的最小值。
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

getMaxValue

public double getMaxValue()
返回查找栅格单元值的最大值。

返回:
查找栅格单元值的最大值。

getMinValue

public double getMinValue()
返回查找栅格单元值的最小值。

返回:
查找栅格单元值的最小值。

getMaxPoints

public Point2Ds getMaxPoints()
返回查找到的最大值的坐标值。

返回:
查找到的最大值的坐标值。

getMinPoints

public Point2Ds getMinPoints()
返回查找到的最小值的坐标值。

返回:
查找到的最小值的坐标值。