如何使用 Earthtools.org 从纬度和经度获取时区

发布于 2024-12-12 06:09:23 字数 145 浏览 0 评论 0原文

我是编程初学者。

我有一个 ASPX.NET Web 应用程序。

我尝试使用网络服务获取当前登录用户的当前时区。 我在数据库中存储了纬度和经度坐标值。

有人可以给我一个教程链接吗?或者甚至是代码示例......

I'm a beginer in programming.

I have a ASPX.NET Web Aplication.

I try to get curent TimeZone of current loged User, by using a web service.
I have stored values for latitude and longitude coordinates in my database.

Can someone give me a link with a tutorial? Or even an code example...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺孤伤于心 2024-12-19 06:09:23
# offset = TimeZoneFinder.gmt_offset(some_lat, some_lng)
# timezone = ActiveSupport::TimeZone[offset]
#
# timezone = TimeZoneFinder.timezoneId(lat, lng)
# Time.zone = timezone
# Time.zone.now
#
class TimeZoneFinder
  attr_accessor :result

  def self.gmt_offset(lat,lng)
    self.new(lat,lng).find('gmtOffset').to_f
  end

  def self.timezoneId(lat,lng)
    self.new(lat,lng).find('timezoneId')
  end

  def initialize(lat,lng)
    uri     = URI.parse("http://ws.geonames.org/timezone?lat=#{lat}&lng=#{lng}")
    @result = Hash.from_xml(open(uri))
  end

  def find(key)
    result["geonames"]["timezone"][key]
  end
end

# Example XML response...
# <geonames>
#   <timezone>
#     <countryCode>US</countryCode>
#     <countryName>United States</countryName>
#     <lat>41.8781136</lat>
#     <lng>-87.6297982</lng>
#     <timezoneId>America/Chicago</timezoneId>
#     <dstOffset>-5.0</dstOffset>
#     <gmtOffset>-6.0</gmtOffset>
#     <rawOffset>-6.0</rawOffset>
#     <time>2011-09-01 21:40</time>
#     <sunrise>2011-09-02 06:16</sunrise>
#     <sunset>2011-09-02 19:22</sunset>
#   </timezone>
# </geonames>`enter code here`
# offset = TimeZoneFinder.gmt_offset(some_lat, some_lng)
# timezone = ActiveSupport::TimeZone[offset]
#
# timezone = TimeZoneFinder.timezoneId(lat, lng)
# Time.zone = timezone
# Time.zone.now
#
class TimeZoneFinder
  attr_accessor :result

  def self.gmt_offset(lat,lng)
    self.new(lat,lng).find('gmtOffset').to_f
  end

  def self.timezoneId(lat,lng)
    self.new(lat,lng).find('timezoneId')
  end

  def initialize(lat,lng)
    uri     = URI.parse("http://ws.geonames.org/timezone?lat=#{lat}&lng=#{lng}")
    @result = Hash.from_xml(open(uri))
  end

  def find(key)
    result["geonames"]["timezone"][key]
  end
end

# Example XML response...
# <geonames>
#   <timezone>
#     <countryCode>US</countryCode>
#     <countryName>United States</countryName>
#     <lat>41.8781136</lat>
#     <lng>-87.6297982</lng>
#     <timezoneId>America/Chicago</timezoneId>
#     <dstOffset>-5.0</dstOffset>
#     <gmtOffset>-6.0</gmtOffset>
#     <rawOffset>-6.0</rawOffset>
#     <time>2011-09-01 21:40</time>
#     <sunrise>2011-09-02 06:16</sunrise>
#     <sunset>2011-09-02 19:22</sunset>
#   </timezone>
# </geonames>`enter code here`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文