com.supermap.web.iServerJava6R.spatialAnalystServices
public class InterpolationRBFAnalystParameters
继承 InterpolationRBFAnalystParameters Inheritance InterpolationAnalystParameters Inheritance Object

样条插值(径向基函数插值法)分析参数类.

通过该类可以设置样条插值分析所需的参数。样条插值方法假设变化是平滑的,它有两个特点: 1、表面必须精确通过采样点; 2、表面必须有最小曲率。样条插值在利用大量采样点创建有视觉要求的平滑表面方面具有优势,但难以对误差进行估计,如样点在较短的水平距离内表面值发生急剧变化,或存在测量误差及具有不确定性时,不适合使用此算法。

另请参见

InterpolationAnalystService


公共属性
  属性 定义方
  Inherited bounds : Rectangle2D
用于确定结果栅格数据集的范围。
InterpolationAnalystParameters
  Inherited clipParam : ClipParameter
对插值分析结果进行裁剪的参数。
InterpolationAnalystParameters
  Inherited dataset : String
对数据集进行插值分析时用来设置数据集名称,格式为“数据集名称@数据源名称”。例如:dataset = “SamplesP@Interpolation”。
InterpolationAnalystParameters
    expectedCount : int
【固定点数查找】方式下,设置参与差值运算的点数。
InterpolationRBFAnalystParameters
  Inherited filterQueryParameter : FilterParameter
属性过滤条件。对数据集中的点进行过滤,只有满足条件的点对象才参与分析。
InterpolationAnalystParameters
  Inherited inputPoints : Array
用于Geometry插值分析的离散点(离散点包括Z值)数组。通过离散点直接进行插值分析不需要指定输入数据集inputDatasourceName,inputDatasetName以及zValueFieldName 。
InterpolationAnalystParameters
  Inherited InterpolationAnalystType : String
表示插值分析类型,差值分析包括数据集插值分析和几何插值分析两类。“dataset”表示对数据集进行插值分析,“geometry”表示对离散点数组进行插值分析,默认值为“dataset”。目前只有IDW插值分析支持geometry。
InterpolationAnalystParameters
    maxPointCountForInterpolation : int
【块查找】方式下,设置最多参与插值的点数。默认为200。
InterpolationRBFAnalystParameters
    maxPointCountInNode : int
【块查找】方式下,设置单个块内最多参与运算点数。默认为50。
InterpolationRBFAnalystParameters
  Inherited outputDatasetName : String
指定结果数据集的名称。此名称后面不需要跟“@数据源名称”
InterpolationAnalystParameters
  Inherited outputDatasourceName : String
插值分析结果数据源的名称。
InterpolationAnalystParameters
  Inherited pixelFormat : String
栅格数据类型,由 PixelFormat 枚举类定义。默认值为 PixelFormat.UBIT8。
InterpolationAnalystParameters
  Inherited resolution : Number
插值结果栅格数据集的分辨率,即一个像元所代表的实地距离,与点数据集单位相同。设置该值时,应该考虑点数据集范围大小来取值,
一般以结果栅格行列值(即结果栅格数据集范围除以分辨率)在500以内可以较好地体现密度走势。
InterpolationAnalystParameters
    searchMode : String
插值运算时,查找参与运算点的方式,有固定点数查找、定长查找、块查找。必输参数。
InterpolationRBFAnalystParameters
  Inherited searchRadius : Number
【定长查找】 方式下的查找半径,即参与运算点的查找范围,与点数据集单位相同。计算某个位置的Z 值时,会以该位置为圆心,以查找范围的值为半径,落在这个范围内的采样点都将参与运算。该值需要根据待插值点数据的分布状况和点数据集范围进行设置。
InterpolationAnalystParameters
    smooth : Number
光滑系数,该值表示插值函数曲线与点的逼近程度,值域为 0到1,默认值约为0.1。
InterpolationRBFAnalystParameters
    tension : Number
张力系数,用于调整结果栅格数据表面的特性,默认为40。
InterpolationRBFAnalystParameters
  Inherited zValueFieldName : String
数据集插值分析中,用于指定进行插值分析的目标字段名,插值分析不支持文本类型的字段。含义为每个插值点在插值过程中的权重,可以将所有点此字段值设置为1,即所有点在整体插值中权重相同。
InterpolationAnalystParameters
  Inherited zValueScale : Number
用于进行插值分析值的缩放比率,默认为1。
参加插值分析的值将乘以该参数值后再进行插值,也就是对进行插值分析的值进行统一的扩大或缩小。
InterpolationAnalystParameters
公共方法
  方法 定义方
   
初始化 InterpolationRBFAnalystParameters 类的新实例。
InterpolationRBFAnalystParameters
属性详细信息
expectedCount 属性
expectedCount:int

【固定点数查找】方式下,设置参与差值运算的点数。


Implementation
    public function get expectedCount():int
    public function set expectedCount(value:int):void
maxPointCountForInterpolation 属性  
maxPointCountForInterpolation:int

【块查找】方式下,设置最多参与插值的点数。默认为200。


Implementation
    public function get maxPointCountForInterpolation():int
    public function set maxPointCountForInterpolation(value:int):void
maxPointCountInNode 属性  
maxPointCountInNode:int

【块查找】方式下,设置单个块内最多参与运算点数。默认为50。


Implementation
    public function get maxPointCountInNode():int
    public function set maxPointCountInNode(value:int):void
searchMode 属性  
searchMode:String

插值运算时,查找参与运算点的方式,有固定点数查找、定长查找、块查找。必输参数。


Implementation
    public function get searchMode():String
    public function set searchMode(value:String):void

另请参见

smooth 属性  
smooth:Number

光滑系数,该值表示插值函数曲线与点的逼近程度,值域为 0到1,默认值约为0.1。


Implementation
    public function get smooth():Number
    public function set smooth(value:Number):void
tension 属性  
tension:Number

张力系数,用于调整结果栅格数据表面的特性,默认为40。


Implementation
    public function get tension():Number
    public function set tension(value:Number):void
构造函数详细信息
InterpolationRBFAnalystParameters () 构造函数
public function InterpolationRBFAnalystParameters()

初始化 InterpolationRBFAnalystParameters 类的新实例。