<i id='1m514'><tr id='1m514'><dt id='1m514'><q id='1m514'><span id='1m514'><b id='1m514'><form id='1m514'><ins id='1m514'></ins><ul id='1m514'></ul><sub id='1m514'></sub></form><legend id='1m514'></legend><bdo id='1m514'><pre id='1m514'><center id='1m514'></center></pre></bdo></b><th id='1m514'></th></span></q></dt></tr></i><div id='1m514'><tfoot id='1m514'></tfoot><dl id='1m514'><fieldset id='1m514'></fieldset></dl></div>
    1. <small id='1m514'></small><noframes id='1m514'>

        <bdo id='1m514'></bdo><ul id='1m514'></ul>
      <tfoot id='1m514'></tfoot>

      <legend id='1m514'><style id='1m514'><dir id='1m514'><q id='1m514'></q></dir></style></legend>
    2. 检测地理位置是否在复杂多边形中

      时间:2023-09-17

        1. <small id='xhzI5'></small><noframes id='xhzI5'>

          • <bdo id='xhzI5'></bdo><ul id='xhzI5'></ul>
            1. <tfoot id='xhzI5'></tfoot>

            2. <i id='xhzI5'><tr id='xhzI5'><dt id='xhzI5'><q id='xhzI5'><span id='xhzI5'><b id='xhzI5'><form id='xhzI5'><ins id='xhzI5'></ins><ul id='xhzI5'></ul><sub id='xhzI5'></sub></form><legend id='xhzI5'></legend><bdo id='xhzI5'><pre id='xhzI5'><center id='xhzI5'></center></pre></bdo></b><th id='xhzI5'></th></span></q></dt></tr></i><div id='xhzI5'><tfoot id='xhzI5'></tfoot><dl id='xhzI5'><fieldset id='xhzI5'></fieldset></dl></div>
              <legend id='xhzI5'><style id='xhzI5'><dir id='xhzI5'><q id='xhzI5'></q></dir></style></legend>

                <tbody id='xhzI5'></tbody>

                本文介绍了检测地理位置是否在复杂多边形中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我们目前正在使用以下算法来检测地理点是否位于复杂多边形内.这可以正常工作,除非多边形穿过 180° 经线.

                We are currently using the following algorithm to detect if a geographic point is inside a complex polygon or not. This works fine, except when the polygon crosses the 180° longitude line.

                例如在多边形 160,65,0 160,15,0 -160,15,0 -160,65,0 160,65,0 中未检测到点 (-170, 60)

                For example the point (-170, 60) is not detected in polygon 160,65,0 160,15,0 -160,15,0 -160,65,0 160,65,0

                看下图:[图片]http://tinypic.com/r/14x2xl1[/img]我想要红色框中的所有内容.不是黄框!

                Look at the following image: [Img]http://tinypic.com/r/14x2xl1[/img] I want everything in the red box. Not the yellow box!

                    public static bool IsCoordinateInPolygon(IList<KMLCoordinate> polygon, KMLCoordinate testPoint)
                    {
                
                        bool result = false;
                        int j = polygon.Count - 1;
                        for (int i = 0; i < polygon.Count; i++)
                        {
                            if (polygon[i].Latitude < testPoint.Latitude && polygon[j].Latitude >= testPoint.Latitude || polygon[j].Latitude < testPoint.Latitude && polygon[i].Latitude >= testPoint.Latitude)
                            {
                                if (polygon[i].Longitude + (testPoint.Latitude - polygon[i].Latitude) / (polygon[j].Latitude - polygon[i].Latitude) * (polygon[j].Longitude - polygon[i].Longitude) < testPoint.Longitude)
                                {
                                    result = !result;
                                }
                            }
                            j = i;
                        }
                        return result;
                
                    }
                

                有人有更好的算法吗?

                推荐答案

                球坐标系有它的怪癖

                为了避免它们,请改用 3D 正交/正交笛卡尔坐标系

                To avoid them use 3D orthogonal/orthonormal cartesian coordinate system instead

                1. 转换多边形顶点和地理位置

                所以 (long,lat,alt) ->(x,y,z).这里您可以找到操作方法.您不需要仅应用第一个球面到 3D 笛卡尔变换的局部变换(项目符号 #1).

                so (long,lat,alt) -> (x,y,z). here you find how to do it. You do not need to apply local transform just the first spheric to 3D cartesian transformation (bullet #1.)

                使用任何内部多边形测试...

                我通常会计算从您的地理位置投射到任何方向的线与多边形边界线之间的交叉点数.

                I usually count the number of intersections between line cast from your geolocation to any direction and polygon boundary lines.

                • 如果是奇数则点在里面
                • 如果是偶数,那么点在外面
                • 如果点位于多边形的任何一条线上,那么它在里面
                • 如果您的投射线击中任何顶点,请记住(不要计算此顶点的多次击中)或稍微改变方向并重试

                [备注]

                别忘了把所有的都当作 3D 向量而不是 2D 来处理!!!

                这篇关于检测地理位置是否在复杂多边形中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:在 Windows Server Core Docker 上安装 .NET Framework 3.5 下一篇:来自 IP 地址的经度和纬度值

                相关文章

              • <legend id='chenC'><style id='chenC'><dir id='chenC'><q id='chenC'></q></dir></style></legend>
                <i id='chenC'><tr id='chenC'><dt id='chenC'><q id='chenC'><span id='chenC'><b id='chenC'><form id='chenC'><ins id='chenC'></ins><ul id='chenC'></ul><sub id='chenC'></sub></form><legend id='chenC'></legend><bdo id='chenC'><pre id='chenC'><center id='chenC'></center></pre></bdo></b><th id='chenC'></th></span></q></dt></tr></i><div id='chenC'><tfoot id='chenC'></tfoot><dl id='chenC'><fieldset id='chenC'></fieldset></dl></div>

                1. <tfoot id='chenC'></tfoot>
                    <bdo id='chenC'></bdo><ul id='chenC'></ul>

                    <small id='chenC'></small><noframes id='chenC'>