Home > Backend Development > PHP Tutorial > PHP 如何求出某个点,某段距离内,经纬范围

PHP 如何求出某个点,某段距离内,经纬范围

WBOY
Release: 2016-06-06 20:20:28
Original
1375 people have browsed it

/**

  • @param double $x 经度

  • @param double $y 纬度

  • @param double $d 距离 单位/米

  • @return array
    */

function getrange($x,$y,$d){

}

如上函数,
$x 表示点的经度
$y 表示点纬度
$d 从该点出发的距离
返回经纬度范围

回复内容:

/**

  • @param double $x 经度

  • @param double $y 纬度

  • @param double $d 距离 单位/米

  • @return array
    */

function getrange($x,$y,$d){

}

如上函数,
$x 表示点的经度
$y 表示点纬度
$d 从该点出发的距离
返回经纬度范围

去Google“按经纬度计算两点之间距离”

如果精度要求不高,完全可以自己算。地球的半径知道吧?经度是把地球表面分成360等分,纬度是分成180等分,这样根据距离和所给的中心点计算出跨越的经纬度范围即可。

如果精度要求很高,最好还是看看有没有第三方专业接口可以使用吧(例如谷歌地图、高德地图、百度地图这些)

这不是数学问题么

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template