10
votes
5answers
3k views
Timezone lookup from latitude longitude
Is there any library (or even better, web service) available which can convert from a latitude/longitude into a time zone?
8
votes
2answers
205 views
Is there a central repository for time zone information
I know that systems are using their own time zone databases at different levels.
Is there a central place where all timezeone and DST information lives, that makes it easy for programmers to write …
6
votes
3answers
114 views
Credit card expiration dates in which timezone?
We know from Credit card expiration dates - Inclusive or exclusive? that credit card expires on the last day. However, in which time zone?
6
votes
1answer
139 views
How to handle timezones in CFML?
How to handle timezones in CFML? So far all apps I've wrote just use the default timezone of the CF server and/or SQL server.
What do you guys usually do? Do you store all dates in GMT with …
5
votes
3answers
513 views
Time zone conversion C API on Linux, anyone?
I'm looking for something that I presumed would be very simple - given local Unix time in a specific time zone (specified as a string, e.g., "America/New_York" - note that's not my local time), get …
5
votes
5answers
360 views
Get Daylight Saving Transition Dates For Time Zones in C
In C, is there a simple, cross-platform way of retrieving the dates that a given timezone begins and ends daylight saving?
I already have timezone offset information and whether or not daylight …
5
votes
13answers
825 views
Displaying time and timezone information to the user (what, not how)
(This is a question about the UI rather than the technology required to do it)
What is the clearest way to display a time for events occurring in different timezones to a user? Does your "average" …
5
votes
5answers
876 views
Display accurate local time on web site?
I've been asked to display the 'correct' time on our website which I frankly feel is rather pointless as 'correct' can be interpretted in such a variety of ways.
Our current method definately results …
5
votes
12answers
484 views
Handling timezones in storage?
Store everything in GMT?
Store everything the way it was entered with an embedded offset?
Do the math everytime you render?
Display relative Times "1 minutes ago"?
4
votes
3answers
199 views
Country to Timezone mapping database
I'm looking at building a form which prompts a user for their timezone. I've looked at the 'Google approach' and it seems to work pretty well. You first select a country from a drop down list and …
4
votes
3answers
204 views
On GAE, how may I show a date according to right client TimeZone ?
On my Google App Engine application, i'm storing an auto-updated date/time in my model like that :
class MyModel(db.Model):
date = db.DateTimeProperty(auto_now_add=True)
But, that date/time is …
4
votes
5answers
1k views
Converting Between Local Times and GMT/UTC in C/C++
What's the best way to convert datetimes between local time and UTC in C/C++?
By "datetime", I mean some time representation that contains date and time-of-day. I'll be happy with time_t, struct tm, …
4
votes
3answers
163 views
Scheduling & DST
I am writing a calendar/scheduling app in php right now. Right now I take the day of the week you want the event to occur on and the time. I also ask for the timezone and adjust accordingly to get …
4
votes
3answers
350 views
ASP.Net Time Localization
I'm working on a site that lets users add calendar entries, on the main page all users can then see these entries with some text saying how long until those entries are current for example
Entry 1 : …
4
votes
4answers
291 views
What is the common practice with regards to differentiating between UTC and GMT?
I finally found out the difference between UTC and GMT by making the effort to look it up on Wikipedia today. Technically speaking it appears that GMT != UTC because you do not know if it is UTC or …
