]> git.openstreetmap.org Git - rails.git/commitdiff
Factor out common code for models which deal with geographic points
authorTom Hughes <tom@compton.nu>
Wed, 10 Oct 2007 23:00:25 +0000 (23:00 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 10 Oct 2007 23:00:25 +0000 (23:00 +0000)
into a base class.

app/models/geo_record.rb [new file with mode: 0644]
app/models/node.rb
app/models/old_node.rb
app/models/tracepoint.rb

diff --git a/app/models/geo_record.rb b/app/models/geo_record.rb
new file mode 100644 (file)
index 0000000..12a2a64
--- /dev/null
@@ -0,0 +1,29 @@
+class GeoRecord < ActiveRecord::Base
+  before_save :update_tile
+
+  def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
+    self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
+      return self.find(:all, options)
+    end
+  end
+
+  def update_tile
+    self.tile = QuadTile.tile_for_point(lat, lon)
+  end
+
+  def lat=(l)
+    self.latitude = (l * 10000000).round
+  end
+
+  def lon=(l)
+    self.longitude = (l * 10000000).round
+  end
+
+  def lat
+    return self.latitude.to_f / 10000000
+  end
+
+  def lon
+    return self.longitude.to_f / 10000000
+  end
+end
index f9210bf0664a88a296a8c41e200d88fb9e8652a2..9ed5c3bbf4cd0983f0d48ea623af788480d2df6d 100644 (file)
@@ -1,5 +1,6 @@
-class Node < ActiveRecord::Base
+class Node < GeoRecord
   require 'xml/libxml'
   require 'xml/libxml'
+
   set_table_name 'current_nodes'
   
   validates_presence_of :user_id, :timestamp
   set_table_name 'current_nodes'
   
   validates_presence_of :user_id, :timestamp
@@ -10,34 +11,6 @@ class Node < ActiveRecord::Base
   has_many :old_nodes, :foreign_key => :id
   belongs_to :user
  
   has_many :old_nodes, :foreign_key => :id
   belongs_to :user
  
-  before_save :update_tile
-
-  def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
-    self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
-      return self.find(:all, options)
-    end
-  end
-
-  def update_tile
-    self.tile = QuadTile.tile_for_point(lat, lon)
-  end
-
-  def lat=(l)
-    self.latitude = (l * 10000000).round
-  end
-
-  def lon=(l)
-    self.longitude = (l * 10000000).round
-  end
-
-  def lat
-    return self.latitude.to_f / 10000000
-  end
-
-  def lon
-    return self.longitude.to_f / 10000000
-  end
-
   def validate_position
     errors.add_to_base("Node is not in the world") unless in_world?
   end
   def validate_position
     errors.add_to_base("Node is not in the world") unless in_world?
   end
index c63738fc48e3b8e4a89c8fbf5c425a6905d67b32..464849157b90504aa7f25722be0dcb85fbabf931 100644 (file)
@@ -1,4 +1,4 @@
-class OldNode < ActiveRecord::Base
+class OldNode < GeoRecord
   set_table_name 'nodes'
   
   validates_presence_of :user_id, :timestamp
   set_table_name 'nodes'
   
   validates_presence_of :user_id, :timestamp
@@ -8,34 +8,6 @@ class OldNode < ActiveRecord::Base
 
   belongs_to :user
  
 
   belongs_to :user
  
-  before_save :update_tile
-
-  def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
-    self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
-      return self.find(:all, options)
-    end
-  end
-
-  def update_tile
-    self.tile = QuadTile.tile_for_point(lat, lon)
-  end
-
-  def lat=(l)
-    self.latitude = (l * 10000000).round
-  end
-
-  def lon=(l)
-    self.longitude = (l * 10000000).round
-  end
-
-  def lat
-    return self.latitude.to_f / 10000000
-  end
-
-  def lon
-    return self.longitude.to_f / 10000000
-  end
-
   def validate_position
     errors.add_to_base("Node is not in the world") unless in_world?
   end
   def validate_position
     errors.add_to_base("Node is not in the world") unless in_world?
   end
index 1d9f1bd6bf5e57e24188a0ea83b1e724dc834c2a..8648e555d2ec4c62fd9332fc6fd3bfbb6e9530e2 100644 (file)
@@ -1,4 +1,4 @@
-class Tracepoint < ActiveRecord::Base
+class Tracepoint < GeoRecord
   set_table_name 'gps_points'
 
   validates_numericality_of :trackid, :only_integer => true
   set_table_name 'gps_points'
 
   validates_numericality_of :trackid, :only_integer => true
@@ -8,34 +8,6 @@ class Tracepoint < ActiveRecord::Base
   validates_presence_of :timestamp
 
   belongs_to :trace, :foreign_key => 'gpx_id'
   validates_presence_of :timestamp
 
   belongs_to :trace, :foreign_key => 'gpx_id'
-  before_save :update_tile
-
-  def self.find_by_area(minlat, minlon, maxlat, maxlon, options)
-    self.with_scope(:find => {:conditions => OSM.sql_for_area(minlat, minlon, maxlat, maxlon)}) do
-      return self.find(:all, options)
-    end
-  end
-
-  def update_tile
-    self.tile = QuadTile.tile_for_point(lat, lon)
-  end
-
-  def lat=(l)
-    self.latitude = (l * 10000000).round
-  end
-
-  def lon=(l)
-    self.longitude = (l * 10000000).round
-  end
-
-  def lat
-    return self.latitude.to_f / 10000000
-  end
-
-  def lon
-    return self.longitude.to_f / 10000000
-  end
 
   def to_xml_node
     el1 = XML::Node.new 'trkpt'
 
   def to_xml_node
     el1 = XML::Node.new 'trkpt'