]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/trace.rb
Change the gps_points table to store latitude and longitude values to
[rails.git] / app / models / trace.rb
index a2bebf1dd691565bcdf893cd67b450572f0838e3..4cac233c2fd51c5147c627ba0c1f92606755cc9c 100644 (file)
@@ -204,10 +204,10 @@ class Trace < ActiveRecord::Base
         max_lon = Tracepoint.maximum('longitude', :conditions => ['gpx_id = ?', id])
         min_lon = Tracepoint.minimum('longitude', :conditions => ['gpx_id = ?', id])
 
-        max_lat = max_lat.to_f / 1000000
-        min_lat = min_lat.to_f / 1000000
-        max_lon = max_lon.to_f / 1000000
-        min_lon = min_lon.to_f / 1000000
+        max_lat = max_lat.to_f / 10000000
+        min_lat = min_lat.to_f / 10000000
+        max_lon = max_lon.to_f / 10000000
+        min_lon = min_lon.to_f / 10000000
 
         self.latitude = f_lat
         self.longitude = f_lon