DST is the tag for Daylight Saving Time issues. Daylight Saving Time is where twice a year a time zone shifts its time by one hour, either forward (Spring) or backward (Fall).

learn more… | top users | synonyms (3)

0
votes
3answers
39 views

End of DayLight Saving Time Issue in java

I am trying to find how DST works,for that I have written sample of code which talks about DST,I wonder why TimeZone changes at 1:00AM as per my understanding DST end 03 November 2013 at 2:00AM so at ...
1
vote
1answer
28 views

Issues to get end DayLight Saving time

I am trying check the DayLight Saving Time, for that I am using the US TimeZone. As DST start for US on 10 March 2013 at 2:00AM and will end on 3 November 2013 at 2:00AM. So we have to forward the ...
0
votes
1answer
56 views

jodatime how to know if daylight savings is on

I have an API that needs the timezone. For eg. if I am in california, I need to pass -7 to it when daylight savings is on (California , PDT is GMT - 7) and -8 to it when daylight saving is off. But I ...
2
votes
1answer
39 views

DayLight Saving Time issue of DateTime from JavaScriptSerializer.Serialize to ToLocalTime

Previously I was facing this issue and solved as described in the post. Currently after DayLight Saving implementation I observed the issue that if I am selecting DateTime startDate=new ...
0
votes
2answers
72 views

Determining daylight saving in sql server

I want to determine the if daylight saving time is activate or not. I know it may asked several time before but my problem is I want to check the daylight saving of London and my server is in canada, ...
1
vote
0answers
10 views

Daylight Saving and postdated times

We recently changed our application in an attempt to support displaying times in the timezone that the time was recorded in. We have run into a problem with getting times correct on Daylight Saving ...
2
votes
1answer
42 views

TimeZone.IsInvalidTime not catching invalid time caused by dst for Egypt in 2010

This is a corner case scenario. I'm working on a fix to convert invalid local time's to UTC. In localtimezones, due to daylight saving time(dst), certain periods cannot be converted to UTC. ...
-2
votes
3answers
109 views

Convert unix timestamp between different timezones and different DST in Java

PROBLEM SOLVED External device was computing and sending non-standard 2 hours shifted timestamp, which hugely confused me and started this thread. TIMESTAMP BY ITSELF IS NOT AFFECTED BY TIMEZONES , ...
2
votes
2answers
55 views

What's wrong with this python timezone conversion?

I want to convert a datetime with US/Eastern timezone to Budapest/Europe timezone this way: import pytz from datetime import datetime ET = pytz.timezone('US/Eastern') CET = ...
0
votes
1answer
19 views

how to change heroku day light saving setting

I could manage to change time zone on heroku but still it is giving one hour less than my local time can anyone help on how to set DST (day light saving) offset on Heroku
1
vote
1answer
70 views

how can i calculate different timezone (following daylight saving) from a given time

I have a online book selling website, the admin and physical bookstore is situated in India, but the server is hosted on USA server. The admin has demanded to create a report of successful orders and ...
0
votes
1answer
33 views

java.util.TimeZone DST Questions

Whats the difference between java.util.TimeZone.inDaylightTime and java.util.TimeZone.useDaylightTime in java ?
1
vote
1answer
59 views

ActiveRecord does not respect daylight saving time (DST)?

We're in the timezone Bern, which is +0100. But since we're now in summertime (we have daylight saving time), the current offset is +0200. In my rails app, I set the timezone using a wrapper in the ...
0
votes
2answers
67 views

Determining when DST is in effect [duplicate]

I've recently come across a problem... Lets say I have some Javascript like this, for example: var timezone = -(new Date()).getTimezoneOffset() / 60; // Get the TZ offset var local = []; var gmt ...
4
votes
2answers
72 views

What happens when CreateWaitableTimer is set for non-existing date/time?

The Daylight Saving Time (United States) in 2013 began at 2:00 AM on Sunday, March 10. So, say, now is March 9, 2013 and I call the following API on an already created waitable timer handle: FILETIME ...
0
votes
1answer
19 views

browser shows wrong DST when setting date

I need the browser to display a time (in milliseconds) sent from the server, in the user's local timezone & dst. I noticed that when I ask the browser to show the current time (now) then the ...
0
votes
1answer
31 views

time_zone is correct, however the time returned is off by an hour

