私は10,000の場所の.csvファイルをインポートしました。データベースをループし、通常の "geocode_by:住所 "Rails GeoCoderは既存のデータベースとgeocode_by:address、:city、stateをループします。
ジオコーダーの宝石を使用しています。
私のデータベーススキーマは、私は、コントローラのアクションではなく、検証の上、これを行うことができ、この
create_table "locations", :force => true do |t|
t.string "Address"
t.string "City"
t.string "State"
t.string "Zip"
t.float "latitude"
t.float "longitude"
t.datetime "created_at"
t.datetime "updated_at"
end
のように見えますか? 私はこのような何かを行う必要があります。
def index
@locations = Location.all
@locations.each do |l|
new_address = "#{l.Address} #{l.City} #{l.State}"
geocode_by = :new_address
end
end
をしかし、いや、任意の助けを大幅に高く評価されて、ありがとうございました!
はどのようにインスタンスのResqueを使用していることを実装するに行きますか? – Matt