vote up 1 vote down star
1

Hey,

I am refactoring some code for a Ruby library. this code includes a Date parser. One of the tests was to parse this string "2008-02-20T8:05:00-010:00" which is supposed to be iso8601.

The previous code would actually output : "Wed Feb 20 18:05:00 UTC 2008" My new code outputs that : "Wed Feb 20 16:05:00 UTC 2008"

My question, is : which one is the right one?

Time.parse in Ruby gives the second one... but again, I want to be 100% that the previous code AND test were buggy.

Could anyone tell me which one is right? (by maybe parsing the string with a library in another language? -I only know ruby-)

Thanks

flag

80% accept rate
Is it perhaps due to the timezone implicitly used? – Mitch Wheat May 31 at 2:04
Maybe... I don't know! – Julien Genestoux May 31 at 2:21

1 Answer

vote up 2 vote down check

The correct UTC time is 1805. The time group indicates 0805 in zone -10, so to get UTC add the 10 to the given time. Thus 1805. Since 1805 is less than 2400 it's the same day.

If your code is giving 1605, then you almost certainly have the timezone set incorrectly to zone -8, which happens to be Pacific Standard Time.


Aha, looks like your input format is messed up. Observe:

irb(main):003:0> Time.parse("2008-02-20T8:05:00-010:00") 
=> Wed Feb 20 08:05:00 -0700 2008

I happen to be in zone -7 so it's suiting that to my locale. But

irb(main):004:0> t=Time.parse("2008-02-20T8:05:00-010:00")
=> Wed Feb 20 08:05:00 -0700 2008
irb(main):005:0> t
=> Wed Feb 20 08:05:00 -0700 2008
irb(main):006:0> t.getutc
=> Wed Feb 20 15:05:00 UTC 2008

I'm getting an unexpected result. Now observe:

irb(main):007:0> t=Time.parse("2008-02-20T8:05:00-10:00")
=> Wed Feb 20 11:05:00 -0700 2008
irb(main):008:0> t.getutc
=> Wed Feb 20 18:05:00 UTC 2008

There's the expected result. See the difference? First example vs second:

irb(main):004:0> t=Time.parse("2008-02-20T8:05:00-010:00")
irb(main):007:0> t=Time.parse("2008-02-20T8:05:00-10:00")

I took the spurious extra 0 out (which I certainly didn't notice either) and whoosh, it works.

link|flag
Yes, I am actually in PST (San Francisco). Does that mean that Ruby's Time.parse fails me? – Julien Genestoux May 31 at 2:21
No, it means you are getting the time set correctly, but you're outputting it in your local timezone. Notice that 1805 in zone -10 is 1605 in zone -8. – Charlie Martin May 31 at 2:27
well, the output is show in UTC both times: "Wed Feb 20 18:05:00 UTC 2008" "Wed Feb 20 16:05:00 UTC 2008" They can't be right both, can they? – Julien Genestoux May 31 at 2:30
Try using Time#getutc and see what the Zulu time you're saving is. Also have a look to make sure you're not calling Time@local somewhere. – Charlie Martin May 31 at 2:31
(Thank you for your help... ) I am not sure what you mean by Time@local... And yes, time.getutc.to_s actually returns "Wed Feb 20 16:05:00 UTC 2008" – Julien Genestoux May 31 at 2:35
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.