长/纬度查询整个数据库

时间:2017-10-17 16:50:07

标签: php mysql

我在Stack上发现了这个问题 - Measuring the distance between two coordinates in PHP

在很多方面,答案对我来说似乎是完美的,但我遇到了一个问题。我正在设计CRM,我希望有一个邮政编码半径搜索选项。我的问题是如何针对此查询传递1,000条记录并以HTML格式显示结果?

2 个答案:

答案 0 :(得分:0)

因此,我通过组合几个来源找到了一个解决方案(3959英里使用6371公里)。我已经在下面包含了一个PHP文件和一个HTML表格,以防其他人遇到此问题。

首先,您可以从此处获取所需的数据:

https://www.freemaptools.com/download-uk-postcode-lat-lng.htm

我建议使用该网站创建一个基本的MySQL表并导入数据,但要注意这将花费一些时间!在我运行查询以删除所有空格之前或之后,AA11 1AA变为AA111AA,这将使表单验证更加简单。

此迷你漫游使用该链接中的数据和表格构造。

首先,您需要一个看起来像这样的用户输入表单:

<form action="" method="POST">
    <table>
        <tr>
            <td>Distance:</td>
            <td><input type="number" id="distance" name="distance" required></td>
        </tr>
        <tr>
            <td>Miles:<br>Kilometres:</td>
            <td><input type="radio" id="unit" name="unit" value="3959" checked><br><input type="radio" id="unit" name="unit" value="6371"></td>
        </tr>
        <tr>
            <td>Postcode:</td>
            <td><input type="text" id="postcode" name="postcode" required></td>
        </tr>
        <tr>
            <td></td>
            <td><input type="submit" id="submit" name="submit" value="Submit"></td>
        </tr>
    </table>
</form>

此表单提交到同一页面,因此在您的.php文件中,您需要包含此代码以将邮政编码转换为long / lat值:

<?php include 'credentials.php';

$distance = $_POST['distance'];
$unit = $_POST['unit'];
$postcode = str_replace(' ','',$_POST['postcode']);

$conn = new mysqli($servername, $username, $password, $dbname);

if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT latitude, longitude FROM postcodelatlng WHERE postcode LIKE '$postcode'";

$result = $conn->query($sql);

if ($result->num_rows > 0) {

    while($row = $result->fetch_assoc()) {
        $latitude = $row['latitude'];
        $longitude = $row['longitude'];
    }
} else {
    echo "Postcode not found";
}
$conn->close();
?>

确保您拥有credentials.php文件,以便为您的数据库提供连接详细信息。

然后直接在这个PHP脚本下面,我们将放置第二个将返回特定半径内的所有邮政编码。然后,您可以调整此脚本以满足您的需求。我个人会将这个脚本传递给一个不同的,小得多的表,以检查CRM上是否有任何记录在某个半径范围内,但是现在和出于演示目的只是保持简单!

<?php
$conn = new mysqli($servername, $username, $password, $dbname);

if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT *,
($unit * acos( cos( radians($latitude) ) * cos( radians(latitude) ) * cos( radians(longitude) - radians($longitude)) + sin(radians($latitude)) * sin(radians(latitude)) ))
as distance
FROM postcodelatlng
HAVING distance < $distance";

$result = $conn->query($sql);

if ($result->num_rows > 0) {

    while($row = $result->fetch_assoc()) {
        echo "" . $row['postcode']. "<br>";
    }
} else {
    echo "<br>0 results";
}
$conn->close();
?>

主要感谢这篇文章:

Fastest Way to Find Distance Between Two Lat/Long Points

答案 1 :(得分:0)

你会得到什么样的执行时间?

我制作了自己的车辆追踪器并在我的数据库中使用了一个Point列来存储每个记录的lat / lng作为空间数据,以及列上的空间索引。

我目前在数据库中保存了13,000套坐标,并给出了另一组坐标,下面的查询返回我最接近的50,以及每个坐标距离为0.009s

    SELECT *, (GLength(LineString(location, GeomFromText('POINT(55.0177 -3.0968)')))) 
    AS distance
    FROM blackbox
    ORDER BY distance ASC
    LIMIT 50

修改 我刚尝试按距离添加订单查询,花了0.024秒,将HAVING distance < x添加到我的查询中让我降到了0.008秒