Class: InterpolationAnalystService

SuperMap.InterpolationAnalystService

插值分析服务类。 插值分析可以将有限的采样点数据,通过插值算法对采样点周围的数值情况进行预测,可以掌握研究区域内数据的总体分布状况,从而使采样的离散点不仅仅反映其所在位置的数值情况, 还可以反映区域的数值分布。目前SuperMap iServer的插值功能提供从点数据集插值得到栅格数据集的功能,支持以下常用的内插方法, 包括:反距离加权插值、克吕金(Kriging)插值法、样条(径向基函数,Radial Basis Function)插值、点密度插值。

new SuperMap.InterpolationAnalystService(url, options)

common/iServer/InterpolationAnalystService.js, line 13
Name Type Description
url string

服务的访问地址。如 http://localhost:8090/iserver/services/spatialanalyst-changchun/restjsr/spatialanalyst。

options Object

参数。

Name Type Description
eventListeners Object

需要被注册的监听器对象。

crossOrigin boolean 可选

是否允许跨域请求。

headers Object 可选

请求头。

Example
例如:
(start code)
var myTInterpolationAnalystService = new SuperMap.InterpolationAnalystService(url);
myTInterpolationAnalystService.events.on({
    "processCompleted": processCompleted,
    "processFailed": processFailed
    }
);
(end)

Extends

Members

查询结果返回格式,目前支持 iServerJSON 和 GeoJSON 两种格式,参数格式为 "ISERVER","GEOJSON"。

Default Value:
SuperMap.DataFormat.GEOJSON

modestring

插值分析类型。

Methods

inherited ajaxPolling()

common/iServer/CommonServiceBase.js, line 247

请求失败后,如果剩余请求失败次数不为 0,重新获取 URL 发送请求

inherited calculatePollingTimes()

common/iServer/CommonServiceBase.js, line 265

计算剩余请求失败执行次数。

destroy()

common/iServer/InterpolationAnalystService.js, line 53

释放资源,将引用资源的属性置空。

inherited getCredential(url){SuperMap.Credential}

common/iServer/CommonServiceBase.js, line 189

获取凭据信息

Name Type Description
url string

服务地址。

Returns:
Type Description
SuperMap.Credential 凭据信息对象。

inherited getUrlCompleted(result)

common/iServer/CommonServiceBase.js, line 220

请求成功后执行此方法。

Name Type Description
result Object

服务器返回的结果对象。

inherited getUrlFailed(result)

common/iServer/CommonServiceBase.js, line 231

请求失败后执行此方法。

Name Type Description
result Object

服务器返回的结果对象。

inherited isServiceSupportPolling()

common/iServer/CommonServiceBase.js, line 292

判断服务是否支持轮询。

processAsync(parameter)

common/iServer/InterpolationAnalystService.js, line 63

负责将客户端的查询参数传递到服务端。

Name Type Description
parameter SuperMap.InterpolationAnalystParameters

插值分析参数类。

inherited request(options)

common/iServer/CommonServiceBase.js, line 149
Name Type Description
options Object

参数。

Name Type Default Description
method string 'GET' 可选

请求方式,包括 "GET","POST","PUT","DELETE"。

url string 可选

发送请求的地址。

params Object 可选

作为查询字符串添加到 URL 中的一组键值对,此参数只适用于 GET 方式发送的请求。

data string 可选

发送到服务器的数据。

success function

请求成功后的回调函数。

failure function

请求失败后的回调函数。

scope Object 可选

如果回调函数是对象的一个公共方法,设定该对象的范围。

isInTheSameDomain boolean 可选

请求是否在当前域中。

withCredentials boolean false 可选

请求是否携带 cookie。

crossOrigin boolean 可选

是否允许跨域请求。

headers Object 可选

请求头。

inherited serviceProcessCompleted(result)

common/iServer/SpatialAnalystBase.js, line 41

分析完成,执行此方法。

Name Type Description
result Object

服务器返回的结果对象。

inherited serviceProcessFailed(result)

common/iServer/CommonServiceBase.js, line 316

状态失败,执行此方法。

Name Type Description
result Object

服务器返回的结果对象。

inherited toGeoJSONResult(result)

common/iServer/SpatialAnalystBase.js, line 67

将含有 geometry 的数据转换为 GeoJSON 格式。

Name Type Description
result Object

服务器返回的结果对象。