我是靠谱客的博主 冷静蜻蜓,最近开发中收集的这篇文章主要介绍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中求面积或周长所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部