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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里