Spatial4n.Core.Distance.GeodesicSphereDistCalc.LawOfCosines.DistanceLatLonRAD C# (CSharp) Method

DistanceLatLonRAD() protected method

protected DistanceLatLonRAD ( double lat1, double lon1, double lat2, double lon2 ) : double
lat1 double
lon1 double
lat2 double
lon2 double
return double
            protected override double DistanceLatLonRAD(double lat1, double lon1, double lat2, double lon2)
            {
                return DistanceUtils.DistLawOfCosinesRAD(lat1, lon1, lat2, lon2);
            }
GeodesicSphereDistCalc.LawOfCosines