List of utility methods to do Radian to Distance
double | radians2Dist(double radians, double radius) Converts radians (multiples of the radius ) to distance in the units of the radius (e.g.
return radians * radius;
|
double | radiansToDecMinSec(double inCoord) radians To Dec Min Sec double degrees = RTD * inCoord; double remainder = getRemainder(degrees); return Math.floor(degrees) + (Math.floor(remainder * 60) / 100) + ((remainder * .36) - (Math.floor(remainder * 60) * .006)); |