English 中文(简体)
地理代码计算-我有足够的数据吗?
原标题:Geocode calculation - do I have sufficient data?

请耐心等待,因为我对地理编码很陌生,不确定我是否有实现目标所需的东西。

我希望用户选择墨尔本市的郊区。当他们选择郊区时,我想显示所选郊区一英里内的周边郊区。因此,我的数据库表将如下所示:

Suburb LattLong
FITZROY 37° 47 S / 144° 58 E

科林伍德37°48秒/144°59 E

ABBOTSFORD 37°48 S/144°59 E

克利夫顿山37°47 S/144°59 E

菲茨罗伊北部37°47 S/144°59 E

卡尔顿37°48秒/144°58 E

假设用户选择FITZROY作为其郊区。这些是我认为的1英里半径内的一些郊区。

我的问题是我不理解LattLong字段中的数据。这些数据足以让我计算吗?

有没有一个例子可以告诉我如何从MySQL数据库中选择1英里以内的郊区?

我不知道从哪里开始在谷歌上帮助我,所以任何指导都将不胜感激。

Kind regards, John

问题回答

如果将纬度和经度转换为十进制度数,那么在数据库中使用地理数据和使用数学公式会容易得多。这将为您提供类似“80.012345”的数字。然后,您可以根据两个数字的简单差异编写查询,例如,编写一个以十进制度数表示的两个纬度和经度的差异小于0.02的查询,依此类推。

谷歌十进制度数学习更多并获得转换技术。这是一个简单的公式,您还必须使用E、W.N和S来将十进制数指定为正数或负数。

在您的情况下,您只有几分钟的数据。例如,要转换现有内容,144°58 E=144+58/60。58/60=0.9666666666…但是,您只有两个有效数字-58是两个sig数字,60是两个sig数字。所以结果是144.97现在,用简化的术语来说,赤道上的一英里大约是0.02度。所以你需要精确到小数点后第二位,但你要在同一个小数点上四舍五入。因此,你所需要的分辨率已经达到了你所拥有的数字准确性的极限。

所以,不幸的是,没有。实际上,你至少还需要一个精确的小数点,才能以任何合理的精度定位一英里内的东西。所以你需要经度和纬度,除了分之外还有秒。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签