com.supermap.analyst.spatialanalyst
类 TerrainInterpolateType

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

public class TerrainInterpolateType
extends Enum

该类定义了地形插值类型常量。


字段摘要
static TerrainInterpolateType IDW
          距离反比权值插值法。
static TerrainInterpolateType KRIGING
          克吕金内插法。
static TerrainInterpolateType TIN
          不规则三角网。
 
方法摘要
 
从类 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
 

字段详细信息

IDW

public static final TerrainInterpolateType IDW
距离反比权值插值法。详情请参见InterpolationAlgorithmType#IDW枚举成员。


KRIGING

public static final TerrainInterpolateType KRIGING
克吕金内插法。详情请参见InterpolationAlgorithmType#KRIGING枚举成员。


TIN

public static final TerrainInterpolateType TIN
不规则三角网。

先将给定的线数据集生成一个TIN模型,然后根据给定的极值点信息以及湖信息生成DEM模型。