【问题标题】:detecting point within polygon (latitude and longitude) in PHP在PHP中检测多边形(纬度和经度)内的点
【发布时间】:2016-06-27 20:27:01
【问题描述】:

我有数组(多边形)

[[-24.837452, -65.452484],[-24.837433,  -65.450645],[-24.828865000000004,  -65.449997],[-24.828709,  -65.451607],[-24.837452,  -65.452484]]

和点-24.8330000,-65.452484

如何检测点是否在多边形内?

如果我使用示例数组的话。 如果你使用真实坐标,它就不起作用......

<?php

        class pointLocation {
            var $pointOnVertex = true; // Checar si el punto se encuentra exactamente en uno de los vértices?

            function pointLocation() {
            }

                function pointInPolygon($point, $polygon, $pointOnVertex = true) {
                $this->pointOnVertex = $pointOnVertex;

                // Transformar la cadena de coordenadas en matrices con valores "x" e "y"
                $point = $this->pointStringToCoordinates($point);
                $vertices = array(); 
                foreach ($polygon as $vertex) {
                    $vertices[] = $this->pointStringToCoordinates($vertex); 
                }

                // Checar si el punto se encuentra exactamente en un vértice
                if ($this->pointOnVertex == true and $this->pointOnVertex($point, $vertices) == true) {
                    return "vertex";
                }

                // Checar si el punto está adentro del poligono o en el borde
                $intersections = 0; 
                $vertices_count = count($vertices);

                for ($i=1; $i < $vertices_count; $i++) {
                    $vertex1 = $vertices[$i-1]; 
                    $vertex2 = $vertices[$i];
                    if ($vertex1['y'] == $vertex2['y'] and $vertex1['y'] == $point['y'] and $point['x'] > min($vertex1['x'], $vertex2['x']) and $point['x'] < max($vertex1['x'], $vertex2['x'])) { // Checar si el punto está en un segmento horizontal
                        return "boundary";
                    }
                    if ($point['y'] > min($vertex1['y'], $vertex2['y']) and $point['y'] <= max($vertex1['y'], $vertex2['y']) and $point['x'] <= max($vertex1['x'], $vertex2['x']) and $vertex1['y'] != $vertex2['y']) { 
                        $xinters = ($point['y'] - $vertex1['y']) * ($vertex2['x'] - $vertex1['x']) / ($vertex2['y'] - $vertex1['y']) + $vertex1['x']; 
                        if ($xinters == $point['x']) { // Checar si el punto está en un segmento (otro que horizontal)
                            return "boundary";
                        }
                        if ($vertex1['x'] == $vertex2['x'] || $point['x'] <= $xinters) {
                            $intersections++; 
                        }
                    } 
                } 
                // Si el número de intersecciones es impar, el punto está dentro del poligono. 
                if ($intersections % 2 != 0) {
                    return "inside";
                } else {
                    return "outside";
                }
            }

            function pointOnVertex($point, $vertices) {
                foreach($vertices as $vertex) {
                    if ($point == $vertex) {
                        return true;
                    }
                }

            }

            function pointStringToCoordinates($pointString) {
                $coordinates = explode(" ", $pointString);
                return array("x" => $coordinates[0], "y" => $coordinates[1]);
            }

        }


    //original examples is OK
    //$points = array("50 70","70 40","-20 30","100 10","-10 -10","40 -20","110 -20");
    //$polygon = array("-50 30","50 70","100 50","80 10","110 -10","110 -30","-20 -50","-30 -40","10 -10","-10 10","-30 -20","-50 30");


        $json="[[-24.837452, -65.452484],[-24.837433,  -65.450645],[-24.828865000000004,  -65.449997],[-24.828709,  -65.451607],[-24.837452,  -65.452484]]";
        $resultado = str_replace(",", "", $json);
        $resultado = str_replace("[[", "", $resultado);
        $resultado = str_replace("]]", "", $resultado);

        $polygon=explode("][", $resultado);

        $points=array("-24.8330000 -65.452484");

         //print_r ($resultado);
        $pointLocation = new pointLocation();

        // Las últimas coordenadas tienen que ser las mismas que las primeras, para "cerrar el círculo"
        foreach($points as $key => $point) {
            echo "point " . ($key+1) . " ($point): " . $pointLocation->pointInPolygon($point, $polygon) . "<br>";
        }
        ?>

这些数据是真实的,点在多边形内

[[-24.837452, -65.452484],[-24.837433, -65.450645],[-24.828865000000004, -65.449997],[-24.828709, -65.451607],[-24.848452, -65.4]]

