Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #73574

Re: How to get Timezone from latitude/longitude ?

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <larry.martell@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.055
X-Spam-Evidence '*H*': 0.89; '*S*': 0.00; 'url:github': 0.09; 'subject:How': 0.10; 'subject: ?': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'advance.': 0.19; 'to:name:python-list@python.org': 0.22; 'this:': 0.26; 'subject:/': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; '25,': 0.31; 'subject:from': 0.34; 'received:google.com': 0.35; 'google': 0.35; 'thanks': 0.36; 'hi,': 0.36; 'seconds': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'easy': 0.60; 'took': 0.61; 'subject:get': 0.81
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=FatxaW6SX0EAk13xbeO9A/vCQMq3sOslUKSc5soa5ZI=; b=NkaKOtIgkI7QktJbisX7wPg1FyuejgCSRFJjc+O/caOKeEjf/w3/s1xN2ODzEGxGWV aoGwpwr2NwO39YNrZjMep5jd28BTZjW+kT6BfjVXy7Ql+hiLSDNrOWfo8Jlrfq/GrrBN z5jiNNdKFl8h3TyhYSvPf1shO/egrO2zPn9kCt2miFK30AlTfGfcmz6pUiFuud6tpJlX gpoo3DHOkmZpQkEMHTCLimjotf+FLyHWtgqxP/fwYJN+VcQiS+QZeOk0E1ZhiDsYopBj ecS77p6JTpH+b00MyPj8O6PyLps72K8sJv5RKuLeXCok37I9rJikeX6mFVaU0wFP09b+ A43Q==
MIME-Version 1.0
X-Received by 10.194.222.230 with SMTP id qp6mr9707312wjc.23.1403701763319; Wed, 25 Jun 2014 06:09:23 -0700 (PDT)
In-Reply-To <9d6022cc-c5ca-448b-921f-fba9241f4b5c@googlegroups.com>
References <9d6022cc-c5ca-448b-921f-fba9241f4b5c@googlegroups.com>
Date Wed, 25 Jun 2014 09:09:23 -0400
Subject Re: How to get Timezone from latitude/longitude ?
From Larry Martell <larry.martell@gmail.com>
To "python-list@python.org" <python-list@python.org>
Content-Type text/plain; charset=UTF-8
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.11234.1403701769.18130.python-list@python.org> (permalink)
Lines 12
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1403701769 news.xs4all.nl 2948 [2001:888:2000:d::a6]:34742
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:73574

Show key headers only | View raw


On Wed, Jun 25, 2014 at 8:53 AM,  <codetarsier@gmail.com> wrote:
> Hi,
>
> I'm looking for a python-library which can help me to get Timezone and Timezone-offset(UTC) from latitude/longitude.
>
> I'm not able to find an easy way to do it.
>
> Thanks in advance.

It took me 30 seconds on google to find this:

https://github.com/pegler/pytzwhere

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

How to get Timezone from latitude/longitude ? codetarsier@gmail.com - 2014-06-25 05:53 -0700
  Re: How to get Timezone from latitude/longitude ? Bernd Nawothnig <Bernd.Nawothnig@t-online.de> - 2014-06-25 15:09 +0200
  Re: How to get Timezone from latitude/longitude ? Larry Martell <larry.martell@gmail.com> - 2014-06-25 09:09 -0400
  Re: How to get Timezone from latitude/longitude ? Chris Angelico <rosuav@gmail.com> - 2014-06-25 23:27 +1000
    Re: How to get Timezone from latitude/longitude ? Marko Rauhamaa <marko@pacujo.net> - 2014-06-25 17:00 +0300
      Re: How to get Timezone from latitude/longitude ? Grant Edwards <invalid@invalid.invalid> - 2014-06-25 14:24 +0000
        Re: How to get Timezone from latitude/longitude ? Ethan Furman <ethan@stoneleaf.us> - 2014-06-25 07:34 -0700
          Re: How to get Timezone from latitude/longitude ? Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-06-26 11:29 +1200
            Re: How to get Timezone from latitude/longitude ? codetarsier@gmail.com - 2014-06-26 02:24 -0700
  Re: How to get Timezone from latitude/longitude ? Akira Li <4kir4.1i@gmail.com> - 2014-06-26 00:44 +0400

csiph-web