]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Merge remote-tracking branch 'upstream/pull/3264'
[rails.git] / app / models / tracepoint.rb
index 9485b8a14086b7d291c42eb24ff85a2fa4ee689c..000f257b4eba0f683db3c0af4c974fe80aa9015d 100644 (file)
@@ -1,4 +1,26 @@
-class Tracepoint < ActiveRecord::Base
+# == Schema Information
+#
+# Table name: gps_points
+#
+#  altitude  :float
+#  trackid   :integer          not null
+#  latitude  :integer          not null
+#  longitude :integer          not null
+#  gpx_id    :bigint(8)        not null
+#  timestamp :datetime
+#  tile      :bigint(8)
+#
+# Indexes
+#
+#  points_gpxid_idx  (gpx_id)
+#  points_tile_idx   (tile)
+#
+# Foreign Keys
+#
+#  gps_points_gpx_id_fkey  (gpx_id => gpx_files.id)
+#
+
+class Tracepoint < ApplicationRecord
   include GeoRecord
 
   self.table_name = "gps_points"
@@ -10,7 +32,7 @@ class Tracepoint < ActiveRecord::Base
 
   belongs_to :trace, :foreign_key => "gpx_id"
 
-  def to_xml_node(print_timestamp = false)
+  def to_xml_node(print_timestamp: false)
     el1 = XML::Node.new "trkpt"
     el1["lat"] = lat.to_s
     el1["lon"] = lon.to_s