public class InterpolationIDWParameter3D extends InterpolationParameter3D
InterpolationParameter3D
类。通过该类可以为 IDW 插值算法提供必要的参数信息,包括距离权重计算的幂次、查找模式、插值运算时使用的分辨率、查找的范围等。构造器和说明 |
---|
InterpolationIDWParameter3D()
构造一个新的 InterpolationIDWParameter3D 对象。
|
InterpolationIDWParameter3D(double resolution,
SearchMode mode,
double searchRadius,
int expectedCount)
根据指定的参数构造一个 InterpolationIDWParameter3D 的新对象。
|
InterpolationIDWParameter3D(double resolution,
SearchMode mode,
double searchRadius,
int expectedCount,
int power)
根据指定的参数构造一个 InterpolationIDWParameter3D 的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
int |
getPower()
返回距离权重计算的幂次。
|
InterpolationAlgorithmType |
getType()
返回插值算法类型。
|
void |
setPower(int value)
设置距离权重计算的幂次。
|
void |
setSearchMode(SearchMode searchMode)
设置查找方式。
|
String |
toString()
返回一个表示 InterpolationIDWParameter3D 对象的字符串。
|
dispose, getBounds, getExpectedCount, getResolution, getSearchMode, getSearchRadius, getSliceAltitudes, setBounds, setExpectedCount, setResolution, setSearchRadius, setSliceAltitudes
public InterpolationIDWParameter3D()
public InterpolationIDWParameter3D(double resolution, SearchMode mode, double searchRadius, int expectedCount)
resolution
- 指定的插值运算时使用的分辨率。mode
- 指定插值运算时,查找参与运算点的方式。searchRadius
- 指定的查找范围。expectedCount
- 指定的需要查找的点数。public InterpolationIDWParameter3D(double resolution, SearchMode mode, double searchRadius, int expectedCount, int power)
resolution
- 指定的插值运算时使用的分辨率。mode
- 指定插值运算时,查找参与运算点的方式。searchRadius
- 指定的查找范围。expectedCount
- 指定的需要查找的点数。power
- 指定的距离权重计算的幂次。public InterpolationAlgorithmType getType()
getType
在类中 InterpolationParameter3D
InterpolationAlgorithmType
public int getPower()
幂次值越低,内插结果越平滑,幂次值越高,内插结果细节越详细。此参数应为一个大于0的值。如果不指定此参数,方法缺省将其设置为1。
public void setPower(int value)
幂次值越低,内插结果越平滑,幂次值越高,内插结果细节越详细。此参数应为一个大于0的值。如果不指定此参数,方法缺省将其设置为1。
value
- 距离权重计算的幂次。public void setSearchMode(SearchMode searchMode)
SearchMode
类。
重写基类的方法,当设置查找方式 SearchMode
为 QUADTREE
时抛出异常,表示不支持该查找方式。
setSearchMode
在类中 InterpolationParameter3D
searchMode
- 查找方式。SearchMode
public String toString()
toString
在类中 InterpolationParameter3D
Copyright © 2021–2024 SuperMap. All rights reserved.