I cannot find any examples in CF of the Haversine formula (a formula for working out distances between two points on a sphere from their longitudes and latitudes).

Wikipeda has examples in other languages (http://en.wikipedia.org/wiki/Haversine_formula) but none in CF.

An interpretation in CF is below by another developer, internal, and not fully tested. I am interested to see how others have calculated this in CF. I would also be interested to get opinions on the example below to how it can be simplified.

var variables.intEarthRadius = 6371;    // in km

var local.decRadius = arguments.radius / 1000;  // convert radius given in metres to kilometres

var local.latMax = arguments.latitude + degree(local.decRadius / variables.intEarthRadius);
var local.latMin = arguments.latitude - degree(local.decRadius / variables.intEarthRadius);

var local.lngMax = arguments.longitude + degree(local.decRadius / variables.intEarthRadius / cos(radian(arguments.latitude)));
var local.lngMin = arguments.longitude - degree(local.decRadius / variables.intEarthRadius / cos(radian(arguments.latitude)));





private numeric function degree(required numeric radian) hint="I convert radians to degrees." {
        return arguments.radian * 180 / pi();
    }

    private numeric function radian(required numeric degrees) hint="I convert degrees to radians."  {
        return arguments.degrees * pi() / 180;
    }
link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Have you looked at this...

http://cflib.org/index.cfm?event=page.udfbyid&udfid=2115

link|improve this answer
Hi Richard, thanks, just trying to get my head around a few things pain as it is;) it seems perfect. forgot about the java libs! createObject("java","java.lang.Math") much easier – Spark Jul 11 '11 at 9:50
1  
Always stand on the shoulders of giants :-) – Richard Herbert Jul 11 '11 at 10:54
I wrote that UDF and it was just a quick port from: movable-type.co.uk/scripts/latlong.html – Henry Jul 11 '11 at 17:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.