根据经纬度计算多边形的面积(calculcate polygon's area by lon and lat)

1 篇文章 0 订阅

代码如下:

private static double CalculatePolygonArea(CoordinateCollection coordinates)
{
	double area = 0;
		
	if (coordinates.Count > 2)
	{
		var coordlist = coordinates.ToList();
		for (var i = 0; i < coordlist.Count - 1; i++)
		{
			SharpKml.Base.Vector p1 = coordlist[i];
			SharpKml.Base.Vector p2 = coordlist[i + 1];
			area += ConvertToRadian(p2.Longitude - p1.Longitude) * (2 + Math.Sin(ConvertToRadian(p1.Latitude)) + Math.Sin(ConvertToRadian(p2.Latitude)));
		}
		
		area = area * 6378137.0 * 6378137.0 / 2.0;
	}
	
	return Math.Abs(area);
}
		
private static double ConvertToRadian(double input)
{
	return input * Math.PI / 180;
}

来源:

Calculate the area of polygon according to the longitude and latitude.

assuming your source is WGS1984, if not then you'll need to adjust the ellipsoid used by the second line.

area = rad(x2 - x1) * (2 + sin(rad(y1)) + sin(rad(y2))) + rad(x3 - x2) * (2 + sin(rad(y2)) + sin(rad(y3))) + rad(x4 - x3) * (2 + sin(rad(y3)) + sin(rad(y4))) + rad(x5 - x4) * (2 + sin(rad(y4)) + sin(rad(y5)))

area = abs(area * 6378137.0 * 6378137.0 / 2.0)
rad() is a function that converts Degrees to Radians (i.e. Degrees * PI / 180).

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值