adopt-a-hydrant/app/models/hydrant.rb

20 lines
494 B
Ruby
Raw Normal View History

2011-02-23 20:50:59 +00:00
class Hydrant < ActiveRecord::Base
2011-05-22 14:27:36 +00:00
validates_presence_of :lat, :lng
2011-02-23 20:50:59 +00:00
belongs_to :user
2011-03-17 23:37:15 +00:00
def self.find_closest(lat, lng, limit=50)
query = <<-SQL
SELECT *, (3959 * ACOS(COS(RADIANS(?)) * COS(RADIANS(lat)) * COS(radians(lng) - RADIANS(?)) + SIN(RADIANS(?)) * SIN(RADIANS(lat)))) AS distance
FROM hydrants
ORDER BY distance
LIMIT ?
SQL
Hydrant.find_by_sql([query, lat.to_f, lng.to_f, lat.to_f, limit.to_i])
2011-02-23 20:50:59 +00:00
end
def adopted?
!user.nil?
end
2011-02-23 20:50:59 +00:00
end