Make "nearby users" show all those within 50km rather than all those

within a degree of latitude and longitude.
This commit is contained in:
Tom Hughes 2007-06-20 17:04:29 +00:00
parent 788161010f
commit b982bc6b19
4 changed files with 48 additions and 9 deletions

View file

@ -59,13 +59,21 @@ class User < ActiveRecord::Base
return el1
end
def nearby(lat_range=1, lon_range=1)
if self.home_lon and self.home_lat
nearby = User.find(:all, :conditions => "#{self.home_lon} > home_lon - #{lon_range} and #{self.home_lon} < home_lon + #{lon_range} and #{self.home_lat} > home_lat - #{lat_range} and #{self.home_lat} < home_lat + #{lat_range} and data_public = 1 and id != #{self.id}")
else
nearby = []
end
return nearby
def nearby(radius = 50)
if self.home_lon and self.home_lat
gc = OSM::GreatCircle.new(self.home_lat, self.home_lon)
bounds = gc.bounds(radius)
nearby = User.find(:all, :conditions => "home_lat between #{bounds[:minlat]} and #{bounds[:maxlat]} and home_lon between #{bounds[:minlon]} and #{bounds[:maxlon]} and data_public = 1 and id != #{self.id}")
nearby.delete_if { |u| gc.distance(u.home_lat, u.home_lon) > radius }
nearby.sort! { |u1,u2| gc.distance(u1.home_lat, u1.home_lon) <=> gc.distance(u2.home_lat, u2.home_lon) }
else
nearby = []
end
return nearby
end
def distance(nearby_user)
return OSM::GreatCircle.new(self.home_lat, self.home_lon).distance(nearby_user.home_lat, nearby_user.home_lon)
end
def self.has_messages?

View file

@ -34,13 +34,15 @@
<table>
<tr>
<th>Name</th>
<th>Distance</th>
<th>Contact</th>
</tr>
<% @user.nearby(1,1).each do |nearby| %>
<% @user.nearby.each do |nearby| %>
<% nearest_str += "nearest.push( { 'display_name' : '#{nearby.display_name}', 'home_lat' : #{nearby.home_lat}, 'home_lon' : #{nearby.home_lon} } );\n" %>
<tr>
<td><%= link_to nearby.display_name, :controller => 'user', :action => 'view', :display_name => nearby.display_name %></td>
<td><%= @user.distance(nearby).round %>km away</td>
<td><%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %></td>
</tr>
<%end%>

View file

@ -75,9 +75,10 @@
There are no users who admit to mapping nearby.
<% else %>
<table id="nearbyusers">
<% @this_user.nearby(1,1).each do |nearby| %>
<% @this_user.nearby.each do |nearby| %>
<tr>
<td class="username"><%= link_to nearby.display_name, :controller => 'user', :action => 'view', :display_name => nearby.display_name %></td>
<td><%= @this_user.distance(nearby).round %>km away</td>
<td class="message">(<%= link_to 'send message', :controller => 'message', :action => 'new', :user_id => nearby.id %>)</td>
</tr>
<%end%>