Определите, находится ли координата внутри области (MKMapView, solve в PHP)

Я использую MKMapView и я отправляю свою php-программу в видимую область (center lat, center lon, span lat, span lon). Мне нужно определить, находится ли координата внутри этой области с помощью php. Я надеюсь, что где-то есть стандартная формула, но я ее не нашел. Я буду продолжать пытаться придумать формулу, но это удивительно сложно (надеюсь, не так, как haversine, который я не думаю, что мог бы понять сам).

4 ответов


давайте попробуем эту логику

$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 в decimal, это может сработать.

я переименовал переменную в соответствии с вашей проблемой.

вот логика.

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