和点-24.8330000,-65.452484

【问题讨论】:

  • 您应该发布您的代码并告诉我们为什么它不起作用,这将为我们提供一个很好的起点
  • 使用相同的示例,但使用真实坐标我无法让它工作..
  • 您的点不在多边形内 (fiddle)。

标签: php google-maps


【解决方案1】:
function inside($point, $fenceArea) {
$x = $point['lat']; $y = $point['lng'];

$inside = false;
for ($i = 0, $j = count($fenceArea) - 1; $i <  count($fenceArea); $j = $i++) {
    $xi = $fenceArea[$i]['lat']; $yi = $fenceArea[$i]['lng'];
    $xj = $fenceArea[$j]['lat']; $yj = $fenceArea[$j]['lng'];

    $intersect = (($yi > $y) != ($yj > $y))
        && ($x < ($xj - $xi) * ($y - $yi) / ($yj - $yi) + $xi);
    if ($intersect) $inside = !$inside;
}

return $inside;
}
echo inside($point,$fenceArea);

$fenceArea => 多个纬度 lng 数组 $fenceArea=json_decode('[{"lat":15.20184549675828,"lng":73.97872613764991},{"lat":15.10939000042012,"lng":73.93821405268898},{"lat “:15.035131321967592” LNG “:74.00619195796241},{” LAT “:14.991027988389707” LNG “:74.05288385249366},{” LAT “:14.97268353612274,” LNG “:74.10815881587257},{” LAT “:15.08885107597101,” LNG“: 74.17785333491554},{ “LAT”:15.179658827735558 “LNG”:74.16652368403663},{ “LAT”:15.245254746972826 “LNG”:74.18746637202491},{ “LAT”:15.31261799705796, “LNG”:74.1534774193882},{ “LAT”: 15.35260926883264, “LNG”:74.06195113314038},{ “LAT”:15.396694714469158 “LNG”:73.96676107157123},{ “LAT”:15.480490697370463 “LNG”:73.91443209172701},{ “LAT”:15.485848509162427 “LNG”:73.84096243101556} ,{"lat":15.58045246934704,"lng":73.83169271666009},{"lat":15.596325797024097,"lng":73.75410177427727},{"lat":15.406706231349043,"lng":7'72}965)2; $point => 搜索特定的 lat lng $point=["lat": 15.381533561369851, "lng": 73.90972848645542];

如果该点在 fenceArea 内,则返回 true,否则返回 false。

