]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Merge remote-tracking branch 'upstream/pull/3402'
[rails.git] / app / models / tracepoint.rb
index 6473c943031134e87a1a9d99189a07614a9066ff..b3c37430d8624a0c61d419e1b8e2ae9bec23e3d6 100644 (file)
@@ -20,7 +20,7 @@
 #  gps_points_gpx_id_fkey  (gpx_id => gpx_files.id)
 #
 
-class Tracepoint < ActiveRecord::Base
+class Tracepoint < ApplicationRecord
   include GeoRecord
 
   self.table_name = "gps_points"
@@ -31,12 +31,4 @@ class Tracepoint < ActiveRecord::Base
   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