gpt4 book ai didi

mysql - Laravel - 在给定用户的经度和纬度时检索距离时,我在所有模型上都得到相同的结果。为什么?

转载 作者:行者123 更新时间:2023-11-30 21:21:43 25 4
gpt4 key购买 nike

我的数据库中有一个 JSON 列,用于存储设置为的经度和纬度坐标:

_geoloc:{lat: 33.6556324, lng: -117.7015161}. 

我正在尝试使用用户的经度和纬度坐标查询数据库,以检索特定距离内的所有记录。下面是我正在使用的函数,但是所有结果都返回与每个模型相同的距离 7797.5012454514。我想将 $distance 参数作为英里传递。

protected function get_locations( $latitude, $longitude, $distance = 8000 ) {
$results= my_table::select( 'my_table.*' )
->selectRaw( '(3959 * (acos( cos( radians(?) )
* cos( radians( "_geoloc->lat" ) )
* cos( radians( "_geoloc->lng" ) - radians(?))
+ sin( radians( ? ) )
* sin( radians( "_geoloc->lat" ) ) ) ) )
AS distance', [ $latitude, $longitude, $latitude ] )
->havingRaw( "distance< ?", [ $distance ] )
->groupBy( 'first_name' )
->get();
return $results;
}

最佳答案

以防其他人遇到同样的问题。该解决方案需要在查询中使用 JSON_EXTRACT 以及 $ 符号来标记对象。

protected function get_locations( $latitude, $longitude, $distance = 20 ) {
$results = ( new my_table)->having( 'distance', '<', $distance )
->select( DB::raw( "*,
(3959 * ACOS(COS(RADIANS($latitude))
* COS(RADIANS(JSON_EXTRACT(`_geoloc`,'$.lat')))
* COS(RADIANS($longitude) - RADIANS(JSON_EXTRACT(`_geoloc`,'$.lng')))
+ SIN(RADIANS($latitude))
* SIN(RADIANS(JSON_EXTRACT(`_geoloc`,'$.lat'))))) AS distance" )
)->orderBy( 'distance', 'asc' )
->get();
return $results
}

关于mysql - Laravel - 在给定用户的经度和纬度时检索距离时,我在所有模型上都得到相同的结果。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47346130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com