From: Tom Hughes Date: Fri, 21 Sep 2007 16:09:24 +0000 (+0000) Subject: Scale lat and lon values for unwayed segments. X-Git-Tag: live~8160 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/2237cab7481a180928c13be61bad618e0d010318 Scale lat and lon values for unwayed segments. --- diff --git a/app/controllers/swf_controller.rb b/app/controllers/swf_controller.rb index 628a95e06..47ddcf902 100644 --- a/app/controllers/swf_controller.rb +++ b/app/controllers/swf_controller.rb @@ -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,"+