X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/582402ba8fe5cb3f7a9934844cf33678a3365f45..b935cd6fef56934c432bdce4c78a1c64b60755d1:/app/models/tracepoint.rb diff --git a/app/models/tracepoint.rb b/app/models/tracepoint.rb index 000f257b4..d36ceb8c3 100644 --- a/app/models/tracepoint.rb +++ b/app/models/tracepoint.rb @@ -30,13 +30,5 @@ class Tracepoint < ApplicationRecord 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 + belongs_to :trace, :foreign_key => "gpx_id", :inverse_of => :points end