X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3426976606d30278fcf5ed279d3c95900785c4a5..0d1147e7812c88ae6504a0b090a753375fa9e9f8:/app/models/tracepoint.rb diff --git a/app/models/tracepoint.rb b/app/models/tracepoint.rb index 6352824fd..b3c37430d 100644 --- a/app/models/tracepoint.rb +++ b/app/models/tracepoint.rb @@ -31,12 +31,4 @@ class Tracepoint < ApplicationRecord 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