A time zone is a region on Earth that has a uniform, legally mandated standard time.

learn more… | top users | synonyms (3)

1666
votes
6answers
150k views

Why is subtracting these two times (in 1927) giving a strange result?

If I run the following program, which parses two date strings referencing times one second apart and compares them: public static void main(String[] args) throws ParseException { SimpleDateFormat ...
669
votes
25answers
70k views

Daylight saving time and Timezone best practices

I am hoping to make this question and the answers to it the definitive guide to dealing with daylight saving time, in particular for dealing with the actual change overs. If you have anything to add, ...
219
votes
22answers
54k views

Determining a web user's time zone

Is there a standard way for a Web Server to determine what time zone offset a user is in? From a HTTP header, or part of the user-agent description perhaps?
98
votes
20answers
157k views

How can I get the current date and time in UTC or GMT in Java?

When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
52
votes
7answers
7k views

How to elegantly deal with timezones

I have a website that is hosted in a different timezone than the users using the application. In addition to this, users can have a specific timezone. I was wondering how other SO users and ...
43
votes
9answers
90k views

How to handle calendar TimeZones using Java?

I have a Timestamp value that comes from my application. The user can be in any given local TimeZone. Since this date is used for a WebService that assumes the time given is always in GMT, I have a ...
38
votes
9answers
3k views

Get the Olson TZ name for the local timezone?

How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call? This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
36
votes
2answers
9k views

How to make an unaware datetime timezone aware in python

What I need to do I have a timezone-unaware datetime object, to which I need to add a time zone in order to be able to compare it with other timezone-aware datetime objects. I do not want to convert ...
35
votes
5answers
19k views

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
34
votes
8answers
30k views

JPA/Hibernate store date in UTC time zone

How can I configure JPA/Hibernate to store a date/time in the database as UTC (GMT) time zone? Consider this annotated JPA entity: public class Event { @Id public int id; ...
33
votes
6answers
7k views

DateTime vs DateTimeOffSet

Currently we have a standard way of dealing with .net DateTimes in a TimeZone aware way: Whenever we produce a DataTime we do it in UTC (e.g. using DateTime.UtcNow), and whenever we display one, we ...
28
votes
2answers
5k views

Why does Heroku log using the server time rather than the Rails time zone?

UPDATE: Ok, I didn't formulate a good Q to be answered. I still struggle with heroku being on -07:00 UTC and I at +02:00 UTC. Q: How do I get the log written in the correct Time.zone ? The 9 hours ...
27
votes
2answers
930 views

Why date() works twice as fast if we set time zone from code?

Have you noticed that date() function works 2x faster than usual if you set actual timezone inside your script before any date() call? I'm very curious about this. Look at this simple piece of code: ...
26
votes
6answers
39k views

Convert UTC NSDate to local Timezone Objective-C

How do I convert a UTC NSDate to local timezone NSDate in Objective C?
26
votes
2answers
20k views

Convert UTC to local time in Rails 3

I'm having trouble converting a UTC Time or TimeWithZone to local time in Rails 3. Say moment is some Time variable in UTC (e.g. moment = Time.now.utc). How do I convert moment to my time zone, ...
25
votes
6answers
17k views

Get timezone from DateTime

Does the .Net DateTime contain information about time zone where it was created? I have a library parsing DateTime from a format that has "+zz" at the end, and while it parses correctly and adjusts ...
25
votes
4answers
22k views

Convert UTC date time to local date time using JavaScript

From the server I get a datetime variable in this format: 6/29/2011 4:52:48 PM and it is in UTC time. I want to convert it to the current user's browser time using JavaScript. How this can be done ...
24
votes
5answers
33k views

How do i get the gmt time in php

I have a server which is set to EST and all records in the db are set to EST. i would like to know how to set it to gmt? I want to put a time zone option to my users.
24
votes
6answers
22k views

How do I use timezones with a datetime object in python?

How do I properly represent a different timezone in my timezone? The below example only works because I know that EDT is one hour ahead of me, so I can uncomment the subtraction of myTimeZone() ...
23
votes
8answers
21k views

Mapping US zip code to time zone

When users register with our app, we are able to infer their zip code when we validate them against a national database. What would be the best way to determine a good potential guess of their time ...
23
votes
4answers
19k views

Timezone with rails 3

I have pretty common issue but for some reason i have tried all the suggestions on the web and none seem to work. I have set the Timezone in config to 'EST' config.time_zone = 'Eastern Time (US ...
23
votes
7answers
1k views

How can I handle time zones in my webapp?

I'm looking for better understanding of the following user story: John works in Sidney. At 9:00 in the morning, he logs an event in a web app that runs on a server in Zurich. The next day, he travels ...
23
votes
2answers
12k views

Can't subtract offset-naive and offset-aware datetimes

I have a timezone aware timestamptz field in PostgreSQL. When I pull data from the table, I then want to subtract the time right now so I can get it's age. The problem I'm having is that both ...
22
votes
7answers
23k views

Web service - current time zone for a city?

Is there a web service of some sort (or any other way) to pull a current time zone settings for a (US) city. For the parts of the country that don't follow the Daylight Saving Time and basically jump ...
22
votes
6answers
46k views

TSQL: How to convert local time to UTC? (SQLServer2008)

We are dealing with an application that needs to handle global time data from different time zones and daylight savings time settings. The idea is to store everything in UTC format internally and only ...
22
votes
4answers
10k views

Python: How to get a value of datetime.today() that is “timezone aware”?

I am trying to subtract one date value from the value of datetime.today() to calculate how long ago something was. But it complains: TypeError: can't subtract offset-naive and offset-aware datetimes ...
21
votes
3answers
8k views

which timestamp type to choose in a postgresql database?

I would like to define a best-practice for storing timestamps in my postgres database in the context of a multi-timezone project. I can choose "timestamp without time zone" and remember which ...
21
votes
5answers
14k views

Client side time zone support in GWT

I'm working on a GWT app where I need to support the following scenario: The server is located in time zone A The client's browser is set to time zone B The GWT app is configured to display date/time ...
20
votes
7answers
35k views

Sqlite: CURRENT_TIMESTAMP is in GMT, not the timezone of the machine

I have a sqlite (v3) table with this column definition: "timestamp" DATETIME DEFAULT CURRENT_TIMESTAMP The server that this database lives on is in the CST time zone. When I insert into my table ...
20
votes
3answers
11k views

Python strptime() and timezones?

I have a CSV dumpfile from a Blackberry IPD backup, created using IPDDump. The date/time strings in here look something like this (where EST is an Australian time-zone): Tue Jun 22 07:46:22 EST 2010 ...
20
votes
3answers
6k views

How to do timezones? In asp.net mvc

on my site I need to know what timezone people are from to display messages to them at the right times. So I am not too sure what to be searching for a tutorial how to do this. So what I am planning ...
20
votes
6answers
31k views

Getting current GMT time

Is there a method in C# that returns the UTC (GMT) time zone? Not based on the system's time. Basically I want to get the correct UTC time even if my system time is not right.
19
votes
9answers
28k views

php convert datetime to UTC

I am in need of an easy way to convert a date time stamp to UTC (from whatever timezone the server is in) HOPEFULLY without using any libraries.
19
votes
1answer
7k views

I need a mapping list of cities to timezones- best way to get it?

I have a list of cities, states/provinces, and countries and I need to find their respective timezones easily. Specifically, I need to know which Windows TimeZone they map to. So far this has been a ...
18
votes
3answers
313 views

Javascript or Python - How do I figure out if it's night or day?

any idea how I figure out if it's currently night/day or sunrise/dawn based on time and location of the user? I haven't found anything useful that I could use within either the client or backend. ...
17
votes
4answers
32k views

How can I parse dates and convert time zones in Perl?

I've used the localtime function in Perl to get the current date and time but need to parse in existing dates. I have a GMT date in the following format: "20090103 12:00" I'd like to parse it into a ...
17
votes
5answers
22k views

How to get Time Zone through IP Address in PHP

I want to get time zone through IP Address in PHP. Actually i have an application which will run at the client machine. I have IP address of client machine. But not able to get the time zone for each ...
17
votes
4answers
6k views

How to parse dates with -0400 timezone string in python?

I have a date string of the form '2009/05/13 19:19:30 -0400'. It seems that previous versions of python may have supported a %z format tag in strptime for the trailing timezone specification, but ...
17
votes
6answers
3k views

How to check is timezone identifier valid from code?

I'll try to explain what's the problem here. According to list of supported timezones from PHP manual, I can see all valid TZ identifiers in PHP. My first question is how to get that list from code ...
17
votes
7answers
10k views

How to display DateTime with an abbreviated Time Zone?

I am aware of the System.TimeZone class as well as the many uses of the DateTime.ToString() method. What I haven't been able to find is a way to convert a DateTime to a string that, in addition to ...
16
votes
5answers
7k views

python time to age part 2, timezones

Following on from my previous question: http://stackoverflow.com/questions/508727/python-time-to-age I have now come across a problem regarding the timezone, turns out that its not always going to be ...
16
votes
12answers
2k 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"?
16
votes
3answers
11k views

Storing datetime as UTC in PHP/MySQL

Everywhere I read about converting time to a user's timezone says that the best method is to store a date and time in UTC then just add the user's timezone offset to this time. How can I store a date ...
16
votes
6answers
13k views

List of Timezone ID's for use with FindTimeZoneById() in C#?

Can someone please point me to a complete list of all the timezones referenced by the id expected in TimeZoneInfo.FindTimeZoneById()? I can't find a list anywhere and I've looked through the .NET ...
16
votes
3answers
839 views

PHP, MySQL and Time Zones

I am trying to integrate a timezone system in my app, i've really tried hard on avoiding making timezone-aware apps upto now - but its a mandatory requirement now so got no choice. TimeZones it just ...
16
votes
4answers
2k views

Timezone Strategy

I am building a MVC 3 application where the users may not be in the same time zone, so my intent was to store everything in UTC and convert from UTC to local time in the views and localtime to UTC on ...
16
votes
3answers
4k views

Working with timezones and daylight savings time in Javascript

My single-page javascript app retrieves data in JSON format via REST calls. Dates come formatted using the UTC timezone in standard ISO8601 format, such as 2011-02-04T19:31:09Z. When signing up for ...
15
votes
6answers
8k views

.NET TimeZoneInfo from Olson time zone

How can I convert the following into a System.TimeZone or System.TimeZoneInfo? { "timeZone": "America/Los_Angeles", "currentOffsetMs": -25200000 } This is data I'm getting back from a 3rd ...
15
votes
3answers
17k views

Convert date to another timezone in javascript

I am looking for a function to convert date in one timezone to another. It need two parameters, date (in format "2012/04/10 10:10:30 +0000") timezone string ("Asia/Jakarta") The timezone ...
15
votes
4answers
16k views

Difference between UTC and GMT Standard Time in .NET

In .NET, the following statements return different values: Response.Write( TimeZoneInfo.ConvertTime( DateTime.Parse("2010-07-01 5:30:00.000"), TimeZoneInfo.FindSystemTimeZoneById("Pacific ...

1 2 3 4 5 65