Skip to content

Instantly share code, notes, and snippets.

View frankvilhelmsen's full-sized avatar

Frank Vilhelmsen frankvilhelmsen

View GitHub Profile
@frankvilhelmsen
frankvilhelmsen / haversine.clj
Created February 10, 2012 07:40
The haversine formular
(ns util
(:use clojure.contrib.generic.math-functions))
; http://en.wikipedia.org/wiki/Earth_radius
(def R 6367)
; rad argument to haversine function (180° d/πR).
(defn rad [x]
(* x (/ Math/PI 180)))