Latest Potlatch, plus TomH's GPX fix
This commit is contained in:
parent
325aa7ecdf
commit
6efdcaa993
5 changed files with 11 additions and 13 deletions
|
@ -18,10 +18,10 @@ class SwfController < ApplicationController
|
|||
basey =params['basey'].to_f
|
||||
masterscale =params['masterscale'].to_f
|
||||
|
||||
xmin=params['xmin'].to_f/0.0000001
|
||||
xmax=params['xmax'].to_f/0.0000001
|
||||
ymin=params['ymin'].to_f/0.0000001
|
||||
ymax=params['ymax'].to_f/0.0000001
|
||||
xmin=params['xmin'].to_f/0.000001
|
||||
xmax=params['xmax'].to_f/0.000001
|
||||
ymin=params['ymin'].to_f/0.000001
|
||||
ymax=params['ymax'].to_f/0.000001
|
||||
|
||||
# - Begin movie
|
||||
|
||||
|
@ -45,20 +45,22 @@ class SwfController < ApplicationController
|
|||
|
||||
if params['token']
|
||||
token=sqlescape(params['token'])
|
||||
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 "+
|
||||
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 "+
|
||||
" FROM gpx_files,gps_points,users "+
|
||||
"WHERE gpx_files.id=gpx_id "+
|
||||
" AND gpx_files.user_id=users.id "+
|
||||
" AND token='#{token}' "+
|
||||
" AND (gps_points.longitude BETWEEN #{xmin} AND #{xmax}) "+
|
||||
" AND (gps_points.latitude BETWEEN #{ymin} AND #{ymax}) "+
|
||||
" AND (gps_points.timestamp IS NOT NULL) "+
|
||||
"ORDER BY fileid DESC,ts "+
|
||||
"LIMIT 10000"
|
||||
else
|
||||
sql="SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,gpx_id AS fileid,UNIX_TIMESTAMP(timestamp) AS ts "+
|
||||
sql="SELECT latitude*0.000001 AS lat,longitude*0.000001 AS lon,gpx_id AS fileid,UNIX_TIMESTAMP(timestamp) AS ts "+
|
||||
" FROM gps_points "+
|
||||
"WHERE (longitude BETWEEN #{xmin} AND #{xmax}) "+
|
||||
" AND (latitude BETWEEN #{ymin} AND #{ymax}) "+
|
||||
" AND (gps_points.timestamp IS NOT NULL) "+
|
||||
"ORDER BY fileid DESC,ts "+
|
||||
"LIMIT 10000"
|
||||
end
|
||||
|
|
|
@ -110,6 +110,7 @@ class Trace < ActiveRecord::Base
|
|||
tp.lat = point['latitude'].to_f
|
||||
tp.lng = point['longitude'].to_f
|
||||
tp.altitude = point['altitude'].to_f
|
||||
tp.timestamp = point['timestamp']
|
||||
tp.user_id = user.id
|
||||
tp.gpx_id = id
|
||||
tp.trackid = point['segment'].to_i
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
<!-- <p>This editor isn't working yet - currently you can only browse the aerial photos.
|
||||
See <a href="http://trac.openstreetmap.org/ticket/402">Trac #402</a> for more details.
|
||||
You may also want to look at <a href="http://josm.eigenheimstrasse.de/">JOSM</a> for a
|
||||
fully functional desktop client editor for OpenStreetMap.</p> -->
|
||||
|
||||
<div id="mapcontent">You need a Flash player to use Potlatch, the
|
||||
OpenStreetMap Flash editor. You can <a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">download Flash Player from Adobe.com</a>.
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
<% end %>
|
||||
<span class="rsssmall"><a href="<%= url_for :controller => 'trace', :action => 'georss' %>"><img src="/images/RSS.gif" border="0"></a></span> |
|
||||
<% if @user %>
|
||||
<%= link_to 'See just your traces', {:controller => 'trace', :action => 'mine'} %>
|
||||
<%= link_to 'See just your traces, or upload a trace', {:controller => 'trace', :action => 'mine'} %>
|
||||
<% else %>
|
||||
<%= link_to 'login', {:controller => 'user', :action => 'login', :next_controller => 'traces', :next_action => 'mine'} %> to see just your traces
|
||||
<%= link_to 'login', {:controller => 'user', :action => 'login', :next_controller => 'traces', :next_action => 'mine'} %> to upload a trace or see yours alone
|
||||
<% end %>
|
||||
<% if @tag %>
|
||||
| <%= link_to 'See all traces', {:controller => 'trace', :action => 'list'} %>
|
||||
|
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue