将Haversine公式与Laravel雄辩的和多个where子句一起使用

时间:2019-07-18 03:24:11

标签: laravel eloquent haversine

我需要从“属性”表中获取数据,在该表中,我将经度和纬度以及其他字段(如construction_type,no_of_bedrooms,no_of_bathrooms)存储在属性的地址中。 现在,我需要根据传递其他过滤器(例如construction_type,no_of_bedrooms,no_of_bathrooms)所给定的最近位置来过滤数据。

我正在使用Haversine公式按给定位置获取最近的位置。 在传递其他过滤器时,我也很难编写laravel口才查询。

$property = (new Property())->newQuery();
    if(\Request::get('Lat')!=null && \Request::get('Lng')!=null){
        $lat=\Request::get('Lat');
        $lng=\Request::get('Lng');
        $radius=200;
        $q="( 3959 * acos( cos( radians(' . $lat . ') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(' . $lng . ') ) + sin( radians(' . $lat .') ) * sin( radians(lat) ) ) )";
        $property->selectRaw("{$q} AS distance")->havingRaw("distance < ?", [$radius]);
    }

     if(\Request::get('construction_status')!=null){
         $property->where('construction_status', \Request::get('construction_status'));
     }
//other filters
return $property->get();

我希望结果是具有给定最近位置的属性以及其他过滤器

1 个答案:

答案 0 :(得分:1)

尝试这样编写查询

$property = \DB::table('seller_properties');
    if(\Request::get('construction_status')!="any"){
             $property->where('construction_status', \Request::get('construction_status'));
         }
    //other filters
    if(\Request::get('Lat')!="" && \Request::get('Lng')!=""){
      $lat=\Request::get('Lat');
    $lng=\Request::get('Lng');
      $haversineSQL='( 3959 * acos( cos( radians(' . $lat . ') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(' . $lng . ') ) + sin( radians(' . $lat .') ) * sin( radians(lat) ) ) )';
      // resolve haversine formula here
    $property->whereRaw($haversineSQL . '<= ?', [25]);
     }
    return $property->get();

注意: // dont initialize $property like this $property = (new Property())->newQuery();