]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Combine the address and netmask for an ACL in one column
[rails.git] / app / models / tracepoint.rb
index bf3cdd7c06557978e40614360394b22e85ba78db..d4ba39de39368419f2a2434c0ba5acfb2d8a6493 100644 (file)
@@ -11,10 +11,11 @@ class Tracepoint < ActiveRecord::Base
 
   belongs_to :trace, :foreign_key => 'gpx_id'
 
-  def to_xml_node
+  def to_xml_node(print_timestamp = false)
     el1 = XML::Node.new 'trkpt'
     el1['lat'] = self.lat.to_s
     el1['lon'] = self.lon.to_s
+    el1 << (XML::Node.new("time") << self.timestamp.xmlschema) if print_timestamp
     return el1
   end
 end