dongyi2993 2015-12-03 12:30
浏览 57
已采纳

如何确定位置是否在正方形(lat,lon)PHP内

How can you figure out if this:

$Now = array(
'lat' => '59.565423',
'long' => '7.347268'
);

is inside this:

$x = array(
'x1' => '59.570281',  // point 1, north west - lat
'y1' => '7.341667',   // ^^^^^^ - lon
'x2' => '59.570281',  // point 2, north east - lat
'y2' => '7.351087',   // ^^^^^^ - lon
'x3' => '59.568195',  // point 3, south east - lat
'y3' => '7.351087',   // ^^^^^^ - lon
'x4' => '59.568195',  // point 4, south west - lat
'y4' => '7.341667'    // ^^^^^^ - lon
 );

Supposed to return 1 if inside or 0 if outside.

  • 写回答

1条回答 默认 最新

  • douxu5233 2015-12-03 12:30
    关注

    Here is how:

    • first you need to check if longitude is within your |---| area so:

      if($Now['long'] > $x['y1'] && $Now['long'] < $x['y2'])

      • then you need to check if the latitude is within the parameters:

      if($Now['lat'] < $x['x1'] && $Now['lat'] > $x['x4'])

    Whole function:

    function InsideOrNot($Now, $x){
        //If 0 is within |----| (|--0--|)
        if($Now['long'] > $x['y1'] && $Now['long'] < $x['y2']){
    
            //if 0 is within ___
            //                |
            //               ___   
            if($Now['lat'] < $x['x1'] && $Now['lat'] > $x['x4']){
                return 1;
            }
    
            else{
                return 0;
            }
        }
        else{
            return 0;
        }
    
    
    }
    

    Now: echo InsideOrNot($Now, $x);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码