oracle多边形经纬范围筛选_根据经纬度计算多边形的面积(calculcate polygon's area by lon and lat)...

该博客介绍了一种在Oracle中根据经纬度坐标计算多边形面积的方法,利用坐标集合,通过数学公式转换角度为弧度,并结合地球半径计算出多边形的面积。代码示例展示了具体的实现过程。
摘要由CSDN通过智能技术生成

代码如下:

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).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值