X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/62dfa5ff456388a9b3b6a23ff7f87eacbb5c9e04..9afb35449b066fdef6b4af3b63e30e7f4eb4c5cf:/app/models/trace.rb?ds=sidebyside diff --git a/app/models/trace.rb b/app/models/trace.rb index a2bebf1dd..4cac233c2 100644 --- a/app/models/trace.rb +++ b/app/models/trace.rb @@ -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