<?php
class Coord
{
static function dergeeToMinute($input)
if ($input < 0)
$input *= -1;
$degree = floor($input);
$minute = 60 * ($input - $degree);
return $degree.'°'.$minute.'\'';
}