]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/swf_controller.rb
rails_port_0.5: Merge rails_port.
[rails.git] / app / controllers / swf_controller.rb
index 628a95e064ceda1e4043c73faf63650bb6cfd76e..40969c20fc5984f01aed60969e23c582353f10cf 100644 (file)
@@ -89,10 +89,10 @@ 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"+
+                               "       LEFT OUTER JOIN current_way_nodes"+
                                "       ON segment_id=current_segments.id,"+
                                "       current_nodes AS cn1,current_nodes AS cn2"+
                                " WHERE "+OSM.sql_for_area(ymin,xmin,ymax,xmax,"cn1.")+