我是靠谱客的博主 冷静蜻蜓,这篇文章主要介绍ArcGIS中求面积或周长,现在分享给大家,希望可以做个参考。

点一下栅格计算器的帮助,会有下面的解法

To calculate area:

Dim Output as double
Dim pArea as Iarea
Set pArea = [shape]
Output = pArea.area

To calculate length or perimeter (depending on whether the features are lines or polygons):

Dim Output as double
Dim pCurve as ICurve
Set pCurve = [shape]
Output = pCurve.Length

To add the x coordinate of points:

Dim Output As Double
Dim pPoint As IPoint
Set pPoint = [Shape]
Output = pPoint.X

To add the x coordinate of polygon centroids:

Dim Output As Double
Dim pArea As IArea
Set pArea = [Shape]

Output = pArea.Centroid.X

 

新建立一个字段,在字段上有一个caculator geometry 在点一下,会看到什么……

 

导入到GDB中,又会看到什么……

 

utility下面有一个工具也,看到了吗?

转载于:https://www.cnblogs.com/zuiyirenjian/archive/2009/08/11/1543614.html

最后

以上就是冷静蜻蜓最近收集整理的关于ArcGIS中求面积或周长的全部内容,更多相关ArcGIS中求面积或周长内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部