緯度、経度、日時の属性を持つモデルがあり、その場所のタイムゾーンを計算して、モデルの個々のインスタンスごとに設定できるようにしたいと考えています。タイムゾーンを取得するために作成したコードは次のとおりです。不足しているものはありますか?
require 'nokogiri'
require 'open-uri'
before_validation :set_current_time_zone
def set_current_time_zone
Time.zone = find_timezone_based_on_location
end
def find_time_zone_based_on_location
url = "http://www.earthtools.org/timezone-1.1/#{self.latitude}/#{self.longitude}"
doc = Nokogiri::XML(open(url))
offset = doc.at_xpath('//offset').text().to_i
if offset == -5
"Eastern Time (US & Canada)"
....
elsif offset == -8
"Pacific Time (US & Canada)"
end
end
なぜこれが正しい時刻を設定していないのかについて私が見逃しているものはありますか?