com.supermap.analyst.spatialanalyst
类 AggregationType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.analyst.spatialanalyst.AggregationType

public class AggregationType
extends Enum

该类定义了聚合操作时结果栅格的计算方式类型常量。


字段摘要
static AggregationType AVERRAGE
          一个聚合栅格内包含的所有栅格值中的平均值。
static AggregationType MAJORITY
          一个聚合栅格内包含的所有栅格值中的众数
static AggregationType MAX
          一个聚合栅格内包含的所有栅格值中的最大值。
static AggregationType MEDIAN
          一个聚合栅格内包含的所有栅格值中的中值。
static AggregationType MIN
          一个聚合栅格内包含的所有栅格值中的最小值。
static AggregationType SUM
          一个聚合栅格内包含的所有栅格值之和。
 
方法摘要
 
从类 com.supermap.data.Enum 继承的方法
equals, getEnums, getNameByValue, getNames, getPredefineValues, getValueByName, getValues, hashCode, isDefined, isDefined, name, parse, parse, toString, value
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

字段详细信息

SUM

public static final AggregationType SUM
一个聚合栅格内包含的所有栅格值之和。


MIN

public static final AggregationType MIN
一个聚合栅格内包含的所有栅格值中的最小值。


MAX

public static final AggregationType MAX
一个聚合栅格内包含的所有栅格值中的最大值。


AVERRAGE

public static final AggregationType AVERRAGE
一个聚合栅格内包含的所有栅格值中的平均值。


MEDIAN

public static final AggregationType MEDIAN
一个聚合栅格内包含的所有栅格值中的中值。


MAJORITY

public static final AggregationType MAJORITY
一个聚合栅格内包含的所有栅格值中的众数