Java Utililty Methods Radian to Distance

List of utility methods to do Radian to Distance

Description

The list of methods to do Radian to Distance are organized into topic(s).

Method

doubleradians2Dist(double radians, double radius)
Converts radians (multiples of the radius) to distance in the units of the radius (e.g.
return radians * radius;
doubleradiansToDecMinSec(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));