dsjklb0205 2014-10-23 12:01
浏览 83
已采纳

Laravel 4:如何将这个复杂的原始地理SQL查询转换为使用Eloquent?

So I'm trying to find the closest points to another particular point within a certain distance, and I'm using the haversine formula for this. The raw query itself is:

SELECT id, 
( 3959 * acos( cos( radians(input_lat) ) * cos( radians( map_loc_lat ) ) * cos( radians( map_loc_long ) - radians(input_long) ) + sin( radians(input_lat) ) * sin( radians( map_loc_lat ) ) ) ) 
AS distance FROM posts HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;

Where input_lat and input_long are my predefined coordinates that I want my center searching point to begin from, and map_loc_lat and map_loc_long are the posts' points.

I'm trying to use Eloquent's selectRaw() method to do a portion of the heavy lifting, like so:

$query->selectRaw('id,  ( 6371 * acos( cos( radians(?) ) * cos( radians( map_loc_lat ) )
  * cos( radians( ? ) - radians(?) ) + sin( radians(?) ) 
  * sin( radians( map_loc_lat ) ) ) ) AS distance', )

But I'm confused on how I should specify the question marks to indicate my input latitude and longitude using Eloquent, plus how would I continue chaining on my order by clause and my limits?

  • 写回答

1条回答 默认 最新

  • doulei8475 2014-10-23 12:18
    关注

    Used the same sql in one of my projects. Did not find any other solution instead of using DB::raw() and select()

    Here's example :

     $distance = Input::get('distance', 0.1);
     $lat = Input::get('latitude');
     $lng = Input::get('longitude');
     $select="drops.*,(6371 * acos( cos( radians({$lat}) ) * cos( radians( drops.latitude ) ) * cos( radians( drops.longitude ) - radians({$lng}) ) + sin( radians({$lat}) ) * sin( radians(drops.latitude) ) )) AS distance";
     $drops_query = DB::table('drops')->select(DB::raw($select))
                        ->addSelect('users.login as username')
                        ->leftJoin('users', 'users.id', '=', 'drops.user_in')
                        ->where('drops.latitude','<>','')
                        ->where('drops.longitude','<>','');
     $drops_query = $drops_query->having('distance', '<=', $distance)->orderBy('distance','DESC');
     $drops = $drops_query->take($limit)->get();
    

    This approach let me append to this complex query some additional filtering, pagination and etc.

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

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?