I have a feeling this is going to be some complication caused by DST, but here is my issue: The system time is set to UTC +00:00 , so I ran SET time_zone='+00:00'. However, when I ran a SELECT NOW(), ...
1
vote
1answer
60 views

MySQL query to group results by hour of day, taking into account daylight savings

I have a report that uses a an sql query similar to this: SELECT HOUR(somedatetime) AS hour, COUNT(*) AS count FROM table GROUP BY HOUR(surveyenddatetime) I've simplified it here by leaving out the ...
1
vote
2answers
53 views

PHP - Adjust Hour pulled from RSS feed for Daylight Savings

I've got a PHP script which pulls from an RSS feed and produces a series of outputs based on events. The script was working fine until last week, when daylight savings changed. The script is working ...
1
vote
1answer
64 views

Java: Calculating time zone difference

How do I get the time difference from GMT for a specific date and time zone in Java? Determining whether a specific time zone is in DST is quite straight-forward: boolean isIsraelInDST = ...
0
votes
0answers
36 views

Geonames Timezone DST

LANGUAGE USED: ASP Classic, (shared hosting ) PROBLEM: The server is located in US and I need to operate with the Spanish date-time. I changed the date to UTC, but after that I would have to add +1 ...
0
votes
2answers
64 views

Unix Timestamp calculate date with DST in mind

How do I calculate the unix timestamp of yesterday where we keep the dst in mind? Normally I would do $timestamp - 86400 but that does not work when yesterday was without DST and today is.
0
votes
1answer
64 views

Javascript date daylight savings issue

I am facing an issue with daylight savings in javascript while working with dates. The country concerned is UK. Earlier, before 31st March, the following code gave accurate date: var caseClosed = ...
0
votes
1answer
168 views

Quartz.NET - Shouldn't this unit test pass?

This question is related to this one, but is kept more general and can be treated independently. EDIT: Quartz version is v2.0.1 From my understanding, the following unit test should pass: [Test] ...
0
votes
1answer
206 views

Dealing with daylight savings time - C++

Given an input date and time (in string format), I am trying to get the epoch time for it using time functions given in ctime like mktime. Converting the time_t epoch time back to a date and time ...
0
votes
0answers
68 views

Java TimeZone with DST

