wikipoints/ground/classes/Coord.php

16 lines
206 B
PHP

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