【讨论】:

    【解决方案2】:

    如果您只是想使用 Google 地图检查多边形是否包含您的点,您可以尝试:Google Maps API

    如果您想在 PHP 中计算它,那么您的问题与此重复:Check if Google Map Point is in polygon from PHP

    【讨论】:

      【解决方案3】:

      以下是您的 Google Maps API 问题的有效实现(因为您已标记它):jsFiddle

      google.maps.geometry.poly.containsLocation(testPointCoords, polygonObject) 如果点在多边形内,则返回 true;如果点在多边形外,则返回 false。

      有关几何库的更多信息在这里:Google Maps Geometry Library

      还有 containsLocation() 函数:contains Location()

      【讨论】:

        【解决方案4】:

        这里的另一个答案可能是您最好的选择,但如果由于某种原因它不起作用,您可能想尝试Ray-casting algorithm. 的一个版本,其他一些用户已经尝试过了,而您可以参考here。祝你好运!

        【讨论】:

          【解决方案5】:

          已经解决了更多的坐标空间

              <?php
              /*
              Descripción: El algoritmo del punto en un polígono permite comprobar mediante
              programación si un punto está dentro de un polígono o fuera de ello.
              Autor: Michaël Niessen (2009)
              Sito web: AssemblySys.com
          
              Si este código le es útil, puede mostrar su
              agradecimiento a Michaël ofreciéndole un café ;)
              PayPal: michael.niessen@assemblysys.com
          
              Mientras estos comentarios (incluyendo nombre y detalles del autor) estén
              incluidos y SIN ALTERAR, este código está distribuido bajo la GNU Licencia
              Pública General versión 3: http://www.gnu.org/licenses/gpl.html
              */
          
              class pointLocation {
                  var $pointOnVertex = true; // Checar si el punto se encuentra exactamente en uno de los vértices?
          
                  function pointLocation() {
                  }
          
                      function pointInPolygon($point, $polygon, $pointOnVertex = true) {
                      $this->pointOnVertex = $pointOnVertex;
          
                      // Transformar la cadena de coordenadas en matrices con valores "x" e "y"
                      $point = $this->pointStringToCoordinates($point);
                      $vertices = array(); 
                      foreach ($polygon as $vertex) {
                          $vertices[] = $this->pointStringToCoordinates($vertex); 
                      }
          
                      // Checar si el punto se encuentra exactamente en un vértice
                      if ($this->pointOnVertex == true and $this->pointOnVertex($point, $vertices) == true) {
                          return "vertex";
                      }
          
                      // Checar si el punto está adentro del poligono o en el borde
                      $intersections = 0; 
                      $vertices_count = count($vertices);
          
                      for ($i=1; $i < $vertices_count; $i++) {
                          $vertex1 = $vertices[$i-1]; 
                          $vertex2 = $vertices[$i];
                          if ($vertex1['y'] == $vertex2['y'] and $vertex1['y'] == $point['y'] and $point['x'] > min($vertex1['x'], $vertex2['x']) and $point['x'] < max($vertex1['x'], $vertex2['x'])) { // Checar si el punto está en un segmento horizontal
                              return "boundary";
                          }
                          if ($point['y'] > min($vertex1['y'], $vertex2['y']) and $point['y'] <= max($vertex1['y'], $vertex2['y']) and $point['x'] <= max($vertex1['x'], $vertex2['x']) and $vertex1['y'] != $vertex2['y']) { 
                              $xinters = ($point['y'] - $vertex1['y']) * ($vertex2['x'] - $vertex1['x']) / ($vertex2['y'] - $vertex1['y']) + $vertex1['x']; 
                              if ($xinters == $point['x']) { // Checar si el punto está en un segmento (otro que horizontal)
                                  return "boundary";
                              }
                              if ($vertex1['x'] == $vertex2['x'] || $point['x'] <= $xinters) {
                                  $intersections++; 
                              }
                          } 
                      } 
                      // Si el número de intersecciones es impar, el punto está dentro del poligono. 
                      if ($intersections % 2 != 0) {
                          return "inside";
                      } else {
                          return "outside";
                      }
                  }
          
                  function pointOnVertex($point, $vertices) {
                      foreach($vertices as $vertex) {
                          if ($point == $vertex) {
                              return true;
                          }
                      }
          
                  }
          
                  function pointStringToCoordinates($pointString) {
                      $coordinates = explode(" ", $pointString);
                      return array("x" => $coordinates[0], "y" => $coordinates[1]);
                  }
          
              }
          
              $json="[[-24.755444000000004, -65.466476],[-24.755365, -65.466652],[-24.758835, -65.466797],[-24.760336, -65.46637],[-24.761738, -65.465683],[-24.762362, -65.46553000000002],[-24.76733, -65.466927],[-24.767447, -65.464035],[-24.766182,  -65.464035],[-24.765907000000002,  -65.463577],[-24.765070000000005,  -65.4636],[-24.76507,  -65.464249],[-24.76392,  -65.464119],[-24.763219999999997,  -65.464035],[-24.762907,  -65.464249],[-24.762402,  -65.464378],[-24.761951,  -65.464157],[-24.761738,  -65.463837],[-24.761465000000005,  -65.463455],[-24.757647,  -65.46315],[-24.755444000000004,  -65.466476]]";
          //aca estaba el error (here the error)
              $resultado = str_replace(" ", "", $json);
              $resultado = str_replace(",", " ", $resultado);
              $resultado = str_replace("[[", "", $resultado);
              $resultado = str_replace("]]", "", $resultado);
          
              $polygon=explode("] [", $resultado);
          
          
              $points=array("-24.762426 -65.464812");
          
               print_r ($polygon);
              $pointLocation = new pointLocation();
              //$points = array("50 70","70 40","-20 30","100 10","-10 -10","40 -20","110 -20");
              //$polygon = array("-50 30","50 70","100 50","80 10","110 -10","110 -30","-20 -50","-30 -40","10 -10","-10 10","-30 -20","-50 30");
          
              // print_r($polygon);
              // Las últimas coordenadas tienen que ser las mismas que las primeras, para "cerrar el círculo"
              foreach($points as $key => $point) {
                  echo "point " . ($key+1) . " ($point): " . $pointLocation->pointInPolygon($point, $polygon) . "<br>";
              }
              ?>
          

          【讨论】:

            猜你喜欢
            • 2014-09-06
            • 1970-01-01
            • 2018-12-20
            • 1970-01-01
            • 1970-01-01
            • 2015-02-18
            • 1970-01-01
            • 2011-01-18
            • 2012-03-21
            相关资源
            最近更新 更多