wikipoints/ground/classes/Coord.php

17 lines
217 B
PHP

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