I have the following code: public static void main(String[] args) { DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //get current date time with Date() Date ...
1
vote
1answer
76 views

Check whether Day light saving is on or off

In one scenario I have to check whether day light saving is in effect or not, based on that I have to done some calulation in SQL server procedure. How can we check this in SQL server ? Many thanks ...
1
vote
1answer
183 views

java: Calendar.HOUR_OF_DAY returns incorrect value. Why?

The java code below: Calendar calend = Calendar.getInstance(TimeZone .getTimeZone("Pacific/Fakaofo")); System.out.println(calend.get(Calendar.HOUR_OF_DAY) + ":" ...
4
votes
4answers
125 views

Converting DateTimes that are near DayLight Savings time?

I'm working on software that runs reports for GPS devices that are running 24/7/365. Part of the report output requires that we convert our stored database times (kept in Central Standard Time) to ...
2
votes
1answer
182 views

Find DST (Daylight Savings Time) timestamp using Objective-C/C?

Is there a way to get the specific date (way) when daylight davings begins and ends for each country using C or Objective-C? In the Mexico, summer time begins on the first Sunday in April at 2:00am, ...
7
votes
2answers
176 views

Why doesn't .NET convert the time correctly?

In the year 2013, the United Kingdom won't start daylight savings time until March 31st. Still, TimeZoneInfo.ConvertTimeToUtc subtracts one hour when I try to convert a given time to UTC time. Why ...
0
votes
2answers
285 views

Android time zone and DST issue

I have an application which uses a schedule. The user picks what time the schedule should start/end, and I display that start/end time back to the user. Problem is, the time that is displayed back is ...
0
votes
0answers
71 views

How to get the time zone name for a CLLocation

I have an application that uses a CLGeocoder to forwardGeocode a placemark from an address string. The CLPlacemark response contains a CLLocation which gives me GPS coordinates. The only way to ...
0
votes
2answers
354 views

Convert IST to US timezones considering the daylight saving time in java

I have a date-time in IST. I want to convert it to US timezones based on input considering the daylight saving time, if there is daylight saving time for the given date-time in java. This is what i ...
0
votes
1answer
125 views

Google Script Date Showing wrong “hours”

I feel as if I have poured over nearly all of the documentation regarding dates in JS and GAS. Especially concerning DST issues. Since I have not had a problem like this until the DST change. I think ...
0
votes
1answer
148 views

Getting Ext.JSON.decode() to parse .net datetime strings that look like “/Date(0000000000000-0000)/”

I've got some serialized json containing timestamps like: "TimeStamp": "/Date(1362898800000-0700)/", Which, when parsed correctly, is supposed to be: Sat Mar 09 2013 23:59:59 GMT-0700 (Mountain ...
3
votes
1answer
298 views

Delphi - Get TTimeZone for non-local timezone and convert between timezones

My subject is probably terribly worded, but here's what I have. I have a web service that reports timestamps in its local time and the timestamps reflect daylight time if the server is in an affected ...
9
votes
1answer
134 views

NSDateFormatter returns nil for the 2 AM hour

I'm trying to convert a string to an NSDate using the following code: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setTimeZone:[NSTimeZone localTimeZone]]; ...
0
votes
1answer
102 views

Problems with finding the days between two unix timestamps

I know there a lot of questions and answers of this already, but unfortunately I think my situation may be unique? For some reason, the time-change seems to be making the day calculate as one day ...
3
votes
2answers
75 views

Adjusting a DateTime to DST

To keep it short and sweet I have 2 PC's: PC 1 has DST switched off PC 2 has DST switched on. PC 1 sends a DateTime to PC 2 which it takes and uses to set its time. All the above I ...
0
votes
1answer
103 views

Tibco xpath daylight saving issue

Does anyone here knows how to solve the Tibco xpath daylight saving date issue. The issue was we have one record 03/10/2013 02:00 parsed via Tibco mapping palette with following format (mm/dd/yyyy ...
2
votes
1answer
85 views

Using NodaTime to convert invalid (skipped) datetime values to UTC

What I want to accomplish is to convert a DateTime (parsed from a string assumed to be in EST/EDT) to UTC. I am using NodaTime because I need to use Olson timezones. Converting an invalid (skipped) ...
4
votes
1answer
94 views

What is the System.TimeZoneInfo.IsDaylightSavingTime equivalent in NodaTime?

System.TimeZoneInfo has a method called IsDaylightSavingTime, which takes a DateTime object and returns true if the specified datetime falls in the DST for that timezone. Is there an equivalent ...
2
votes
2answers
224 views

Java getTimeZone() behaving differently for different kind of inputs

For the below code I get different outputs TimeZone t = TimeZone.getTimeZone("GMT-8"); // Also tried UTC-8 and GMT-8:00 //TimeZone t = TimeZone.getTimeZone("America/Los_Angeles"); SimpleDateFormat ...
0
votes
1answer
132 views

highcharts displaying data on timechange

I'd like to plot data for several days (could be from from 1 to 7 days) using highcharts. Data could be hourly or half hourly. I'd like the display to be in local time (i.e. observes daylight ...
0
votes
2answers
98 views

Cakephp CakeTime DST handling

I store all dates in UTC in my database. Cakephp runs in UTC and communicates with mysql in UTC. Now i have following scenario: debug(CakeTime::format('Y-m-d H:i', '2013-03-22 03:00', false, new ...
0
votes
1answer
74 views

How can I treat dates as if there were no DST adjustment?

Edit: My solution is below. I have a sort of calendar-related app where the user is able to jump backward and forward certain integer numbers of days. In testing the app around midnight, I realized ...
1
vote
0answers
33 views

Regarding TimeZoneInfo CLass (Framework 3.5) - Related to Daylight Savings Time

I have a doubt regarding daylight savings time applicable to the North American region time zones: The scenario is: I have to work between lets say the following time zones: Eastern Time (UTC-5.00) ...
0
votes
2answers
262 views

Assigning java.sql.Timestamp with daylight savings time

I am having trouble understanding java.sql.timestamp. If I run the java deprecated constructors: java.sql.Timestamp(106,2,26,1,0,0,0) java.sql.Timestamp(106,2,26,2,0,0,0) ...
0
votes
1answer
96 views

Daylight saving in timestamps

I'm running a matlab function (fastinsert) to insert data into MySQL. The results are correct for the whole year except for 1 hour in March, during daylight saving. In fact it seems that I cannot ...

1 2 3 4 5 8