Skip to content

Commit b937d20

Browse files
committed
[fix]文档注释修改 review by jinny
1 parent 82a2965 commit b937d20

13 files changed

+18
-19
lines changed

src/common/commontypes/Vector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export class Vector extends Feature {
263263
* @property {number} [graphicHeight] - 外部图表的高宽度。
264264
* @property {number} [graphicOpacity] - 外部图表的不透明度(0-1)。
265265
* @property {number} [graphicXOffset] - 外部图表沿着x方向的偏移量。
266-
* @property {number} [graphicYOffset] - 外部图表沿着y方向的偏移量 Pixel
266+
* @property {number} [graphicYOffset] - 外部图表沿着y方向的偏移量。
267267
* @property {number} [rotation] - 一个图表沿着其中心点(或者偏移中心指定点)在顺时针方向旋转。
268268
* @property {number} [graphicZIndex] - 渲染时使用的索引值。
269269
* @property {string} [graphicName='circle'] - 渲染点时图标使用的名字。支持"circle" , "square", "star", "x", "cross", "triangle"。

src/common/commontypes/geometry/Point.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {Util} from '../Util';
1515
* @param {number} x - x 坐标。
1616
* @param {number} y - y 坐标。
1717
* @param {string} [type = 'Point'] - 点的类型。
18-
* @param {number} [tag] - 额外的属性,比如差值分析中的 Z 值。
18+
* @param {number} [tag] - 额外的属性,比如插值分析中的 Z 值。
1919
* @example
2020
* var point = new GeometryPoint(-111.04, 45.68);
2121
* @usage
@@ -39,7 +39,7 @@ export class Point extends Geometry {
3939

4040
/**
4141
* @member {string} GeometryPoint.prototype.tag
42-
* @description 用来存储额外的属性,比如差值分析中的 Z 值。
42+
* @description 用来存储额外的属性,比如插值分析中的 Z 值。
4343
*/
4444
this.tag = (tag || tag == 0) ? parseFloat(tag) : null;
4545

src/common/iServer/ClipParameter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {ServerGeometry} from './ServerGeometry';
1212
* @param {Object} options - 可选参数。
1313
* @param {string} [options.clipDatasetName] - 裁剪的数据集名。
1414
* @param {string} [options.clipDatasourceName] - 裁剪的数据集所在数据源的名字。
15-
* @param {GeometryPolygon|L.Polygon|L.GeoJSON|ol.geom.Polygon|ol.format.GeoJSON|GeoJSONObject}} [options.clipRegion] - 用户指定的裁剪区域。
15+
* @param {GeometryPolygon|L.Polygon|L.GeoJSON|ol.geom.Polygon|ol.format.GeoJSON|GeoJSONObject} [options.clipRegion] - 用户指定的裁剪区域。
1616
* @param {boolean} [options.isClipInRegion=true] - 是否对裁剪区内的数据集进行裁剪。
1717
* @param {boolean} [options.isExactClip=true] - 是否使用精确裁剪。
1818
* @usage

src/common/iServer/CreateDatasetParameters.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {Util} from '../commontypes/Util';
1111
* @param {Object} options - 参数。
1212
* @param {string} options.datasourceName - 数据源名称,此为必选参数。
1313
* @param {string} options.datasetName - 数据集名称,此为必选参数。
14-
* @param {string} options.datasetType - 数据集类型。目前支持创建的出聚集类型有:点、线、面、文本、复合(CAD)和属性数据集。
14+
* @param {string} options.datasetType - 数据集类型。目前支持创建的数聚集类型有:点、线、面、文本、复合(CAD)和属性数据集。
1515
* @usage
1616
*/
1717
export class CreateDatasetParameters {
@@ -35,7 +35,7 @@ export class CreateDatasetParameters {
3535

3636
/**
3737
* @member {string} CreateDatasetParameters.prototype.datasetType
38-
* @description 数据集类型。目前支持创建的出聚集类型有:点、线、面、文本、复合(CAD)和属性数据集。
38+
* @description 数据集类型。目前支持创建的数聚集类型有:点、线、面、文本、复合(CAD)和属性数据集。
3939
*/
4040
this.datasetType = null;
4141

src/common/iServer/InterpolationAnalystParameters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class InterpolationAnalystParameters {
111111

112112
/**
113113
* @member {string} [InterpolationAnalystParameters.prototype.InterpolationAnalystType="dataset"]
114-
* @description 插值分析类型。差值分析包括数据集插值分析和几何插值分析两类
114+
* @description 插值分析类型。插值分析包括数据集插值分析和几何插值分析两类
115115
* "dataset" 表示对数据集进行插值分析,"geometry" 表示对离散点数组进行插值分析。
116116
*/
117117
this.InterpolationAnalystType = "dataset";

src/common/iServer/InterpolationDensityAnalystParameters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {InterpolationAnalystParameters} from './InterpolationAnalystParameters';
88
* @class InterpolationDensityAnalystParameters
99
* @deprecatedclass SuperMap.InterpolationDensityAnalystParameters
1010
* @category iServer SpatialAnalyst InterpolationAnalyst
11-
* @classdesc 点密度差值分析参数类
11+
* @classdesc 点密度插值分析参数类
1212
* @param {Object} options - 参数。
1313
* @param {(SuperMap.Bounds|L.Bounds|L.LatLngBounds|ol.extent|mapboxgl.LngLatBounds|GeoJSONObject)} options.bounds - 插值分析的范围,用于确定结果栅格数据集的范围。
1414
* @param {string} options.outputDatasourceName - 插值分析结果数据源的名称。

src/common/iServer/InterpolationIDWAnalystParameters.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {InterpolationAnalystParameters} from './InterpolationAnalystParameters';
1515
* @param {string} options.outputDatasetName - 插值分析结果数据集的名称。
1616
* @param {string} options.outputDatasourceName - 插值分析结果数据源的名称。
1717
* @param {string} [options.zValueFieldName] - 进行插值分析的字段名称,插值分析不支持文本类型的字段。当插值分析类型(SuperMap.InterpolationAnalystType)为 dataset 时,此为必选参数。
18-
* @param {number} [options.expectedCount=12] - 【固定点数查找】方式下,设置待查找的点数,即参与差值运算的点数
18+
* @param {number} [options.expectedCount=12] - 【固定点数查找】方式下,设置待查找的点数,即参与插值运算的点数
1919
* @param {number} [options.searchRadius=0] - 【定长查找】方式下,设置查找半径,即参与运算点的查找范围,与点数据集单位相同。
2020
* @param {number} [options.power=2] - 距离权重计算的幂次。
2121
* @param {number} [options.zValueScale=1] - 用于进行插值分析值的缩放比率。
@@ -66,7 +66,7 @@ export class InterpolationIDWAnalystParameters extends InterpolationAnalystParam
6666

6767
/**
6868
* @member {number} [InterpolationIDWAnalystParameters.prototype.expectedCount=12]
69-
* @description 【固定点数查找】方式下,设置待查找的点数,即参与差值运算的点数
69+
* @description 【固定点数查找】方式下,设置待查找的点数,即参与插值运算的点数
7070
*/
7171
this.expectedCount = 12;
7272
if (options) {

src/common/iServer/InterpolationKrigingAnalystParameters.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import {InterpolationAnalystParameters} from './InterpolationAnalystParameters';
1212
* @category iServer SpatialAnalyst InterpolationAnalyst
1313
* @classdesc 克吕金插值分析参数类。通过该类可以设置克吕金插值分析所需的参数。
1414
* 克吕金(Kriging)法为地统计学上一种空间数据内插处理方法,主要的目的是利用各数据点间变异数(variance)的大小来推求某一未知点与各已知点的权重关系,
15-
* 再由各数据点的值和其与未知点的权重关系推求未知点的值。Kriging 法最大的特色不仅是提供一个最小估计误差的预测值,并且可明确的指出误差值的大小
15+
* 再由各数据点的值和其与未知点的权重关系推求未知点的值。Kriging 法最大的特色不仅是提供一个最小估计误差的预测值,并且可明确地指出误差值的大小
1616
* 一般而言,许多地质参数,如地形面,本身即具有连续性,故在一段距离内的任两点必有空间上的关系。反之,在一不规则面上的两点若相距甚远,
1717
* 则在统计意义上可视为互为独立 (stastically indepedent)。这种随距离而改变的空间上连续性,可用半变异图 (semivariogram) 来表现。
1818
* 因此,若想由已知的散乱点来推求某一未知点的值,则可利用半变异图推求各已知点与未知点的空间关系,即以下四个参数:<br>
19-
* 1.块金值(nugget):当采样点间距为0时,理论上半变异函数值为0,但时间上两采样点非常接近时半变异函数值并不为0,即产生了上图所示的块金效应
19+
* 1.块金值(nugget):当采样点间距为0时,理论上半变异函数值为0,但时间上两采样点非常接近时半变异函数值并不为0,即产生了块金效应
2020
* 对应的半变异函数值为块金值。块金值可能由于测量误差或者空间变异产生。<br>
2121
* 2.基台值(sill):随着采样点间距的不断增大,半变异函数的值趋向一个稳定的常数,该常数成为基台值。到达基台值后,半变异函数的值不再随采样点间距而改变,
2222
* 即大于此间距的采样点不再具有空间相关性。<br>
@@ -27,7 +27,7 @@ import {InterpolationAnalystParameters} from './InterpolationAnalystParameters';
2727
* 计算量大,且变异函数有时需要根据经验人为选定。
2828
*
2929
* 由上述可知,半变异函数是克吕金插值的关键,因此选择合适的半变异函数模型非常重要,SuperMap 提供了以下三种半变异函数模型:<br>
30-
* 1.指数型(EXPONENTIAL):适用于空间相关关系随样本间距的增加成指数递减的情况,其空间自相关关系在样本间距的无穷远处完全消失。<br>
30+
* 1.指数型(EXPONENTIAL):适用于空间相关关系随样本间距的增加呈指数递减的情况,其空间自相关关系在样本间距的无穷远处完全消失。<br>
3131
* 2.球型(SPHERICAL):适用于空间自相关关系随样本间距的增加而逐渐减少,直到超出一定的距离时空间自相关关系消失的情况。<br>
3232
* 3.高斯型(GAUSSIAN):适用于半变异函数值渐进地逼近基台值的情况。<br>
3333
*
@@ -158,7 +158,7 @@ export class InterpolationKrigingAnalystParameters extends InterpolationAnalystP
158158

159159
/**
160160
* @member {number} [InterpolationKrigingAnalystParameters.prototype.expectedCount=12]
161-
* @description 【固定点数查找】方式下,设置待查找的点数,即参与差值运算的点数,默认值为12。
161+
* @description 【固定点数查找】方式下,设置待查找的点数,即参与插值运算的点数,默认值为12。
162162
* 【定长查找】方式下,设置查找的最小点数,默认值为12。
163163
*/
164164
this.expectedCount = 12;

src/common/iServer/InterpolationRBFAnalystParameters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {InterpolationAnalystParameters} from './InterpolationAnalystParameters';
1818
* @param {string} [options.zValueFieldName] - 存储用于进行插值分析的字段名称,插值分析不支持文本类型的字段。当插值分析类型(SuperMap.InterpolationAnalystType)为 dataset 时,此为必选参数。
1919
* @param {number} [options.smooth=0.1] - 光滑系数,该值表示插值函数曲线与点的逼近程度,值域为0到1。
2020
* @param {number} [options.tension=40] - 张力系数,用于调整结果栅格数据表面的特性。
21-
* @param {number} [options.expectedCount=12] - 【固定点数查找】方式下,设置参与差值运算的点数
21+
* @param {number} [options.expectedCount=12] - 【固定点数查找】方式下,设置参与插值运算的点数
2222
* @param {number} [options.searchRadius=0] - 【定长查找】方式下,设置参与运算点的查找范围。
2323
* @param {number} [options.maxPointCountForInterpolation=200] - 【块查找】方式下,设置最多参与插值的点数。
2424
* @param {number} [options.maxPointCountInNode=50] - 【块查找】方式下,设置单个块内最多参与运算点数。

src/common/iServer/SummaryRegionJobParameter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { MappingParameters } from './MappingParameters';
1919
* @param {StatisticAnalystMode} [options.standardStatisticModes] - 标准属性字段的统计模式。standardSummaryFields 为 true 时必填。
2020
* @param {StatisticAnalystMode} [options.weightedStatisticModes] - 权重字段的统计模式。weightedSummaryFields 为 true 时必填。
2121
* @param {boolean} [options.sumShape=true] - 是否统计长度或面积。
22-
* @param {boolean} [options.standardSummaryFields=false] - 是否以标准属字段统计
22+
* @param {boolean} [options.standardSummaryFields=false] - 是否以标准属性字段统计
2323
* @param {boolean} [options.weightedSummaryFields=false] - 是否以权重字段统计。
2424
* @param {number} [options.resolution=100] - 网格大小。
2525
* @param {number} [options.meshType=0] - 网格面汇总类型。

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy