确定坐标是否在区域内(MKMapView,在PHP中求解)


Determine if coordinate is inside region (MKMapView, solve in PHP)

我正在使用MKMapView,我向我的php程序发送可见区域(中心纬度,中心纬度,跨度纬度,跨度纬度)。我需要使用 php 确定坐标是否在该区域内。我希望某处有一个标准公式,但我还没有找到。我会继续尝试想出一个公式,但它出奇地复杂(希望没有哈弗辛那么多,我不相信我自己能弄清楚)。

让我们试试这个逻辑

$topRightLongitude = $centerLongitude + $spanLongitude/2;
if($topRightLongitude > 180 and ($pointLongitude < 0))
    $topRightLongitude = $topRightLongitude - 360; // (180*2) - positive becomes negative
$bottomLeftLongitude = $centerLongitude - $spanLongitude/2;
if($bottomLeftLongitude< -180 and ($pointLongitude > 0))
    $bottomLeftLongitude= 360 + $bottomLeftLongitude; // now is negative and will become positive
$topRightLatitude = $centerLatitude + $spanLatitude/2;
if($topRightLatitude > 90 and ($pointLatitude < 0))
    $topRightLatitude = $topRightLatitude - 180; // (90*2) - positive becomes negative
$bottomLeftLatitude = $centerLatitude - $spanLatitude/2;
if($bottomLeftLatitude< -90 and ($pointLatitude > 0))
    $bottomLeftLatitude= 180 + $bottomLeftLongitude; // now is negative and will become positive

如果你有

$centerLongitude = 179;
$spanLongitude = 20;
$pointLongitude = -179;

结果

$topRightLongitude = -171;
$bottomLeftLongitude = 169;

所以如果你像这样测试,你的观点就在于:

if($pointLongitude < $topRightLongitude &&
    $pointLongitude > $bottomLeftLongitude &&
    $pointLatitude < $topRightLatitude &&
    $pointLatitude > $bottomLeftLatitude){
    echo 'in';
}else{
    echo 'out';
}

我的解决方案

$top = $c_lat + ($d_lat / 2.0);
$bottom = $c_lat - ($d_lat / 2.0);
$left = $c_lon - ($d_lon / 2.0);
$right = $c_lon + ($d_lon / 2.0);
if($left < -180)
{
    $second_left = $left + 360.0;
    $second_right = 180.0;
    $left = -180;
}
elseif($right > 180)
{
    $second_right = $right - 360.0;
    $second_left = -180.0;
    $right = 180.0;
}
$inside = false;
if($t_lat > $bottom && $t_lat < $top && $t_lon > $left && $t_lon < $right)
    $inside = true;
else if($second_right && $second_left)
{
    if($t_lat > $bottom && $t_lat < $top && $t_lon > $second_left && $t_lon < $second_right)
        $inside = true;
}
if($inside)
{
}

这似乎适用于MKMapView,因为区域纬度始终在 -90 到 90 之间。

这个逻辑应该有效:

if  ( ($X > $center_lat - $span_lat/2) &&
      ($X < $center_lat + $span_lat/2) &&
      ($Y > $center_lon - $span_lon/2) &&
      ($Y < $center_lon + $span_lon/2) ) {
    echo "It's inside!";
} else {
    echo "It's outside ...";
}

我以前曾为自己的问题制定过解决方案,但是对于坐标的十进制值,它可以工作。可能是如果你可以将 deg 转换为十进制,它可能会起作用。

我已根据您的问题重命名了变量。

这是逻辑。

if
(
    (
        ($lat - $spanLat) < $centerLat && 
        $centerLat < ($lat+ $spanLat)
    ) && 
    (
        ($long - $spanLong) < $centerLong && 
        $centerLong < ($long + $spanLong)
    )
)