使用geokit的具有地理编码功能的应用程序的数据库布局

时间:2010-06-14 21:13:16

标签: ruby-on-rails ruby database-design geolocation geokit

我正在开发一个房地产网页目录,并希望使用geokit gem对每个广告进行地理编码。 我的问题是,如果我想按国家,所选国家的城市,行政区域或所选城市的最近地铁站进行搜索,那么从性能点开始的最佳数据库布局是什么。可用的国家,城市,行政区域和地铁应由目录管理员定义,并且必须通过地理编码进行验证。

我提出单桌:

  create_table "geo_locations", :force => true do |t|
    t.integer "geo_location_id"                     #parent geo location (ex. country is parent geo location of city  
    t.string  "country",             :null => false #necessary for any geo location
    t.string  "city",                               #not null for city geo location and it's children
    t.string  "administrative_area"                 #not null for administrative_area geo location and it's children
    t.string  "thoroughfare_name"                   #not null for metro station or street name geo location and it's children
    t.string  "premise_number"                      #house number
    t.float   "lng",                 :null => false 
    t.float   "lat",                 :null => false
    t.float   "bound_sw_lat",        :null => false
    t.float   "bound_sw_lng",        :null => false
    t.float   "bound_ne_lat",        :null => false
    t.float   "bound_ne_lng",        :null => false
    t.integer "mappable_id"
    t.string  "mappable_type"
    t.string  "type"                                #country, city, administrative area, metro station or address 
  end

最终地理位置是地址,其中包含将房地产广告标记放在地图上的所有必要信息。但我仍然坚持搜索功能。

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:1)

你可能想看一下Thinking Sphinx,它支持内置的地理搜索。这就是我的工作方式:

class Company < ActiveRecord::Base
    define_index do
        indexes :name, :sortable => true
        has 'RADIANS(lat)',  :as => :latitude,  :type => :float
        has 'RADIANS(lng)', :as => :longitude, :type => :float
    end
end
# Searching for companies, sort by closest first
Company.search "bananas", :geo => [lat, lng], :order => "@geodist ASC, @relevance DESC"