地理位置的时区

发布于 2024-10-11 18:55:20 字数 41 浏览 3 评论 0原文

我有一个地理位置对纬度/经度,有什么方法/工具可以获取相应的时区吗?

I have a geolocation pair latitude/longitude, is there any way/tool to get the corresponding time zone?

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

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

发布评论

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

评论(2

秋风の叶未落 2024-10-18 18:55:20

一个名为 EarthTools 的网站为此提供了一项网络服务。

http://www.earthtools.org/webservices.htm#timezone

可以传入纬度和经度像这样:

h ttp://www.earthtools.org/timezone/40.71417/-74.00639

它会输出时区和一堆其他信息:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<timezone xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.earthtools.org/timezone.xsd">
    <version>1.1</version>
    <location>
        <latitude>40.71417</latitude>
        <longitude>-74.00639</longitude>
    </location>
    <offset>-5</offset>
    <suffix>R</suffix>
    <localtime>4 Dec 2005 12:06:56</localtime>
    <isotime>2005-12-04 12:06:56 -0500</isotime>
    <utctime>2005-12-04 17:06:56</utctime>
    <dst>False</dst>
</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:

h ttp://www.earthtools.org/timezone/40.71417/-74.00639

And it spits out the time zone and a bunch of other info:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<timezone xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.earthtools.org/timezone.xsd">
    <version>1.1</version>
    <location>
        <latitude>40.71417</latitude>
        <longitude>-74.00639</longitude>
    </location>
    <offset>-5</offset>
    <suffix>R</suffix>
    <localtime>4 Dec 2005 12:06:56</localtime>
    <isotime>2005-12-04 12:06:56 -0500</isotime>
    <utctime>2005-12-04 17:06:56</utctime>
    <dst>False</dst>
</timezone>
网名女生简单气质 2024-10-18 18:55:20

如果外部依赖关系不理想(显然这对于​​客户端地理位置来说非常出色)。

然后我建议阅读这个问题的答案

在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文