]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
More changes from the live server.
[rails.git] / app / models / tracepoint.rb
index dd75ce0e95f104f96d831ca5880e55cf66d96640..bf3cdd7c06557978e40614360394b22e85ba78db 100644 (file)
@@ -1,9 +1,20 @@
 class Tracepoint < ActiveRecord::Base
+  include GeoRecord
+
   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'
+
+  def to_xml_node
+    el1 = XML::Node.new 'trkpt'
+    el1['lat'] = self.lat.to_s
+    el1['lon'] = self.lon.to_s
+    return el1
+  end
 end