Ben op zoek naar de html code voor deze formule
DD:HH:MM,SS x 24 = ( uitkomst)
voorbeeld
51:41:27,000 x 24 =51.6908333
waarvoor heb ik deze nodig is om de longitude te bereken van een gps ontvanger
dank je wel !
Likes: 0
Ben op zoek naar de html code voor deze formule
DD:HH:MM,SS x 24 = ( uitkomst)
voorbeeld
51:41:27,000 x 24 =51.6908333
waarvoor heb ik deze nodig is om de longitude te bereken van een gps ontvanger
dank je wel !
<?php
function DMStoDEC($deg,$min,$sec)
{
// Converts DMS ( Degrees / minutes / seconds )
// to decimal format longitude / latitude
return $deg+((($min*60)+($sec))/3600);
}
function DECtoDMS($dec)
{
// Converts decimal longitude / latitude to DMS
// ( Degrees / minutes / seconds )
// This is the piece of code which may appear to
// be inefficient, but to avoid issues with floating
// point math we extract the integer part and the float
// part by using a string function.
$vars = explode(".",$dec);
$deg = $vars[0];
$tempma = "0.".$vars[1];
$tempma = $tempma * 3600;
$min = floor($tempma / 60);
$sec = $tempma - ($min*60);
return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
}
?>
Plezier,
Marcel