我正在尝试将 Exif 经度和纬度数据转换为 Google 友好的十进制值。我已经阅读了很多教程,但似乎没有什么对我有用。我可能完全错了。
我成功获取Exif数据如下:
$exif_data = exif_read_data($path . '/user/images/4.jpg');
$egeoLong = $exif_data['GPSLongitude'];
$egeoLat = $exif_data['GPSLatitude'];
$egeoLongR = $exif_data['GPSLongitudeRef'];
$egeoLatR = $exif_data['GPSLatitudeRef'];
从那里我最终得到以下数组的值:
deg Long: 118/1
min Long: 2147/100
sec Long: 0/1
Longitude Ref: W
deg Lat: 34/1
min Lat: 433/100
sec Lat: 0/1
Latitude Ref: N
我通过这个函数运行它们以获得十进制值(我在 Stackoverflow 上得到了这个函数)。
$geoLong = gpsDecimal($egeoLong[0], $egeoLong[1], $egeoLong[2], $egeoLongR);
$geoLat = gpsDecimal($egeoLat[0], $egeoLat[1], $egeoLat[2], $egeoLatR);
function gpsDecimal($deg, $min, $sec, $hemi) {
$d = $deg+((($min*60)+($sec))/3600);
return ($hemi=='S' || $hemi=='W') ? $d*=-1 : $d;
}
它返回以下内容......将坐标放在海洋中间......不是我拍照的地方。
纬度:41.216666666667 经度:-153.78333333333
谁能告诉我我做错了什么,或者更好的方法来实现这一点。任何帮助深表感谢。