gpt4 book ai didi

ios - 离线反向地理编码 iOS

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:45:56 27 4
gpt4 key购买 nike

我是 Ruby 的新手,我发现了这个 https://github.com/drodriguez/reversegeocoding我觉得这听起来很酷。所以我尝试了示例应用程序,安装了所有东西,但是当我打电话时

 thor geocoder:database

我收到这个错误:

/Users/xyz/.thor/f892c2a1d732c61bbf4ebff2abb70df6:194:in `initialize': wrong number of arguments(2 for 0) (ArgumentError)

第194行显示

csv = FasterCSV.new(io, CSV_OPTIONS.merge(COUNTRIES_CSV_OPTIONS))

和整个方法

def insert_countries(db, countries)
ids = Hash.new
country_insert = db.prepare("INSERT INTO countries (name) VALUES (:name)")
open(countries, 'rb') do |io|
io.rewind unless io.read(3) == "\xef\xbb\xbf" # Skip UTF-8 marker
io.readline while io.read(1) == '#' # Skip comments at the start of the file
io.seek(-1, IO::SEEK_CUR) # Unread the last character that wasn't '#'
csv = FasterCSV.new(io, CSV_OPTIONS.merge(COUNTRIES_CSV_OPTIONS))
csv.each do |row|
country_insert.execute :name => row['country']
ids[row['ISO']] = db.last_insert_row_id
end
end
country_insert.close

ids
end

我不知道如何解决这个问题,我希望有人能帮我解决这个问题。

谢谢。

最佳答案

我找到了解决方案。问题是我的 Ruby 版本。由于 1.9.x FasterCSV 不再受支持,现在 CSV 在 Ruby 标准库中...请在此处查看引用 https://stackoverflow.com/a/6090840/749242

关于ios - 离线反向地理编码 iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14173817/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com