Fill in the tile ID before saving a trace point. Also add appropriate

validation to the tracepoint model.
This commit is contained in:
Tom Hughes 2007-09-12 14:33:37 +00:00
parent c3f0e12491
commit d19ca7c44b

View file

@ -1,24 +1,32 @@
class Tracepoint < ActiveRecord::Base class Tracepoint < ActiveRecord::Base
set_table_name 'gps_points' set_table_name 'gps_points'
# validates_numericality_of :latitude validates_numericality_of :trackid, :only_integer => true
# validates_numericality_of :longitude validates_numericality_of :latitude, :only_integer => true
validates_numericality_of :longitude, :only_integer => true
validates_associated :trace
validates_presence_of :timestamp
belongs_to :user
belongs_to :trace, :foreign_key => 'gpx_id' belongs_to :trace, :foreign_key => 'gpx_id'
before_save :update_tile
def self.find_by_area(minlat, minlon, maxlat, maxlon, options) def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
return self.find(:all, options) return self.find(:all, options)
end end
end end
def update_tile
self.tile = QuadTile.tile_for_point(lat, lon)
end
def lat=(l) def lat=(l)
self.latitude = l * 1000000 self.latitude = (l * 1000000).round
end end
def lng=(l) def lng=(l)
self.longitude = l * 1000000 self.longitude = (l * 1000000).round
end end
def lat def lat