• <small id='0VRwf'></small><noframes id='0VRwf'>

      <bdo id='0VRwf'></bdo><ul id='0VRwf'></ul>

  • <i id='0VRwf'><tr id='0VRwf'><dt id='0VRwf'><q id='0VRwf'><span id='0VRwf'><b id='0VRwf'><form id='0VRwf'><ins id='0VRwf'></ins><ul id='0VRwf'></ul><sub id='0VRwf'></sub></form><legend id='0VRwf'></legend><bdo id='0VRwf'><pre id='0VRwf'><center id='0VRwf'></center></pre></bdo></b><th id='0VRwf'></th></span></q></dt></tr></i><div id='0VRwf'><tfoot id='0VRwf'></tfoot><dl id='0VRwf'><fieldset id='0VRwf'></fieldset></dl></div>

      <legend id='0VRwf'><style id='0VRwf'><dir id='0VRwf'><q id='0VRwf'></q></dir></style></legend>

      <tfoot id='0VRwf'></tfoot>
      1. 在 Doctrine 中使用 Haversine 进行 SQL 搜索

        SQL search using Haversine in Doctrine(在 Doctrine 中使用 Haversine 进行 SQL 搜索)
            <bdo id='Y32dw'></bdo><ul id='Y32dw'></ul>

            <i id='Y32dw'><tr id='Y32dw'><dt id='Y32dw'><q id='Y32dw'><span id='Y32dw'><b id='Y32dw'><form id='Y32dw'><ins id='Y32dw'></ins><ul id='Y32dw'></ul><sub id='Y32dw'></sub></form><legend id='Y32dw'></legend><bdo id='Y32dw'><pre id='Y32dw'><center id='Y32dw'></center></pre></bdo></b><th id='Y32dw'></th></span></q></dt></tr></i><div id='Y32dw'><tfoot id='Y32dw'></tfoot><dl id='Y32dw'><fieldset id='Y32dw'></fieldset></dl></div>
          • <small id='Y32dw'></small><noframes id='Y32dw'>

                <tfoot id='Y32dw'></tfoot>
                  <tbody id='Y32dw'></tbody>

                  <legend id='Y32dw'><style id='Y32dw'><dir id='Y32dw'><q id='Y32dw'></q></dir></style></legend>

                • 本文介绍了在 Doctrine 中使用 Haversine 进行 SQL 搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想通过坐标进行搜索,即我想要一个像这样工作的函数:

                  I want to do a search by coordinates, i.e. I want to have a function that works like this:

                  function getLocationsInCircle($lat, $long, $minDist, $maxDist){
                      //return all the places that are at least $minDist 
                      //kilometers away and no more than $maxDist kilometers away
                  }
                  

                  我有一个位置"表,用于存储所有位置 ID 及其纬度和经度.

                  I have a "location" table that stores all location Ids and their latitude and longitude.

                  harsine 公式足以满足我想要做的事情

                  The haversine formula is good enough for what I want to do

                  6371 * ACOS(SIN(RADIANS( $lat )) * SIN(RADIANS( latitude )) + COS(RADIANS( $lat )) * COS(RADIANS( latitude )) * COS(RADIANS( longitude ) - RADIANS( $long )))
                  

                  我只是不知道如何在 Doctrine 中运行该查询.

                  I just don't see how to run that query in Doctrine.

                  推荐答案

                  试试这个:

                  Doctrine_query::create()->select('id')
                      ->addSelect("(6371 * ACOS(SIN(RADIANS($latitude)) * SIN(RADIANS(l.latitude)) + COS(RADIANS($latitude)) * COS(RADIANS(l.latitude)) * COS(RADIANS(l.longitude) - RADIANS($longitude)))) as Distance")
                      ->from('Location l')
                      ->having("Distance > $minDist AND Distance < $maxDist");
                  

                  这篇关于在 Doctrine 中使用 Haversine 进行 SQL 搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Converting between timezones in PHP(在 PHP 中的时区之间转换)
                  PHP - strtotime, specify timezone(PHP - strtotime,指定时区)
                  Get current date, given a timezone in PHP?(获取当前日期,给定 PHP 中的时区?)
                  List of US Time Zones for PHP to use?(PHP 使用的美国时区列表?)
                  How to detect Ambiguous and Invalid DateTime in PHP?(如何在 PHP 中检测不明确和无效的 DateTime?)
                  How to update timezonedb in PHP (updating timezones info)?(如何在 PHP 中更新 timezonedb(更新时区信息)?)

                • <legend id='AfMgP'><style id='AfMgP'><dir id='AfMgP'><q id='AfMgP'></q></dir></style></legend>
                  • <tfoot id='AfMgP'></tfoot>
                      <bdo id='AfMgP'></bdo><ul id='AfMgP'></ul>
                    • <i id='AfMgP'><tr id='AfMgP'><dt id='AfMgP'><q id='AfMgP'><span id='AfMgP'><b id='AfMgP'><form id='AfMgP'><ins id='AfMgP'></ins><ul id='AfMgP'></ul><sub id='AfMgP'></sub></form><legend id='AfMgP'></legend><bdo id='AfMgP'><pre id='AfMgP'><center id='AfMgP'></center></pre></bdo></b><th id='AfMgP'></th></span></q></dt></tr></i><div id='AfMgP'><tfoot id='AfMgP'></tfoot><dl id='AfMgP'><fieldset id='AfMgP'></fieldset></dl></div>

                              <tbody id='AfMgP'></tbody>
                          1. <small id='AfMgP'></small><noframes id='AfMgP'>