您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“常用的gis計(jì)算方法有哪些”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“常用的gis計(jì)算方法有哪些”這篇文章吧。
在系統(tǒng)開(kāi)發(fā)中,有時(shí)會(huì)用到一些常用的空間算法,引用一些類(lèi)庫(kù)是可以解決問(wèn)題,但是有時(shí)類(lèi)庫(kù)的運(yùn)行效率比較慢,引用的東西比較多,如果需要的方法不多,可以寫(xiě)一些簡(jiǎn)單的計(jì)算方法。
下邊分享幾個(gè)常用的gis計(jì)算方法:
//判斷點(diǎn)是否在面里
public bool IsPointInPolygon(List<CVector> poly, CVector point)
{
int i, j;
bool c = false;
for (i = 0, j = poly.Count - 1; i < poly.Count; j = i++)
{
if ((((poly[i].VY <= point.VY) && (point.VY < poly[j].VY))
|| ((poly[j].VY <= point.VY) && (point.VY < poly[i].VY)))
&& (point.VX < (poly[j].VX - poly[i].VX) * (point.VY - poly[i].VY)
/ (poly[j].VY - poly[i].VY) + poly[i].VX))
{
c = !c;
}
}
return c;
}
//計(jì)算弧度
public double Rad(double d)
{
return d * Math.PI / 180.0;
}
//計(jì)算角度
public static double RAngle(double d)
{
return d * 180.0 / Math.PI;
}
//計(jì)算兩個(gè)坐標(biāo)的中心點(diǎn)
public double[] ComputeMidPoint(double lat1, double long1, double lat2, double long2)
{
lat1 = Rad(lat1);
long1 = Rad(long1);
lat2 = Rad(lat2);
long2 = Rad(long2);
var Bx = Math.Cos(lat2) * Math.Cos(long2 - long1);
var By = Math.Cos(lat2) * Math.Sin(long2 - long1);
var _rlat = Math.Atan2(Math.Sin(lat1) + Math.Sin(lat2), Math.Sqrt((Math.Cos(lat1) + Bx) * (Math.Cos(lat1) + Bx) + By * By));
var _rlong = long1 + Math.Atan2(By, Math.Cos(lat1) + Bx);
return new double[] { _rlat, _rlong };
}
//計(jì)算一批點(diǎn)的四至坐標(biāo)
public OCExtent GetPointsExtent(List<CVector> PList)
{
OCExtent cET = new OCExtent();
for (int i = 0; i < PList.Count; i++)
{
CVector aP = PList[i];
if (i == 0)
{
cET.minX = aP.VX;
cET.maxX = aP.VX;
cET.minY = aP.VY;
cET.maxY = aP.VY;
}
else
{
if (cET.minX > aP.VX)
{
cET.minX = aP.VX;
}
else if (cET.maxX < aP.VX)
{
cET.maxX = aP.VX;
}
if (cET.minY > aP.VY)
{
cET.minY = aP.VY;
}
else if (cET.maxY < aP.VY)
{
cET.maxY = aP.VY;
}
}
}
return cET;
}
以上是“常用的gis計(jì)算方法有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。