在Laravel中计算坐标距离 [英] Calculate coordinate distance in Laravel

查看:834
本文介绍了在Laravel中计算坐标距离的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的模型中有一个创建别名的范围,我需要在其上执行一个位置,我知道MySql不允许这样做.

I have a scope in my model which creates an alias and I need to execute a where on it, I understand that MySql dose not allow this.

标准SQL不允许您在WHERE中引用列别名 条款.施加此限制是因为当WHERE代码为 执行,则可能尚未确定列值.

Standard SQL doesn't allow you to refer to a column alias in a WHERE clause. This restriction is imposed because when the WHERE code is executed, the column value may not yet be determined.

但是,我想知道是否有laravel可以解决? 我的范围创建了一个别名距离,我想检查该距离.

However, I'm wondering if there is a possible laravel work around? My scope creates an alias distance and I want to check the distance.

public static function scopeDistance($query, $lat, $long)
{
    return $query->select(array('*',\DB::raw('( 3959 * acos( cos( radians(' . $lat . ') ) * cos( radians( latitude ) ) * cos( radians( longitude ) - radians(' . $long . ') ) + sin( radians(' . $lat .') ) * sin( radians(latitude) ) ) ) AS distance')));
} 

在我的控制器中:

\App\Profile::distance($latitude, $longitude)->where('distance', '<', 50);

推荐答案

首先,不要忘记从函数调用中删除static关键字,Laravel处理具有神奇的静态外观 Profile::distance致电.

Firstly, don't forget to remove the static keyword from the function call, Laravel deals with magical static-looking Profile::distance call.

下面有2个不同的选项可解决同一问题,无论哪种情况,您都将从控制器中调用\App\Profile::distance($latitude, $longitude, 50).

Below are 2 different options to solve the same issue, in either case you will call \App\Profile::distance($latitude, $longitude, 50) from your controller.

选项1

您可以在内存中进行计算,而不用处理子查询.

You can do the calculation in memory instead of dealing with subqueries.

public function scopeDistance($query, $lat, $long, $distance) {
    return Profile::all()->filter(function ($profile) use ($lat, $long, $distance) {
        $actual = 3959 * acos(
            cos(deg2rad($lat)) * cos(deg2rad($profile->latitude))
            * cos(deg2rad($profile->longitude) - deg2rad($long))
            + sin(deg2rad($lat)) * sin(deg2rad($profile->latitude))
        );
        return $distance < $actual;
    });
}

选项2

您可以执行SQL子查询,请确保以get()结束调用:

You can execute a SQL subquery, make sure to end the call with get():

public function scopeDistance($query, $lat, $long, $distance) {
    return $query->having('distance', '<', $distance)
             ->select(DB::raw("*,
                     (3959 * ACOS(COS(RADIANS($lat))
                           * COS(RADIANS(latitude))
                           * COS(RADIANS($long) - RADIANS(longitude))
                           + SIN(RADIANS($lat))
                           * SIN(RADIANS(latitude)))) AS distance")
             )->orderBy('distance', 'asc')
              ->get();
}

这篇关于在Laravel中计算坐标距离的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