public class InterpolationDensityParameter extends InterpolationParameter
InterpolationParameter
类。通过该类可以为点密度插值算法提供必要的参数信息。
点密度插值方法,用于表达采样点的密度分布情况。通常包含三个计算步骤:
点密度插值的结果栅格的分辨率设置需要结合点数据集范围大小来取值,一般结果栅格行列值(即结果栅格数据集范围除以分辨率)在 500 以内即可以较好的体现出密度走势。由于点密度插值暂时只支持定长搜索模式,因此搜索半径(SearchRadius)值设置较为重要,此值需要用户根据待插值点数据分布状况和点数据集范围进行设置。如下图所示,为一份二维点数据及对其进行点密度插值的结果。
构造器和说明 |
---|
InterpolationDensityParameter()
构造一个新的 InterpolationDensityParameter 对象。
|
InterpolationDensityParameter(double resolution,
double searchRadius)
根据指定的参数来构造一个 InterpolationDensityParameter 的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
InterpolationAlgorithmType |
getType()
返回插值算法类型。
|
void |
setSearchMode(SearchMode searchMode)
设置查找模式。
|
String |
toString()
返回一个表示 InterpolationDensityParameter 对象的字符串。
|
dispose, getBounds, getExpectedCount, getMaxPointCountForInterpolation, getMaxPointCountInNode, getResolution, getSearchMode, getSearchRadius, setBounds, setExpectedCount, setMaxPointCountForInterpolation, setMaxPointCountInNode, setResolution, setSearchRadius
public InterpolationDensityParameter()
public InterpolationDensityParameter(double resolution, double searchRadius)
resolution
- 指定的插值运算所获得的栅格数据集的分辨率。searchRadius
- 指定的插值运算时查找参数运算点的查找范围。public InterpolationAlgorithmType getType()
getType
在类中 InterpolationParameter
InterpolationAlgorithmType
public void setSearchMode(SearchMode searchMode)
SearchMode
类。
重写基类的方法。目前暂时只支持定长查找(即SearchMode#KDTREE_FIXED_RADIUS
),设置其它查找模式会抛出异常。
setSearchMode
在类中 InterpolationParameter
searchMode
- 查找模式。SearchMode
public String toString()
toString
在类中 InterpolationParameter
Copyright © 2021–2024 SuperMap. All rights reserved.