]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Fix style issues found by new rubocop version
[rails.git] / app / models / tracepoint.rb
index dd75ce0e95f104f96d831ca5880e55cf66d96640..9485b8a14086b7d291c42eb24ff85a2fa4ee689c 100644 (file)
@@ -1,9 +1,20 @@
 class Tracepoint < ActiveRecord::Base
-  set_table_name 'gps_points'
+  include GeoRecord
 
-#  validates_numericality_of :latitude
-#  validates_numericality_of :longitude
+  self.table_name = "gps_points"
 
-  belongs_to :user
-  belongs_to :trace, :foreign_key => 'gpx_id'
+  validates :trackid, :numericality => { :only_integer => true }
+  validates :latitude, :longitude, :numericality => { :only_integer => true }
+  validates :trace, :associated => true
+  validates :timestamp, :presence => true
+
+  belongs_to :trace, :foreign_key => "gpx_id"
+
+  def to_xml_node(print_timestamp = false)
+    el1 = XML::Node.new "trkpt"
+    el1["lat"] = lat.to_s
+    el1["lon"] = lon.to_s
+    el1 << (XML::Node.new("time") << timestamp.xmlschema) if print_timestamp
+    el1
+  end
 end