<?php
$img = "E 01 Ipojuca-PE (BRASIL).jpg";
$img_file = 'img/' . $img;
/* - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Copyright: zero fernandes
https://ed48.com/
USO LIVRE
Distribuido apenas com finalidades didáticas,
sem nenhuma outra atribuição específica.
FREE USE
Distributed only for educational purposes,
without any other specific assignment.
- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
function GetLatitude($imagefile)
{
$StringSep = "/";
$xf_data = exif_read_data($imagefile);
$dgr_lat = $xf_data['GPSLatitude'][0];
if (strval($dgr_lat == 0))
{
$latitude = "0.000000000000000";
return $latitude;
}
else
{
$dgr = explode($StringSep, $dgr_lat);
$lat_dgr = bcdiv($dgr[0], $dgr[1], 10);
$min_lat = $xf_data['GPSLatitude'][1];
$min = explode($StringSep, $min_lat);
$lat_min = bcdiv($min[0], $min[1], 10);
$lat_min = $lat_min/60;
$sec_lat = $xf_data['GPSLatitude'][2];
$sec = explode($StringSep, $sec_lat);
$lat_sec = bcdiv($sec[0], $sec[1], 10);
$lat_sec = $lat_sec/3600;
$lat_ref = $xf_data['GPSLatitudeRef'];
if ($lat_ref == "S")
{
$sig_lat = -1;
}
else
{
$sig_lat = 1;
}
$latitude = $sig_lat * ($lat_dgr + $lat_min + $lat_sec);
return $latitude;
}
}
# - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
function GetLongitude($imagefile)
{
$StringSep = "/";
$xf_data = exif_read_data($imagefile);
$dgr_lng = $xf_data['GPSLongitude'][0];
if (strval($dgr_lng == 0))
{
$latitude = "0.000000000000000";
return $latitude;
}
else
{
$dgr = explode($StringSep, $dgr_lng);
$lng_dgr = bcdiv($dgr[0], $dgr[1], 10);
$min_lng = $xf_data['GPSLongitude'][1];
$min = explode($StringSep, $min_lng);
$lng_min = bcdiv($min[0], $min[1], 10);
$lng_min = $lng_min/60;
$sec_lng = $xf_data['GPSLongitude'][2];
$sec = explode($StringSep, $sec_lng);
$lng_sec = bcdiv($sec[0], $sec[1], 10);
$lng_sec = $lng_sec/3600;
$lng_ref = $xf_data['GPSLongitudeRef'];
if ($lng_ref == "W")
{
$sig_lng = -1;
}
else
{
$sig_lng = 1;
}
$longitude = $sig_lng * ($lng_dgr + $lng_min + $lng_sec);
return $longitude;
}
}
# - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
echo $img . "<br><br>Ipojuca-PE (BRASIL)<br><br>";
echo '<img src="' . 'img/' . $img . '" alt="' . $img .
'" title="' . $img . '" width="70%"><br><br>';
echo '<pre>Latitude = ' . GetLatitude($img_file);
echo '<br><br>Longitude = ' . GetLongitude($img_file) . '</pre>';
?>