]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Change the gps_points table to store latitude and longitude values to
[rails.git] / app / models / tracepoint.rb
index a8212d48221bde8b90f3dcf76626729b4a818703..e0fcfbd9775858b48c5daf9b9d4a0959d6f3f215 100644 (file)
@@ -1,32 +1,40 @@
 class Tracepoint < ActiveRecord::Base
   set_table_name 'gps_points'
 
-#  validates_numericality_of :latitude
-#  validates_numericality_of :longitude
+  validates_numericality_of :trackid, :only_integer => true
+  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'
  
+  before_save :update_tile
+
   def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
     self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
       return self.find(:all, options)
     end
   end
 
+  def update_tile
+    self.tile = QuadTile.tile_for_point(lat, lon)
+  end
+
   def lat=(l)
-    self.latitude = l * 1000000
+    self.latitude = (l * 10000000).round
   end
 
   def lng=(l)
-    self.longitude = l * 1000000
+    self.longitude = (l * 10000000).round
   end
 
   def lat
-    return self.latitude.to_f / 1000000
+    return self.latitude.to_f / 10000000
   end
 
   def lon
-    return self.longitude.to_f / 1000000
+    return self.longitude.to_f / 10000000
   end
 
   def to_xml_node