- 积分
- 20
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-9-11
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 dragon_ydl 于 2017-2-8 16:39 编辑
一组测站数据(约2000个)。 最大的值是75。
结果生成等值面后。 最大值是7。
- gridInterp.InterpolationMethod = InterpolationMethods.IDW_Radius;
- gridInterp.Radius = 2;
- gridInterp.MinPointNum = 1;
- double[] X = new double[aGDP.XNum];
- double[] Y = new double[aGDP.YNum];
- ContourDraw.CreateGridXY(gridInterp.GridDataSet, ref X, ref Y);
- double[,] S = stationData.Data;
- S = ContourDraw.FilterDiscreteData_Radius(S, gridInterp.Radius,
- gridInterp.GridDataSet.DataExtent, stationData.UNDEF);
- GridData gridData = ContourDraw.InterpolateDiscreteData_Radius(S,
- X, Y, gridInterp.MinPointNum, gridInterp.Radius, stationData.UNDEF);
- //Create legend scheme
- bool hasNoData = true;
- LegendScheme contourPolygonLS = LegendManage.CreateLegendSchemeFromGridData(gridData, LegendType.GraduatedColor,
- ShapeTypes.Polygon, ref hasNoData);
- ((PolygonBreak)contourPolygonLS.LegendBreaks[0]).DrawFill = false;
复制代码 调试的时候。 发现gridData.data 里面的最大值就是7了。
求大神指导。
|
-
值是1-7
|