gpt4 book ai didi

php - 如何将这些坐标转换为谷歌地图可读坐标?

转载 作者:搜寻专家 更新时间:2023-10-31 21:19:04 26 4
gpt4 key购买 nike

我需要按以下形式转换坐标:

N42-53.9° 
W072-16.2°

变成类似下面的东西:

-90.7311
0.346944

一个 php 函数将不胜感激 - 或者只是一个公式也足够好。

最佳答案

我找到了一个 online JS calculator和一个 PHP solution :

<?php
function DMStoDEC($deg,$min,$sec)
{
// Converts DMS ( Degrees / minutes / seconds )
// to decimal format longitude / latitude

return $deg+((($min*60)+($sec))/3600);
}

function DECtoDMS($dec)
{
// Converts decimal longitude / latitude to DMS
// ( Degrees / minutes / seconds )

// This is the piece of code which may appear to
// be inefficient, but to avoid issues with floating
// point math we extract the integer part and the float
// part by using a string function.

$vars = explode(".",$dec);
$deg = $vars[0];
$tempma = "0.".$vars[1];

$tempma = $tempma * 3600;
$min = floor($tempma / 60);
$sec = $tempma - ($min*60);

return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
}
?>

关于php - 如何将这些坐标转换为谷歌地图可读坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1560165/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com