module Geocoder::Calculations

def latitude_degree_distance(units = nil)


Distance spanned by one degree of latitude in the given units.
#
def latitude_degree_distance(units = nil)
  2 * Math::PI * earth_radius(units) / 360
end