]> git.openstreetmap.org Git - rails.git/commitdiff
Scale lat and lon values for unwayed segments.
authorTom Hughes <tom@compton.nu>
Fri, 21 Sep 2007 16:09:24 +0000 (16:09 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 21 Sep 2007 16:09:24 +0000 (16:09 +0000)
app/controllers/swf_controller.rb

index 628a95e064ceda1e4043c73faf63650bb6cfd76e..47ddcf9022068ae31a290a75f692f7cedbc28f03 100644 (file)
@@ -89,8 +89,8 @@ class SwfController < ApplicationController
                # - Draw unwayed segments
                
                if params['unwayed']=='true'
-                       sql="SELECT cn1.latitude AS lat1,cn1.longitude AS lon1,"+
-                               "               cn2.latitude AS lat2,cn2.longitude AS lon2 "+
+                       sql="SELECT cn1.latitude*0.0000001 AS lat1,cn1.longitude*0.0000001 AS lon1,"+
+                               "               cn2.latitude*0.0000001 AS lat2,cn2.longitude*0.0000001 AS lon2 "+
                                "  FROM current_segments "+
                                "       LEFT OUTER JOIN current_way_segments"+
                                "       ON segment_id=current_segments.id,"+