获得两点之间的坐标?

时间:2016-02-01 20:58:32

标签: php coordinates

假设我有两点:l1 = (lat1, lng1)l2 = (lat2, lng2)。如何以编程方式生成相距x米的坐标网格?

enter image description here

根据此图片,if I have the two red points and a value x, I want to find out the coordinates of the yellow points。我知道两个红点可能没有它们之间的距离(水平或垂直),它们是x的倍数,这可能导致行和/或列中的最后两个点的距离小于x。

1 个答案:

答案 0 :(得分:1)

根据您的地图,您将在地球表面的一小部分上创建一个有界网格网格。这意味着您可以忽略投影数学并且只使用2D代数:减去经度并除以水平网格的数量,然后减去纬度并除以垂直网格的数量。

// source coordinates in decimal degrees
$pOne = [ 'lat' => 35.001234, 'lon' => -78.940202 ];
$pTwo = [ 'lat' => 35.010272, 'lon' => -78.721478 ];

// grid size along latitude and longitude
$nLat = 5;
$nLon = 5;

// get the grid size for each dimension in degrees
$dLat = ($pTwo['lat'] - $pOne['lat']) / $nLat;
$dLon = ($pTwo['lon'] - $pOne['lon']) / $nLat;

for ($i = 0; $i < $nLat; $i++) {
    $lat = $pOne['lat'] + ($i*$dLat);
    for ($j = 0; $j < $nLon; $j++) {
        $lon = $pOne['lon'] + ($j*$dLon);
        printf('<%.6f, %.6f>' . PHP_EOL, $lat, $lon);
    }
}