From: Craig Andrews Date: Fri, 20 Nov 2009 23:20:23 +0000 (-0500) Subject: Display lat/lon in DMS format X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f32fb65c6d11df9847a384a1d723111beebbc665;p=quix0rs-gnu-social.git Display lat/lon in DMS format --- diff --git a/lib/noticelist.php b/lib/noticelist.php index 167ba994bc..43aa2ca1bd 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -397,7 +397,7 @@ class NoticeListItem extends Widget $latlon = (!empty($lat) && !empty($lon)) ? $lat.';'.$lon : ''; if (empty($name)) { - $name = $lat . ' ' . $lon; //TODO tranform to N/S deg/min/sec format + $name = $this->decimalDegreesToDMS(abs($lat)) . ($lat>0?'N ':'S ') . $this->decimalDegreesToDMS(abs($lon)) . ($lon>0?'E':'W'); } $url = $location->getUrl(); @@ -417,6 +417,21 @@ class NoticeListItem extends Widget $this->out->elementEnd('span'); } + function decimalDegreesToDMS($dec) + { + + $vars = explode(".",$dec); + $deg = $vars[0]; + $tempma = "0.".$vars[1]; + + $tempma = $tempma * 3600; + $min = floor($tempma / 60); + $sec = $tempma - ($min*60); + + return $deg . '°' . $min . "'" . $sec . "\""; + return array("deg"=>$deg,"min"=>$min,"sec"=>$sec); + } + /** * Show the source of the notice *