Cope with change in number of decimals for GPS point positions.
This commit is contained in:
parent
9afb35449b
commit
4c00efd678
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ class SwfController < ApplicationController
|
|||
|
||||
if params['token']
|
||||
user=User.authenticate(:token => params[:token])
|
||||
sql="SELECT gps_points.latitude*0.000001 AS lat,gps_points.longitude*0.000001 AS lon,gpx_files.id AS fileid,UNIX_TIMESTAMP(gps_points.timestamp) AS ts "+
|
||||
sql="SELECT gps_points.latitude*0.0000001 AS lat,gps_points.longitude*0.0000001 AS lon,gpx_files.id AS fileid,UNIX_TIMESTAMP(gps_points.timestamp) AS ts "+
|
||||
" FROM gpx_files,gps_points "+
|
||||
"WHERE gpx_files.id=gpx_id "+
|
||||
" AND gpx_files.user_id=#{user.id} "+
|
||||
|
@ -56,7 +56,7 @@ class SwfController < ApplicationController
|
|||
"ORDER BY fileid DESC,ts "+
|
||||
"LIMIT 10000"
|
||||
else
|
||||
sql="SELECT latitude*0.000001 AS lat,longitude*0.000001 AS lon,gpx_id AS fileid,UNIX_TIMESTAMP(timestamp) AS ts "+
|
||||
sql="SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,gpx_id AS fileid,UNIX_TIMESTAMP(timestamp) AS ts "+
|
||||
" FROM gps_points "+
|
||||
"WHERE "+OSM.sql_for_area(ymin,xmin,ymax,xmax,"gps_points.")+
|
||||
" AND (gps_points.timestamp IS NOT NULL) "+
|
||||
|
|
Loading…
Add table
Reference in a new issue