地理位置的时区
我有一个地理位置对纬度/经度,有什么方法/工具可以获取相应的时区吗?
I have a geolocation pair latitude/longitude, is there any way/tool to get the corresponding time zone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个名为 EarthTools 的网站为此提供了一项网络服务。
http://www.earthtools.org/webservices.htm#timezone
可以传入纬度和经度像这样:
它会输出时区和一堆其他信息:
A website called EarthTools has a web service for that.
http://www.earthtools.org/webservices.htm#timezone
You can pass in latitude and longitude like so:
And it spits out the time zone and a bunch of other info:
如果外部依赖关系不理想(显然这对于客户端地理位置来说非常出色)。
然后我建议阅读这个问题的答案
在 Ruby 中将 lat lng/zip/city/state 转换为时区的最简单方法
If an external dependancy is not ideal (obviously this brilliant for client side geo location).
Then I recommend reading the answer to this question
Easiest Way to Convert lat lng/zip/city/state to Timezone in Ruby