原始线要素类为地理坐标系,如何获取以米为单位的距离?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原始线要素类为地理坐标系,如何获取以米为单位的距离?相关的知识,希望对你有一定的参考价值。

可以使用IPolycurveGeodetic.get_LengthGeodetic();方法,将要量测的IPolyline转为IPolycurveGeodetic即可。
测试代码如下:

            IPolyline polyline = feature.Shape as IPolyline;
         
            IPolycurveGeodetic polycurve = polyline as IPolycurveGeodetic;
            ILinearUnitEdit linearUnitEdit = new LinearUnitClass();

            //Define the properties for the linear unit 
            object name = Meter;
            object alias = Meter;
            object abbreviation = M;
            object remarks = Meter is the linear unit;
            object metersPerUnit = 1;
            linearUnitEdit.Define(ref name, ref alias, ref abbreviation, ref remarks, ref metersPerUnit);
            ILinearUnit pLU = linearUnitEdit as ILinearUnit;

            double distance = polycurve.get_LengthGeodetic(esrType.esriGeodeticTypeGeodesic,pLU);

 

以上是关于原始线要素类为地理坐标系,如何获取以米为单位的距离?的主要内容,如果未能解决你的问题,请参考以下文章

如何获得以米为单位的距离

将距离转换为坐标[重复]

用给定的坐标和以米为单位的距离计算新坐标

如何在 iOS 应用程序中每 1/2 秒获取步行距离(以米为单位)和方向?

如何设置以米为单位的世界坐标的转换矩阵(用于增强现实)

给定两个区域的经度和纬度,如何找到它们之间的距离(以米为单位)。如何在 SQL 中查询..?