module Geocoder::ActiveRecord::ClassMethods

def approx_near_scope_options(latitude, longitude, radius, options)


objects outside the given radius).
rather than a circle, so results are very approximate (will include
functions, like SQLite. Approach is to find objects within a square
Scope options hash for use with a database without trigonometric
#
def approx_near_scope_options(latitude, longitude, radius, options)
  default_near_scope_options(latitude, longitude, radius, options).merge(
    :select => options[:select] || nil
  )
end