is there any possibility to determine the timezone of point (lat/lon) without using webservices? Geonames.org is not stable enough for me to use :( I need this to work in PHP.
Thanks
|
is there any possibility to determine the timezone of point (lat/lon) without using webservices? Geonames.org is not stable enough for me to use :( I need this to work in PHP. Thanks |
|||||||
|
|
I had this problem a while back and did exactly what adam suggested:
IIRC it took less than 1 second to populate the R-Tree, and it could then perform thousands of lookups per second (both on a 5 year old PC). |
|||||||||||||||||||
|
|
You should be able to, if you know the polygon of the timezone to see if a given lat/lon is inside it. |
|||||||||||||
|
|
For areas on land, there are some shapefile maps that have been made for the timezones of the tz (Olson) database. They're not updated quite as regularly as the tz database itself, but it's a great starting point and seems to be very accurate for most purposes. |
|||||
|
|
I ran into this problem while working on another project and looked into it very deeply. I found all of the existing solutions to be lacking in major ways. Downloading the GeoNames data and using some spatial index to look up the nearest point is definitely an option, and it will yield the correct result a lot of the time, but it can easily fail if a query point is on the wrong side of a time zone border from the nearest point in the database. A more accurate method is to use a digital map of the time zones and to write code to find the polygon in that map that contains a given query point. Thankfully, there is an excellent map of the time zones of the world available at http://efele.net/maps/tz/world/. To write an efficient query engine, you need to:
Each of those are worthy of their own Stack Overflow question/answer page. After concluding that none of the existing solutions out there met my needs, I wrote my own solution and made it available here: AskGeo uses a digital map and has a highly optimized spatial index that allows for running more than 10,000 queries per second on my computer in a single thread. And it is thread safe, so even higher throughput is certainly possible. This is a serious piece of code, and it took us a long time to develop, so we are offering it under a commercial license. It is written in Java, so using it in PHP would involve using: http://php-java-bridge.sourceforge.net/doc/how_it_works.php We are also open to porting it for a bounty. For details on the pricing, and for detailed documentation, see http://askgeo.com. I hope this is useful. It certainly was useful for the project I was working on. |
||||
|
|
|
I know this is old, but I spent some time looking for this answer. Found something very useful. Google does time zone lookups by long/lat. 2,500 per day limit (or 100,000 for business users). |
|||
|
|
|
Unfortunately, time zones are not regular enough for some simple function. See the map in Wikipedia - Time Zone However, some very rough approximation can be calculated: 1 hour difference corresponds to 15 degrees longitude (360 / 24). |
|||
|
|
|
Another solution is to import a table of cities with timezones and then to use the Haversine formula to find the nearest city in that table, relevant to your coordinates. I have posted a full description here: http://sylnsr.blogspot.com/2012/12/find-nearest-location-by-latitude-and.html For an example of loading the data in MySQL, I have posted an example here (with sources for downloading a small data dump): http://sylnsr.blogspot.com/2012/12/load-timezone-data-by-city-and-country.html Note that the accuracy of the look-up will be based on how comprehensive your look-up data is. Credits and References: MySQL Great Circle Distance (Haversine formula) |
|||
|
|
|
You can use time zone boundaries, provided here: |
|||
|
|
|
How about this ?
|
|||
|
|
|
Generally you use a database or google maps api. The database solution would be rather large and expensive. I have not used the google maps API so I cannot vouch for it. |
|||||||||||
|